Skip to content

Commit b7b0550

Browse files
committed
cp FullPS to VisiblePS for normalisation as they are identical at this step
1 parent 258c8b6 commit b7b0550

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/x_01b_all_vars

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ done
1919
wait;
2020
for var in MET HT ST WPT lepton_pt abs_lepton_eta NJets; do
2121
echo "Fitting distribution: $var"
22-
nohup time python src/cross_section_measurement/01_get_ttjet_normalisation.py -v $var -i config/measurements/background_subtraction --visiblePS &> logs/01_${var}_bgs_13TeV_visiblePS.log &
22+
# since we use the same bins in both full and visible phase space, the normalisation result will be identical
23+
cp -r data/normalisation/background_subtraction/13TeV/$var/FullPS data/normalisation/background_subtraction/13TeV/$var/VisiblePS
24+
#nohup time python src/cross_section_measurement/01_get_ttjet_normalisation.py -v $var -i config/measurements/background_subtraction --visiblePS &> logs/01_${var}_bgs_13TeV_visiblePS.log &
2325
let i+=1
2426
if (( $i % N_JOBS == 0 ))
2527
then

0 commit comments

Comments
 (0)