CMS 3D CMS Logo

cscNeutronWriter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 cscNeutronWriter = cms.EDProducer("CSCNeutronWriter",
4  timeWindow = cms.double(20.0),
5  nChamberTypes = cms.int32(10),
6  writer = cms.string('EDM'),
7  output = cms.string('CSCNeutronHits.root'),
8  neutronTimeCut = cms.double(250.0),
9  # save the hits starting at 19 ns
10  t0 = cms.double(19.),
11  input = cms.InputTag("g4SimHits","MuonCSCHits")
12 )
13 
14 
15