Skip to content

Commit

Permalink
Merge pull request #42600 from mmusich/dev_putBack140.6_13_3_X
Browse files Browse the repository at this point in the history
Put back wf 140.6 in the relval matrix
  • Loading branch information
cmsbuild authored Aug 21, 2023
2 parents 0952569 + 5902843 commit 7594083
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Configuration/PyReleaseValidation/python/relval_standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@
workflows[140.5611] = ['RunHI2018reMINIAOD',['RunHI2018AOD','REMINIAODHID18','HARVESTHI18MINIAOD']]
workflows[140.57] = ['RunHI2018Reduced',['RunHI2018Reduced','RECOHID18','HARVESTDHI18']]
workflows[140.58] = ['',['RunHI2018','RAWPRIMEHI18','RECOHID18APPROXCLUSTERS','HARVESTDHI18']]
workflows[140.61] = ['',['RunHI2022FullFormat','RECOHID22','HARVESTDHI22']]
workflows[140.60] = ['',['RunHI2022','RAWPRIMEHI22','RECOHID22APPROXCLUSTERS','HARVESTDHI22']]
workflows[140.61] = ['',['RunHI2022','RECOHID22','HARVESTDHI22']]

### run2 2015B 50ns ###
workflows[134.701] = ['',['RunHLTPhy2015B','HLTDR2_50ns','RECODR2_50nsreHLT_HIPM','HARVESTDR2']]
Expand Down
26 changes: 24 additions & 2 deletions Configuration/PyReleaseValidation/python/relval_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@
steps['RunHI2018AOD']={'INPUT':InputInfo(dataSet='/HIHardProbes/HIRun2018A-04Apr2019-v1/AOD',label='hi2018aod',events=10000,location='STD',ls=Run2018HI)}

Run2022HI={362321: [[112,112]]}
steps['RunHI2022']={'INPUT':InputInfo(dataSet='/HITestRawPrime0/HIRun2022A-v1/RAW',label='hi2022',events=10000,location='STD',ls=Run2022HI)}
steps['RunHI2022FullFormat']={'INPUT':InputInfo(dataSet='/HITestRaw0/HIRun2022A-v1/RAW',label='hi2022',events=10000,location='STD',ls=Run2022HI)}
steps['RunHI2022']={'INPUT':InputInfo(dataSet='/HITestRaw0/HIRun2022A-v1/RAW',label='hi2022',events=10000,location='STD',ls=Run2022HI)}

Run2012A=[191226]
Run2012ASk=Run2012A+[]
Expand Down Expand Up @@ -2157,6 +2156,18 @@ def lhegensim2018ml(fragment,howMuch):
'--process':'REHLT'
}

steps['RAWPRIMEHI22']={ '--scenario':'pp',
'--conditions':'auto:run3_data_prompt',
'-s':'REPACK:DigiToApproxClusterRaw',
'--datatier':'GEN-SIM-DIGI-RAW-HLTDEBUG',
'--era':'Run3_pp_on_PbPb_approxSiStripClusters',
'--eventcontent':'REPACKRAW',
'-n':'10',
'--customise_commands':'\"process.rawPrimeDataRepacker.src=\'rawDataRepacker\'\"',
'--repacked':'',
'--process':'REHLT'
}

steps['RAWPRIMESIMHI18']={ '--scenario':'pp',
'--conditions':'auto:phase1_2022_realistic_hi',
'-s':'REPACK:DigiToApproxClusterRaw',
Expand Down Expand Up @@ -2192,6 +2203,17 @@ def lhegensim2018ml(fragment,howMuch):
'-n':'100'
}


steps['RECOHID22APPROXCLUSTERS']=merge([{ '--scenario':'pp',
'--conditions':'auto:run3_data_prompt',
'-s':'RAW2DIGI,L1Reco,RECO,DQM:@commonFakeHLT+@standardDQMFakeHLT',
'--datatier':'AOD,DQMIO',
'--eventcontent':'AOD,DQM',
'--era':'Run3_pp_on_PbPb_approxSiStripClusters',
'--repacked':'',
'-n':'100'
},steps['RECOHID15']])

steps['RECOHID22']=merge([{ '--scenario':'pp',
'--conditions':'auto:run3_data_prompt',
'-s':'RAW2DIGI,L1Reco,RECO,DQM:@commonFakeHLT+@standardDQMFakeHLT',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,10 @@
scalersInputTag = cms.InputTag( "rawDataRepacker" )
)

import RecoVertex.BeamSpotProducer.onlineBeamSpotESProducer_cfi as _mod
BeamSpotESProducer = _mod.onlineBeamSpotESProducer.clone(
timeThreshold = 999999 # to allow using old runs in tests
)

DigiToApproxClusterRawTask = cms.Task(hltSiStripRawToDigi,siStripZeroSuppressionHLT,hltScalersRawToDigi,hltBeamSpotProducer,siStripClustersHLT,hltSiStripClusters2ApproxClusters,rawPrimeDataRepacker)
DigiToApproxClusterRaw = cms.Sequence(DigiToApproxClusterRawTask)

0 comments on commit 7594083

Please sign in to comment.