Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-04-07 08:08:28

0001 #!/bin/bash
0002 
0003 declare -a arr_labels=("efficiency_30_pt_g3_0mrad")
0004 declare -a arr_labels=("MBD_pt_l3_0mrad" "MBD_pt_l3_15mrad" "MBD_pt_l4_0mrad" "MBD_pt_l4_15mrad" "efficiency_30_pt_g3_0mrad" "efficiency_30_pt_g3_15mrad" "efficiency_30_pt_g4_0mrad" "efficiency_30_pt_g4_15mrad")
0005 
0006 cut_label=""
0007 # cut_label="low_vtx_"
0008 # cut_label="high_vtx_"
0009 # cut_label="low_xf_"
0010 # cut_label="high_xf_"
0011 
0012 folder_execution="${PWD}"
0013 
0014 pushd ${folder_execution} > /dev/null
0015 for label in "${arr_labels[@]}"; do
0016     ./execution.sh "${cut_label}${label}"
0017 done
0018 popd > /dev/null