File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
Configuration/ProcessModifiers/python
RecoLocalCalo/EcalRecProducers/python Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1+ import FWCore .ParameterSet .Config as cms
2+
3+ # This modifier is for the ECAL Cross-Correlation timing algorithm
4+
5+ ecal_cctiming = cms .Modifier ()
6+
Original file line number Diff line number Diff line change 55
66# use CC timing method for Run3 and Phase 2 (carried over from Run3 era)
77import FWCore .ParameterSet .Config as cms
8- from Configuration .Eras . Modifier_run3_ecal_cff import run3_ecal
9- run3_ecal .toModify (ecalMultiFitUncalibRecHit ,
8+ from Configuration .ProcessModifiers . ecal_cctiming_cff import ecal_cctiming
9+ ecal_cctiming .toModify (ecalMultiFitUncalibRecHit ,
1010 algoPSet = dict (timealgo = 'crossCorrelationMethod' ,
1111 EBtimeNconst = 25.5 ,
1212 EBtimeConstantTerm = 0.85 ,
1919 )
2020)
2121
22- # this overrides the modifications made by run3_ecal if both modifiers are active
22+ # this overrides the modifications made by the ecal_cctiming modifier if both modifiers are active
2323from Configuration .ProcessModifiers .gpuValidationEcal_cff import gpuValidationEcal
2424gpuValidationEcal .toModify (ecalMultiFitUncalibRecHit ,
2525 algoPSet = dict (timealgo = 'RatioMethod' ,
Original file line number Diff line number Diff line change 100100 )
101101
102102# use CC timing method for Run3 and Phase 2 (carried over from Run3 era)
103- from Configuration .Eras . Modifier_run3_ecal_cff import run3_ecal
104- run3_ecal .toModify (ecalRecHit ,
103+ from Configuration .ProcessModifiers . ecal_cctiming_cff import ecal_cctiming
104+ ecal_cctiming .toModify (ecalRecHit ,
105105 timeCalibTag = ':CC' ,
106106 timeOffsetTag = ':CC'
107107)
108108
109- # this overrides the modifications made by run3_ecal if both modifiers are active
109+ # this overrides the modifications made by ecal_cctiming if both modifiers are active
110110from Configuration .ProcessModifiers .gpuValidationEcal_cff import gpuValidationEcal
111111gpuValidationEcal .toModify (ecalRecHit ,
112112 timeCalibTag = ':' ,
You can’t perform that action at this time.
0 commit comments