CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/SimCalorimetry/CastorSim/python/castordigi_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 simCastorDigis = cms.EDProducer("CastorDigiProducer",
00004     doNoise = cms.bool(True),
00005     doTimeSlew = cms.bool(True),
00006     castor = cms.PSet(
00007         readoutFrameSize = cms.int32(6),
00008         binOfMaximum = cms.int32(4),
00009         samplingFactor = cms.double(16.75), ## pe/GeV
00010 
00011         doPhotoStatistics = cms.bool(True),
00012         photoelectronsToAnalog = cms.double(4.24),
00013         simHitToPhotoelectrons = cms.double(1000.0),
00014         syncPhase = cms.bool(True),
00015         timePhase = cms.double(-4.0)
00016     )
00017 )
00018 
00019