Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:37

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 castorDigitizer = cms.PSet(
0004     accumulatorType = cms.string("CastorDigiProducer"),
0005     hitsProducer = cms.InputTag("g4SimHits","CastorFI"),
0006     makeDigiSimLinks = cms.untracked.bool(False),
0007     doNoise = cms.bool(True),
0008     doTimeSlew = cms.bool(True),
0009     castor = cms.PSet(
0010         readoutFrameSize = cms.int32(6),
0011         binOfMaximum = cms.int32(5),
0012         samplingFactor = cms.double(0.062577), ## GeV/pe
0013 
0014         doPhotoStatistics = cms.bool(True),
0015         photoelectronsToAnalog = cms.double(4.1718),
0016         simHitToPhotoelectrons = cms.double(1000.0),
0017         syncPhase = cms.bool(True),
0018         timePhase = cms.double(-4.0)
0019     )
0020 )