-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added alternative functions and binning to datacards/workspace genera…
…tion added batch-submission scripts for workspaces and limit calculation updated to newest scale factors and uncertainties
- Loading branch information
daniSchaefer
committed
May 2, 2017
1 parent
19d718f
commit 95c8f97
Showing
20 changed files
with
551 additions
and
257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!bin/bash | ||
masses=(1900) | ||
#models=("WZ" "BulkWW" "BulkZZ" "ZprimeWW") | ||
category=("WWHP") #"WWLP" "ZZHP" "ZZLP" "VVnew") | ||
models=("BulkWW") | ||
#category=("qVnew") | ||
|
||
for mass in ${masses[@]} | ||
do | ||
for model in ${models[@]} | ||
do | ||
for c in ${category[@]} | ||
do | ||
#mass=1400 | ||
#model="WZ" | ||
#cat="WZLP" | ||
datacard="datacards/CMS_jj_${model}_${mass}_13TeV_CMS_jj_${c}.txt" | ||
workspace="datacards/CMS_jj_${model}_${mass}_13TeV_CMS_jj_${c}.root" | ||
|
||
text2workspace.py $datacard -m $mass | ||
|
||
combineTool.py -M Impacts -d $workspace -m $mass --doInitialFit --robustFit 1 | ||
|
||
combineTool.py -M Impacts -d $workspace -m $mass --robustFit 1 --doFits | ||
|
||
combineTool.py -M Impacts -d $workspace -m $mass -o impacts.json | ||
|
||
plotImpacts.py -i impacts.json -o impacts | ||
|
||
mv ./impacts.pdf Impacts_${model}_${mass}_${c}.pdf | ||
done | ||
done | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.