Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Define EcalSelectiveReadoutProducer module as "simEcalDigis" with default settings 
0004 from SimCalorimetry.EcalSelectiveReadoutProducers.ecalDigis_cfi import *
0005 
0006 # Changes settings to 2009 and 2010 beam ones:
0007 #
0008 # DCC ZS FIR weights.
0009 simEcalDigis.dccNormalizedWeights = cms.vdouble(-1.1865, 0.0195, 0.2900, 0.3477, 0.3008, 0.2266)
0010 
0011 # Index of time sample (staring from 1) the first DCC weights is implied
0012 simEcalDigis.ecalDccZs1stSample = cms.int32(3)
0013 
0014 # ZS energy threshold in GeV to apply to low interest channels of barrel
0015 simEcalDigis.ebDccAdcToGeV = cms.double(0.035)
0016 simEcalDigis.srpBarrelLowInterestChannelZS = cms.double(2.25*0.035)
0017 
0018 # ZS energy threshold in GeV to apply to low interest channels of endcap
0019 simEcalDigis.eeDccAdcToGeV = cms.double(0.06)
0020 simEcalDigis.srpEndcapLowInterestChannelZS = cms.double(3.75*0.06)
0021