CMS 3D CMS Logo

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