Skip to content

Commit 2d3e1ea

Browse files
committed
to merge with Updating README with...
1 parent d3e6ce2 commit 2d3e1ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/x_04_all_vars

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ fit_var="absolute_eta,M3,angle_bl"
77
# fit_var="M3"
88
# fit_var="angle_bl"
99
nice_fit_var=`echo $fit_var | sed 's/,/_/g'`
10-
N_JOBS=5
10+
N_JOBS=6
1111

1212
echo "Using the fit variable(s): $fit_var"
1313

1414
i=0
15-
for var in MET HT ST MT WPT; do
15+
for var in MET MT; do
1616
echo "Plotting diff. x-section for distribution: $var"
1717
nohup time python src/cross_section_measurement/04_make_plots_matplotlib.py -v $var -c 7 -p data/$nice_fit_var -o plots/results/fit/ &> logs/04_${var}_plot_7TeV_${nice_fit_var}.log & # -a -s <--add -a option for additional plots, -s option to include the final results from background subtraction as well as from fitting
18-
nohup time python src/cross_section_measurement/04_make_plots_matplotlib.py -v $var -c 7 -p data/$nice_fit_var -o plots/results/fit/ -s &> logs/04_${var}_plot_7TeV_${nice_fit_var}.log & # -a -s <--add -a option for additional plots, -s option to include the final results from background subtraction as well as from fitting
18+
nohup time python src/cross_section_measurement/04_make_plots_matplotlib.py -v $var -c 7 -p data/$nice_fit_var -o plots/results/fit/ -s &> logs/04_${var}_plot_7TeV_${nice_fit_var}_with_bkgd_sub.log & # -a -s <--add -a option for additional plots, -s option to include the final results from background subtraction as well as from fitting
1919
let i+=2
2020
if (( $i % N_JOBS == 0 ))
2121
then
@@ -24,7 +24,7 @@ for var in MET HT ST MT WPT; do
2424
fi
2525

2626
nohup time python src/cross_section_measurement/04_make_plots_matplotlib.py -v $var -c 8 -p data/$nice_fit_var -o plots/results/fit/ &> logs/04_${var}_plot_8TeV_${nice_fit_var}.log & # -a -s <--add -a option for additional plots, -s option to include the final results from background subtraction as well as from fitting
27-
nohup time python src/cross_section_measurement/04_make_plots_matplotlib.py -v $var -c 8 -p data/$nice_fit_var -o plots/results/fit/ -s &> logs/04_${var}_plot_8TeV_${nice_fit_var}.log & # -a -s <--add -a option for additional plots, -s option to include the final results from background subtraction as well as from fitting
27+
nohup time python src/cross_section_measurement/04_make_plots_matplotlib.py -v $var -c 8 -p data/$nice_fit_var -o plots/results/fit/ -s &> logs/04_${var}_plot_8TeV_${nice_fit_var}_with_bkgd_sub.log & # -a -s <--add -a option for additional plots, -s option to include the final results from background subtraction as well as from fitting
2828
let i+=2
2929
if (( $i % N_JOBS == 0 ))
3030
then

0 commit comments

Comments
 (0)