Angular analysis of B+->K*+(K+pi0)mumu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
575 B

  1. #!/bin/sh
  2. #Read the jobID
  3. JobID="$1"
  4. #Set the main dir (no capital letters as it is best practice not to mess up with system variables
  5. main_dir=/home/lhcb/kopecna/B2KstarMuMu/code/ewp-Bplus2Kstmumu-AngAna/FCNCfitter/plots/Toys
  6. mkdir "$main_dir/$JobID"
  7. #Move the files into a folder
  8. #list=("$main_dir/*_${JobID}_*")
  9. #echo ${list[@]}
  10. mv $main_dir/*_${JobID}_*.eps $main_dir/${JobID}/
  11. mv $main_dir/*_${JobID}_*.root $main_dir/${JobID}/
  12. #Remove the Run1 and Run2 only plots
  13. rm $main_dir/$JobID/*_Run1_*
  14. rm $main_dir/$JobID/*_Run2_*
  15. #Echo we are done :)
  16. echo "Cleaned."