Skip to content

Update 2025 HMT shower thresholds for pp collision #47701

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

Merged
merged 1 commit into from
Mar 28, 2025
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
3 changes: 2 additions & 1 deletion Configuration/Eras/python/Era_Run3_2025_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

from Configuration.Eras.Era_Run3_2024_cff import Run3_2024
from Configuration.Eras.Modifier_run3_GEM_2025_cff import run3_GEM_2025
from Configuration.Eras.Modifier_run3_CSC_2025_cff import run3_CSC_2025
from Configuration.Eras.Modifier_stage2L1Trigger_2025_cff import stage2L1Trigger_2025
from Configuration.Eras.Modifier_run3_SiPixel_2025_cff import run3_SiPixel_2025

Run3_2025 = cms.ModifierChain(Run3_2024, run3_GEM_2025, stage2L1Trigger_2025, run3_SiPixel_2025)
Run3_2025 = cms.ModifierChain(Run3_2024, run3_GEM_2025, stage2L1Trigger_2025, run3_SiPixel_2025, run3_CSC_2025)
4 changes: 4 additions & 0 deletions Configuration/Eras/python/Modifier_run3_CSC_2025_cff.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import FWCore.ParameterSet.Config as cms

run3_CSC_2025 = cms.Modifier()

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from L1Trigger.CSCTriggerPrimitives.params.tmbParams import tmbPSets
from L1Trigger.CSCTriggerPrimitives.params.auxiliaryParams import auxPSets
from L1Trigger.CSCTriggerPrimitives.params.gemcscParams import gemcscPSets
from L1Trigger.CSCTriggerPrimitives.params.showerParams import showerPSet
from L1Trigger.CSCTriggerPrimitives.params.showerParams import showerPSet,showerPSet_2025

cscTriggerPrimitiveDigis = cms.EDProducer(
"CSCTriggerPrimitivesProducer",
Expand Down Expand Up @@ -73,6 +73,12 @@
runME31Up = True,
runME41Up = True)
)
## update shower thresholds for 2025 runs
from Configuration.Eras.Modifier_run3_CSC_2025_cff import run3_CSC_2025
run3_CSC_2025.toModify( cscTriggerPrimitiveDigis,
showerParams = showerPSet_2025.clone()
)


## GEM-CSC integrated local trigger in ME1/1
from Configuration.Eras.Modifier_run3_GEM_cff import run3_GEM
Expand Down
82 changes: 82 additions & 0 deletions L1Trigger/CSCTriggerPrimitives/python/params/showerParams.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,85 @@
minLayersCentralTBin = cms.uint32(5),
)
)

showerPSet_2025 = cms.PSet(
## what kind of shower triggers the logic?
## 0: cathode-only (TMB/OTMB)
## 1: anode-only (from ALCT board)
source = cms.vuint32(
# ME1/1
1,
# ME1/2
1,
# ME1/3
1,
# ME2/1
1,
# ME2/2
1,
# ME3/1
1,
# ME3/2
1,
# ME4/1
1,
# ME4/2
1
),

## settings for cathode showers (counting CSCComparatorDigi)
cathodeShower = cms.PSet(
## 10000 means to disable cathode HMT for this chamber type
showerThresholds = cms.vuint32(
# ME1/1
10000, 10000, 10000,
# ME1/2
10000, 10000, 10000,
# ME1/3
10000, 10000, 10000,
# ME2/1
10000, 10000, 10000,
# ME2/2
10000, 10000, 10000,
# ME3/1
10000, 10000, 10000,
# ME3/2
10000, 10000, 10000,
# ME4/1
10000, 10000, 10000,
# ME4/2
10000, 10000, 10000
),
showerNumTBins = cms.uint32(3),# 3BX for cathode HMT
minLayersCentralTBin = cms.uint32(5),
## peack check feature is not implemented in firmware
## plan to upgrade in future
peakCheck = cms.bool(False),
),
## settings for anode showers (counting CSCWireDigi)
anodeShower = cms.PSet(
## {loose, nominal, tight} thresholds for hit counters
showerThresholds = cms.vuint32(
# ME1/1
1000, 1000, 1000,
# ME1/2
1000, 1000, 1000,
# ME1/3
7, 14, 18,
# ME2/1
24, 76, 84,
# ME2/2
12, 34, 37,
# ME3/1
22, 67, 77,
# ME3/2
12, 21, 21,
# ME4/1
26, 80, 92,
# ME4/2
12, 23, 23
),
showerNumTBins = cms.uint32(1),# 1BX for anode HMT
minLayersCentralTBin = cms.uint32(5),
)
)