Skip to content

Commit

Permalink
Merge pull request #16386 from cms-AlCaDB/from-CMSSW_8_1_X_HLTphase1
Browse files Browse the repository at this point in the history
using HLT:@relval2016 for phase1 relvals (retry)
  • Loading branch information
davidlange6 committed Nov 2, 2016
2 parents 30dcccb + 7d7487b commit b2fdefd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Configuration/PyReleaseValidation/python/relval_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -1703,6 +1703,7 @@ def lhegensim(fragment,howMuch):
k2=k[:-2]
geom=upgradeProperties[year][k]['Geom']
gt=upgradeProperties[year][k]['GT']
hltversion=upgradeProperties[year][k].get('HLTmenu')
cust=upgradeProperties[year][k].get('Custom', None)
era=upgradeProperties[year][k].get('Era', None)
beamspot=upgradeProperties[year][k].get('BeamSpot', None)
Expand Down Expand Up @@ -1741,16 +1742,17 @@ def lhegensim(fragment,howMuch):
if cust!=None : upgradeStepDict['GenSimHLBeamSpotFull14'][k]['--customise']=cust
if era is not None: upgradeStepDict['GenSimHLBeamSpotFull14'][k]['--era']=era

upgradeStepDict['DigiFull'][k] = {'-s':'DIGI:pdigi_valid,L1,DIGI2RAW,HLT:@fake',
upgradeStepDict['DigiFull'][k] = {'-s':'DIGI:pdigi_valid,L1,DIGI2RAW,HLT:%s'%(hltversion),
'--conditions':gt,
'--datatier':'GEN-SIM-DIGI-RAW',
'-n':'10',
'--eventcontent':'FEVTDEBUGHLT',
'--geometry' : geom
}

if cust!=None : upgradeStepDict['DigiFull'][k]['--customise']=cust
if era is not None: upgradeStepDict['DigiFull'][k]['--era']=era

if k2 in PUDataSets:
upgradeStepDict['DigiFullPU'][k]=merge([PUDataSets[k2],upgradeStepDict['DigiFull'][k]])

Expand Down Expand Up @@ -1827,15 +1829,15 @@ def lhegensim(fragment,howMuch):



upgradeStepDict['ALCAFull'][k] = {'-s':'ALCA:TkAlMuonIsolated+TkAlMinBias+MuAlOverlaps+EcalESAlign+TkAlZMuMu+HcalCalHBHEMuonFilter',
upgradeStepDict['ALCAFull'][k] = {'-s':'ALCA:TkAlMuonIsolated+TkAlMinBias+MuAlOverlaps+EcalESAlign+TkAlZMuMu',
'--conditions':gt,
'--datatier':'ALCARECO',
'-n':'10',
'--eventcontent':'ALCARECO',
'--geometry' : geom
}
if cust!=None : upgradeStepDict['RecoFull'][k]['--customise']=cust
if era is not None: upgradeStepDict['RecoFull'][k]['--era']=era
if cust!=None : upgradeStepDict['ALCAFull'][k]['--customise']=cust
if era is not None: upgradeStepDict['ALCAFull'][k]['--era']=era



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,14 @@
'2017' : {
'Geom' : 'DB:Extended',
'GT' : 'auto:phase1_2017_realistic',
'HLTmenu': '@relval2016',
'Era' : 'Run2_2017',
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','ALCAFull','HARVESTFull'],
},
'2017Design' : {
'Geom' : 'DB:Extended',
'GT' : 'auto:phase1_2017_design',
'HLTmenu': '@relval2016',
'Era' : 'Run2_2017',
'BeamSpot': 'GaussSigmaZ4cm',
'ScenToRun' : ['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
Expand All @@ -86,36 +88,42 @@
'2023D1' : {
'Geom' : 'Extended2023D1',
'GT' : 'auto:phase2_realistic',
'HLTmenu': '@fake',
'Era' : 'Phase2C1',
'ScenToRun' : ['GenSimHLBeamSpotFull','DigiFull','RecoFullGlobal','HARVESTFullGlobal'],
},
'2023D2' : {
'Geom' : 'Extended2023D2',
'GT' : 'auto:phase2_realistic',
'HLTmenu': '@fake',
'Era' : 'Phase2C1',
'ScenToRun' : ['GenSimHLBeamSpotFull','DigiFull','RecoFullGlobal','HARVESTFullGlobal'],
},
'2023D3' : {
'Geom' : 'Extended2023D3',
'GT' : 'auto:phase2_realistic',
'HLTmenu': '@fake',
'Era' : 'Phase2C2',
'ScenToRun' : ['GenSimHLBeamSpotFull','DigiFull','RecoFullGlobal', 'HARVESTFullGlobal'],
},
'2023D4' : {
'Geom' : 'Extended2023D4',
'HLTmenu': '@fake',
'GT' : 'auto:phase2_realistic',
'Era' : 'Phase2C2',
'ScenToRun' : ['GenSimHLBeamSpotFull','DigiFull','RecoFullLocal'],
},
'2023D5' : {
'Geom' : 'Extended2023D5',
'HLTmenu': '@fake',
'GT' : 'auto:phase2_realistic',
'Era' : 'Phase2C2_timing',
'ScenToRun' : ['GenSimHLBeamSpotFull','DigiFull','RecoFullGlobal', 'HARVESTFullGlobal'],
},
'2023D6' : {
'Geom' : 'Extended2023D6',
'GT' : 'auto:phase2_realistic',
'HLTmenu': '@fake',
'Custom' : 'SLHCUpgradeSimulations/Configuration/combinedCustoms.cust_2023tilted',
'Era' : 'Phase2C1',
'ScenToRun' : ['GenSimHLBeamSpotFull','DigiFull','RecoFullGlobal', 'HARVESTFullGlobal'],
Expand Down

0 comments on commit b2fdefd

Please sign in to comment.