Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding more bbH files #384

Merged
merged 1 commit into from
Feb 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
28 changes: 20 additions & 8 deletions Analysis/HiggsTauTauRun2/scripts/htt_mssm_2016.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,19 +215,23 @@ def getParaJobSubmit(N):

if options.proc_mssm or options.proc_all:

M_GluGluBBH = ['80','90','100','110','120','130','140','160','180','200','250','300','350','400','450','500','600','700','800','900','1000','1200','1400','1500','1600','1800','2000','2300','2600','2900','3200']
for mass in M_GluGluBBH:
signal_mc += ['SUSYGluGluToBBHToTauTau_M-'+mass]

M_GluGluBBH_NLO = ['80','90','110','120','130','140','160','180','200','250','350','400','450','500','600','700','800','900','1000','1200','1400','1600','1800','2000','2300','2600','2900','3200']
for mass in M_GluGluBBH_NLO:
signal_mc += ['SUSYGluGluToBBHToTauTau_M-'+mass+'-NLO']
#M_GluGluBBH = ['80','90','100','110','120','130','140','160','180','200','250','300','350','400','450','500','600','700','800','900','1000','1200','1400','1500','1600','1800','2000','2300','2600','2900','3200']
#for mass in M_GluGluBBH:
# signal_mc += ['SUSYGluGluToBBHToTauTau_M-'+mass]

#M_GluGluBBH_NLO = ['80','90','110','120','130','140','160','180','200','250','350','400','450','500','600','700','800','900','1000','1200','1400','1600','1800','2000','2300','2600','2900','3200']
#for mass in M_GluGluBBH_NLO:
# signal_mc += ['SUSYGluGluToBBHToTauTau_M-'+mass+'-NLO']

M_GluGluH = ['80','90','100','110','120','130','140','160','180','200','250','300','350','400','450','500','600','700','800','900','1000','1200','1400','1500','1600','1800','2000','2300','2600','2900','3200']
for mass in M_GluGluH:
signal_mc += ['SUSYGluGluToHToTauTau_M-'+mass]

masses_ph = [60, 80, 100, 120, 125, 130, 140, 160, 180, 200, 250, 300, 350, 400, 450, 500, 600, 700, 800, 900, 1000, 1200, 1400, 1600, 1800, 2000, 2300, 2600, 2900, 3200, 3500]
# note not all samples exists currently for every mass
for mass in masses_ph:
#signal_mc += ['SUSYGluGluToHToTauTau_M-%s_powheg' % mass]
signal_mc += ['SUSYGluGluToBBHToTauTau_M-%s_powheg' % mass]

if options.proc_data or options.proc_all or options.calc_lumi or options.proc_embed:
with open(CONFIG,"r") as input:
Expand Down Expand Up @@ -491,8 +495,16 @@ def getParaJobSubmit(N):
else:
SIG_FILELIST = FILELIST

if 'SUSY' in sa and 'powheg' in sa:
PREFIX = 'Feb09_MC_102X_2016'
SIG_FILELIST ="./filelists/Feb09_2016_MC_102X"
user='dwinterb'
else:
PREFIX = 'Sep18_MC_102X_2016'
SIG_FILELIST = FILELIST
user='guttley'

#PREFIX = SIG_FILELIST.split('/')[1]
PREFIX = 'Sep18_MC_102X_2016'
# JSONPATCH= (r"'{\"job\":{\"filelist\":\"%(SIG_FILELIST)s_%(sa)s.dat\"}, \"sequence\":{\"output_name\":\"%(JOB)s\"}}' "%vars());
JSONPATCH= (r"'{\"job\":{\"filelist\":\"%(SIG_FILELIST)s_%(sa)s.dat\",\"file_prefix\":\"root://gfe02.grid.hep.ph.ic.ac.uk:1097//store/user/%(user)s/%(PREFIX)s/\"}, \"sequence\":{\"output_name\":\"%(JOB)s\",%(jetuncert_string)s}}' "%vars());
job_num=0
Expand Down