Skip to content

Commit

Permalink
add tauembed wfs
Browse files Browse the repository at this point in the history
  • Loading branch information
kskovpen committed Apr 29, 2022
1 parent 8fa4fa8 commit aa9a41f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Configuration/PyReleaseValidation/python/MatrixReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def reset(self, what='all'):
'relval_2026':'2026-',
'relval_identity':'id-',
'relval_machine': 'mach-',
'relval_premix': 'premix-'
'relval_premix': 'premix-',
'relval_tauembed': 'tau-'
}

self.files = ['relval_standard' ,
Expand All @@ -71,7 +72,8 @@ def reset(self, what='all'):
'relval_2026',
'relval_identity',
'relval_machine',
'relval_premix'
'relval_premix',
'relval_tauembed'
]
self.filesDefault = {'relval_standard':True ,
'relval_highstats':True ,
Expand All @@ -87,7 +89,8 @@ def reset(self, what='all'):
'relval_2026':True,
'relval_identity':False,
'relval_machine':True,
'relval_premix':True
'relval_premix':True,
'relval_tauembed':True
}

self.relvalModule = None
Expand Down
9 changes: 9 additions & 0 deletions Configuration/PyReleaseValidation/python/relval_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,15 @@
steps['RunEGamma2018Dml1']={'INPUT':InputInfo(dataSet='/EGamma/Run2018D-v1/RAW',label='2018D',events=100000,location='STD', ls=Run2018Dml1)}
steps['RunEGamma2018Dml2']={'INPUT':InputInfo(dataSet='/EGamma/Run2018D-v1/RAW',label='2018D',events=100000,location='STD', ls=Run2018Dml2)}

#### Run2 TauEmbed ####
Run2016C={276092: [[91, 95]]}
steps['RunDoubleMuonTE2016C']={'INPUT':InputInfo(dataSet='/DoubleMuon/Run2016C-v2/RAW',label='2016C',events=10000,location='STD', ls=Run2016C)}
dataTE = {'--conditions': 'auto:run2_data', '--scenario': 'pp'}
mcTE = {'--conditions': 'auto:run2_mc', '--scenario': 'pp'}
steps['RAWRECOTE16'] = merge([{'-s': 'RAW2DIGI,L1Reco,RECO,PAT', '--datatier': 'RAWRECO', '--eventcontent': 'RAWRECO', '--data': '', '--era': 'Run2_2016_HIPM', '--customise':'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,TauAnalysis/MCEmbeddingTools/customisers.customiseSelecting',}, dataTE])
steps['RAWRECOLHECLEANTE16'] = merge([{'-s': 'RAW2DIGI,RECO', '--data': '', '--eventcontent': 'RAWRECO', '--datatier': 'RAWRECO', '--era': 'Run2_2016_HIPM', '--customise': 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2016,TauAnalysis/MCEmbeddingTools/customisers.customiseLHEandCleaning',}, dataTE])
steps['EMBEDHADTE16'] = merge([{'cfg': 'TauAnalysis/MCEmbeddingTools/python/EmbeddingPythia8Hadronizer_cfi.py', '-s': 'GEN,SIM,DIGI,L1,DIGI2RAW,RAW2DIGI,RECO', '--processName': 'EmbeddingPythia8Hadronizer', '--eventcontent': 'RAWRECO', '--datatier': 'RAWRECO', '--beamspot': 'Realistic25ns13TeV2016Collision', '--customise': 'TauAnalysis/MCEmbeddingTools/customisers.customiseGenerator', '--customise_commands': '\"process.generator.nAttempts = cms.uint32(1000)\"', '--era': 'Run2_2016_HIPM',}, mcTE])

def gen(fragment,howMuch):
global step1Defaults
return merge([{'cfg':fragment},howMuch,step1Defaults])
Expand Down
5 changes: 5 additions & 0 deletions Configuration/PyReleaseValidation/python/relval_tauembed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from Configuration.PyReleaseValidation.relval_steps import *

workflows = Matrix()

workflows[100.0] = ['', ['RunDoubleMuonTE2016C', 'RAWRECOTE16', 'RAWRECOLHECLEANTE16', 'EMBEDHADTE16']]

0 comments on commit aa9a41f

Please sign in to comment.