Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 castorreco = cms.EDProducer("CastorSimpleReconstructor",
0004     correctionPhaseNS          = cms.double(0.0),
0005     digiLabel                  = cms.InputTag("castorDigis"),
0006     samplesToAdd               = cms.int32(2),
0007     Subdetector                = cms.string('CASTOR'),
0008     firstSample                = cms.int32(4),
0009     correctForPhaseContainment = cms.bool(False),
0010     correctForTimeslew         = cms.bool(False),
0011     tsFromDB                   = cms.bool(True),
0012     setSaturationFlag          = cms.bool(True),
0013     maxADCvalue                = cms.int32(127),
0014     doSaturationCorr           = cms.bool(True)
0015 )