-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Description
When running (at least some) phase2 workflows, the default auto:phase2_realistic_T33 (using T33 as an example) is concatenated to the _13TeV string, as done here. This happens since all phase2 workflows are using GenSimHLBeamSpot in their ScenToRun attribute (for instance here, taking Run4D121, the latest default geometry, as an example).
Taking the CloseByPGun_Barrel_Front_Run4D121 workflow as an example:
$ runTheMatrix.py -w upgrade -el 34553.0 --show
...
34553.0 CloseByPGun_Barrel_Front_Run4D121_GenSimHLBeamSpot+DigiTrigger_Run4D121+RecoGlobal_Run4D121+HARVESTGlobal_Run4D121+ALCAPhase2_Run4D121 [1]: cmsDriver.py CloseByPGun_Barrel_Front_cfi -s GEN,SIM -n 10 --conditions auto:phase2_realistic_T33_13TeV --beamspot DBrealisticHLLHC --datatier GEN-SIM --eventcontent FEVTDEBUG --geometry ExtendedRun4D121 --era Phase2C22I13M9 --relval 9000,100
[2]: cmsDriver.py step2 -s DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:@relvalRun4 --conditions auto:phase2_realistic_T33 --datatier GEN-SIM-DIGI-RAW -n 10 --eventcontent FEVTDEBUGHLT --geometry ExtendedRun4D121 --era Phase2C22I13M9
[3]: cmsDriver.py step3 -s RAW2DIGI,RECO,RECOSIM,PAT,VALIDATION:@phase2Validation+@miniAODValidation,DQM:@phase2+@miniAODDQM --conditions auto:phase2_realistic_T33 --datatier GEN-SIM-RECO,MINIAODSIM,DQMIO -n 10 --eventcontent FEVTDEBUGHLT,MINIAODSIM,DQM --geometry ExtendedRun4D121 --era Phase2C22I13M9
[4]: cmsDriver.py step4 -s HARVESTING:@phase2Validation+@phase2+@miniAODValidation+@miniAODDQM --conditions auto:phase2_realistic_T33 --mc --geometry ExtendedRun4D121 --scenario pp --filetype DQM --era Phase2C22I13M9 -n 100
[5]: cmsDriver.py step5 -s ALCA:SiPixelCalSingleMuonLoose+SiPixelCalSingleMuonTight+TkAlMuonIsolated+TkAlMinBias+MuAlOverlaps+EcalESAlign+TkAlZMuMu+TkAlDiMuonAndVertex+HcalCalHBHEMuonProducerFilter+TkAlUpsilonMuMu+TkAlJpsiMuMu --conditions auto:phase2_realistic_T33 --datatier ALCARECO -n 10 --eventcontent ALCARECO --geometry ExtendedRun4D121 --era Phase2C22I13M9
1 workflows with 5 steps
--------------------------------------------------------------------------------
selected items: [34553.0](notice the _13TeV string is added only in the first step).
The configuration in CMSSW is a bit convoluted, with multiple nested imports. It is thus difficult for me to say how exactly the _13TeV addition impacts the workflow configuration.
I would like to know if this is a bug or a feature. If the latter, could you please explain the idea behind it?
Thanks!
Seems to be connected to #45685.