Skip to content

Commit

Permalink
Merge pull request #39777 from purbita-rahman/mydev3
Browse files Browse the repository at this point in the history
[12_5_X] Remove hardcoded trigger bits from Lumi ALCARECOs
  • Loading branch information
cmsbuild authored Oct 20, 2022
2 parents 0fb364f + c84190b commit 1d2d05c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import HLTrigger.HLTfilters.hltHighLevel_cfi
ALCARECORandomHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
HLTPaths = cms.vstring("AlCa_LumiPixelsCounts_Random_v*"),
eventSetupPathsKey='',
TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
andOr = cms.bool(True), # choose logical OR between Triggerbits
throw = cms.bool(False) # tolerate triggers stated above, but not available
# HLTPaths =["AlCa_LumiPixelsCounts_Random_v*"],
eventSetupPathsKey='AlCaPCCRandom',
TriggerResultsTag = ("TriggerResults","","HLT"),
andOr = True, # choose logical OR between Triggerbits
throw = False # tolerate triggers stated above, but not available
)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import HLTrigger.HLTfilters.hltHighLevel_cfi
ALCARECOZeroBiasHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
HLTPaths = cms.vstring("AlCa_LumiPixelsCounts_ZeroBias_v*"),
eventSetupPathsKey='',
TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
andOr = cms.bool(True), # choose logical OR between Triggerbits
throw = cms.bool(False) # tolerate triggers stated above, but not available
#HLTPaths = ["AlCa_LumiPixelsCounts_ZeroBias_v*"],
eventSetupPathsKey='AlCaPCCZeroBias',
TriggerResultsTag = ("TriggerResults","","HLT"),
andOr = True, # choose logical OR between Triggerbits
throw = False # tolerate triggers stated above, but not available
)

from Calibration.LumiAlCaRecoProducers.alcaPCCIntegrator_cfi import alcaPCCIntegrator
Expand All @@ -15,3 +15,4 @@


seqALCARECOAlCaPCCZeroBias = cms.Sequence(ALCARECOZeroBiasHLT + alcaPCCIntegratorZeroBias)

2 changes: 1 addition & 1 deletion Configuration/AlCa/python/autoAlca.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def buildList(pdList, matrix):

# Update the lists anytime a new PD is added to the matrix
autoAlca = { 'allForPrompt' : buildList(['Commissioning', 'EGamma', 'HLTPhysics', 'HcalNZS', 'JetMET', 'Muon', 'NoBPTX', 'ParkingDoubleMuonLowMass', 'ZeroBias'], AlCaRecoMatrix),
'allForExpress' : buildList(['StreamExpress', 'ALCALumiPixelsCountsExpress'], AlCaRecoMatrix),
'allForExpress' : buildList(['StreamExpress'], AlCaRecoMatrix),
'allForExpressHI' : buildList(['StreamExpressHI'], AlCaRecoMatrix),
'allForPromptCosmics' : buildList(['Cosmics'], AlCaRecoMatrix),
'allForExpressCosmics' : buildList(['ExpressCosmics'], AlCaRecoMatrix) }
Expand Down
9 changes: 5 additions & 4 deletions Configuration/AlCa/python/autoCond.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
'run3_hlt' : '124X_dataRun3_HLT_frozen_v6',
# GlobalTag with fixed snapshot time for Run3 HLT RelVals: customizations to run with fixed L1 Menu
'run3_hlt_relval' : '125X_dataRun3_HLT_relval_v1',
# GlobalTag for Run3 data relvals (express GT) - identical to 124X_dataRun3_Express_v4 but with snapshot at 2022-07-12 13:00:00 (UTC)
'run3_data_express' : '124X_dataRun3_Express_frozen_v4',
# GlobalTag for Run3 data relvals (prompt GT) - identical to 124X_dataRun3_Prompt_v4 but with snapshot at 2022-07-12 13:00:00 (UTC)
'run3_data_prompt' : '124X_dataRun3_Prompt_frozen_v4',
# GlobalTag for Run3 data relvals (express GT) - identical to 124X_dataRun3_Express_v6 but with snapshot at 2022-10-04 14:22:26 (UTC)
'run3_data_express' : '124X_dataRun3_Express_frozen_v6',
# GlobalTag for Run3 data relvals (prompt GT) - identical to 124X_dataRun3_Prompt_v5 but with snapshot at 2022-10-04 14:19:51 (UTC)
'run3_data_prompt' : '124X_dataRun3_Prompt_frozen_v5',
# GlobalTag for Run3 offline data reprocessing - snapshot at 2022-07-12 23:00:00 (UTC)
'run3_data' : '124X_dataRun3_v9',
# GlobalTag for Run3 data relvals: allows customization to run with fixed L1 menu
Expand Down Expand Up @@ -139,3 +139,4 @@
autoCond['upgrade2021'] = ( autoCond['phase1_2022_design'] )
autoCond['upgrade2022'] = ( autoCond['phase1_2022_design'] )
autoCond['upgradePLS3'] = ( autoCond['phase2_realistic'] )

0 comments on commit 1d2d05c

Please sign in to comment.