Skip to content

Commit

Permalink
Merge pull request #2790 from mark-grimes/changeTTIBeamSpot
Browse files Browse the repository at this point in the history
Change TTI beam spot from 'Gauss' to 'HLLHC'
  • Loading branch information
cmsbuild committed Mar 10, 2014
2 parents 0d50887 + fe27882 commit b55039e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Configuration/PyReleaseValidation/python/relval_steps.py
Expand Up @@ -1174,7 +1174,7 @@ def genvalid(fragment,d,suffix='all',fi=''):
# step6 is fastsim
# step7 is fastsim harvesting

upgradeSteps=['GenSimFull','DigiFull','RecoFull','HARVESTFull','DigiTrkTrigFull','FastSim','HARVESTFast']
upgradeSteps=['GenSimFull','GenSimHLBeamSpotFull','DigiFull','RecoFull','HARVESTFull','DigiTrkTrigFull','FastSim','HARVESTFast']

upgradeScenToRun={ '2017':['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'2019':['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
Expand All @@ -1190,7 +1190,7 @@ def genvalid(fragment,d,suffix='all',fi=''):
'Extended2023HGCalMuon':['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'Extended2023SHCal':['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'Extended2023SHCal4Eta':['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'Extended2023TTI':['GenSimFull','DigiTrkTrigFull'], ##no need to go beyond local reco
'Extended2023TTI':['GenSimHLBeamSpotFull','DigiTrkTrigFull'], ##no need to go beyond local reco
'Extended2023Muon':['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'Extended2023CFCal':['GenSimFull','DigiFull','RecoFull','HARVESTFull'],
'Extended2023CFCal4Eta':['GenSimFull','DigiFull','RecoFull','HARVESTFull']
Expand All @@ -1213,6 +1213,17 @@ def genvalid(fragment,d,suffix='all',fi=''):
'--geometry' : upgradeGeoms[k]
}
if upgradeCustoms[k]!=None : upgradeStepDict['GenSimFull'][k]['--customise']=upgradeCustoms[k]

upgradeStepDict['GenSimHLBeamSpotFull'][k]= {'-s' : 'GEN,SIM',
'-n' : 10,
'--conditions' : upgradeGTs[k],
'--beamspot' : 'HLLHC',
'--magField' : '38T_PostLS1',
'--datatier' : 'GEN-SIM',
'--eventcontent': 'FEVTDEBUG',
'--geometry' : upgradeGeoms[k]
}
if upgradeCustoms[k]!=None : upgradeStepDict['GenSimHLBeamSpotFull'][k]['--customise']=upgradeCustoms[k]

upgradeStepDict['DigiFull'][k] = {'-s':'DIGI:pdigi_valid,L1,DIGI2RAW',
'--conditions':upgradeGTs[k],
Expand Down

0 comments on commit b55039e

Please sign in to comment.