CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtNeutronWriter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 dtNeutronWriter = cms.EDProducer("DTNeutronWriter",
4  timeWindow = cms.double(20.0),
5  writer = cms.string('EDM'),
6  output = cms.string('DTNeutronHits.root'),
7  neutronTimeCut = cms.double(250.0),
8  # save the hits starting at 13 ns
9  t0 = cms.double(13.),
10  input = cms.InputTag("g4SimHits","MuonDTHits")
11 )
12 
13 
14