Skip to content

Commit d154b21

Browse files
author
Andre Govinda Stahl Leiton
committed
Raise ECAL thresholds for beam splashes
1 parent 043863c commit d154b21

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import FWCore.ParameterSet.Config as cms
2+
3+
# This modifier is for beam splash
4+
beamSplash = cms.Modifier()

Configuration/PyReleaseValidation/python/relval_steps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2906,6 +2906,7 @@ def lhegensim2018ml(fragment,howMuch):
29062906
steps['RECODR3_2025_OXY_SKIMIONPHYSICS0']=merge([{'--era':'Run3_2025_OXY', '-s':'RAW2DIGI,L1Reco,RECO,SKIM:%s,PAT,DQM:@commonFakeHLT+@standardDQMFakeHLT'%(autoSkim['IonPhysics0'])},steps['RECODR3_2025_HIN']])
29072907

29082908
steps['RECODR3Splash']=merge([{'-n': 2,
2909+
'--procModifiers': 'beamSplash',
29092910
'-s': 'RAW2DIGI,L1Reco,RECO,PAT,ALCA:SiStripCalZeroBias+SiStripCalMinBias+TkAlMinBias+EcalESAlign,DQM:@standardDQMFakeHLT+@miniAODDQM'
29102911
},steps['RECODR3']])
29112912

RecoParticleFlow/PFClusterProducer/python/particleFlowClusterECALUncorrected_cfi.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@
6161
),
6262
nNeighbours = cms.int32(8),
6363
)
64+
from Configuration.ProcessModifiers.beamSplash_cff import beamSplash
65+
beamSplash.toModify(_localMaxSeeds_ECAL.thresholdsByDetector[0], seedingThreshold = 100, seedingThresholdPt = 20)
66+
beamSplash.toModify(_localMaxSeeds_ECAL.thresholdsByDetector[1], seedingThreshold = 100, seedingThresholdPt = 20)
6467

6568
# topo clusterizer
6669
_topoClusterizer_ECAL = cms.PSet(
@@ -77,6 +80,8 @@
7780
),
7881
useCornerCells = cms.bool(True)
7982
)
83+
beamSplash.toModify(_topoClusterizer_ECAL.thresholdsByDetector[0], gatheringThreshold = 90)
84+
beamSplash.toModify(_topoClusterizer_ECAL.thresholdsByDetector[1], gatheringThreshold = 90)
8085

8186
#position calculations
8287
_positionCalcECAL_all_nodepth = cms.PSet(

0 commit comments

Comments
 (0)