CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
castorDigitizer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 castorDigitizer = cms.PSet(
4  accumulatorType = cms.string("CastorDigiProducer"),
5  hitsProducer = cms.InputTag("g4SimHits","CastorFI"),
6  makeDigiSimLinks = cms.untracked.bool(False),
7  doNoise = cms.bool(True),
8  doTimeSlew = cms.bool(True),
9  castor = cms.PSet(
10  readoutFrameSize = cms.int32(6),
11  binOfMaximum = cms.int32(5),
12  samplingFactor = cms.double(0.062577), ## GeV/pe
13 
14  doPhotoStatistics = cms.bool(True),
15  photoelectronsToAnalog = cms.double(4.009),
16  simHitToPhotoelectrons = cms.double(1000.0),
17  syncPhase = cms.bool(True),
18  timePhase = cms.double(-4.0),
19  doDynamicNoise = cms.bool(False)
20  )
21 )