Skip to content

Commit

Permalink
Merge pull request #384 from danielwinterbottom/FF_MSSM_embed_met_fixes
Browse files Browse the repository at this point in the history
adding more bbH files
  • Loading branch information
danielwinterbottom authored Feb 22, 2021
2 parents e597106 + 8b11969 commit 2437345
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
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

0 comments on commit 2437345

Please sign in to comment.