CMS 3D CMS Logo

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),
13 
14  doPhotoStatistics = cms.bool(True),
15  photoelectronsToAnalog = cms.double(4.1718),
16  simHitToPhotoelectrons = cms.double(1000.0),
17  syncPhase = cms.bool(True),
18  timePhase = cms.double(-4.0)
19  )
20 )