forked from BristolTopGroup/AnalysisSoftware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartOtherGenerators.sh
More file actions
22 lines (20 loc) · 836 Bytes
/
startOtherGenerators.sh
File metadata and controls
22 lines (20 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
#setup the machine you are using
#machine="soolin"
machine="stardust"
exe=BAT
toolsFolder=BristolAnalysis/Tools/
toolsFolder=BristolAnalysis/Tools/
if [ ${machine} == "stardust" ]
then
toolsFolder=/storage/Workspace/Analysis/AnalysisTools/
exe=${toolsFolder}Release/AnalysisTools
TQAFPath="--TQAFPath=../"
fi
export toolsFolder=${toolsFolder}
export exe=${exe}
export TQAFPath=${TQAFPath}
#other generators:
sample="TTJets-mcatnlo" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_cfg.py ${TQAFPath} &> TTJets-mcatnlo_central.log &
sample="TTJets-pythia" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_cfg.py ${TQAFPath} &> TTJets-pythia_central.log &
sample="TTJets-powheg" analysisMode="central" nohup ${exe} ${toolsFolder}python/master_cfg.py ${TQAFPath} &> TTJets-powheg_central.log &