Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 zdcreco = cms.EDProducer("ZdcSimpleReconstructor",
0004     correctionPhaseNS = cms.double(0.0),
0005     digiLabelhcal = cms.InputTag("hcalDigis"),
0006     digiLabelcastor = cms.InputTag("castorDigis"),
0007     digiLabelQIE10ZDC = cms.InputTag("hcalDigis:ZDC"),
0008     Subdetector = cms.string('ZDC'),
0009     correctForPhaseContainment = cms.bool(False),
0010     correctForTimeslew = cms.bool(False),
0011     dropZSmarkedPassed = cms.bool(True),
0012     recoMethod = cms.int32(2)   
0013 )
0014 
0015