Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[12_5_X] Remove hardcoded trigger bits from Lumi ALCARECOs #39777

Merged
merged 1 commit into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'] )