Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def customise(process):
0004 
0005     # ECAL TPG with 2009 beam commissioning TTF thresholds
0006 
0007     process.EcalTrigPrimESProducer.DatabaseFile = cms.untracked.string('TPG_beamv0_MC.txt.gz')
0008     
0009     # ECAL SRP settings for 2009 beam commissioning
0010 
0011     process.simEcalDigis.ecalDccZs1stSample = cms.int32(3)
0012     process.simEcalDigis.dccNormalizedWeights = cms.vdouble(-1.1865, 0.0195, 0.2900, 0.3477, 0.3008, 0.2266)
0013     process.simEcalDigis.srpBarrelLowInterestChannelZS = cms.double(2.25*.035)
0014     process.simEcalDigis.srpEndcapLowInterestChannelZS = cms.double(3.75*0.06)
0015 
0016     return(process)
0017