Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Simulated hodoscope reconstruction
0004 ecalTBSimHodoscopeReconstructor = cms.EDProducer("EcalTBHodoscopeRecInfoProducer",
0005     fitMethod = cms.int32(0),
0006     rawInfoProducer = cms.string('SimEcalTBHodoscope'),
0007     recInfoCollection = cms.string('EcalTBHodoscopeRecInfo'),
0008     # vdouble planeShift = { 0.0, 0.0, 0.4633, 0.1000 }
0009     planeShift = cms.vdouble(0.0, 0.0, 0.0, 0.0),
0010     zPosition = cms.vdouble(-3251.0, -2881.0, -751.0, -381.0),
0011     rawInfoCollection = cms.string('EcalTBHodoscopeRawInfo')
0012 )
0013 
0014