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.

15 lines
625 B

  1. #!/bin/sh
  2. declare -a folders=(fitResults fitResults/angReso fitResults/angular fitResults/bkgFit fitResults/GenLvlFit fitResults/MainFit fitResults/MassFit fitResults/MCfit fitResults/Scans fitResults/ToysFit LaTeXfiles plots plots/angReso plots/angular plots/bkgFit plots/GenLvlFit plots/MainFit plots/MassFit plots/MCfit plots/MCfit/Signal plots/Scans plots/Toys log Toys)
  3. #generate all folders in the array if they are not existing:
  4. for folder in "${folders[@]}"; do
  5. if [ -d $folder ]; then
  6. echo "Folder '$folder' is already existing"
  7. else
  8. echo "Creating new folder: '$folder'"
  9. mkdir $folder
  10. fi
  11. done