Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 cscNeutronWriter = cms.EDProducer("CSCNeutronWriter",
0004     timeWindow = cms.double(20.0),
0005     nChamberTypes = cms.int32(10),
0006     writer = cms.string('EDM'),
0007     output = cms.string('CSCNeutronHits.root'),
0008     neutronTimeCut = cms.double(250.0),
0009     # save the hits starting at 19 ns
0010     t0 = cms.double(19.),
0011     input = cms.InputTag("g4SimHits","MuonCSCHits")
0012 )
0013 
0014 
0015