CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonDTDigis_cfi.py
Go to the documentation of this file.
2 
3 simMuonDTDigis = cms.EDProducer("DTDigitizer",
4  # Velocity of signal propagation along the wire (cm/ns)
5  # For the default value
6  # cfr. CMS-IN 2000-021: (2.56+-0.17)x1e8 m/s
7  # CMS NOTE 2003-17: (0.244) m/ns
8  vPropWire = cms.double(24.4),
9  # The Synchronization Algo Name. Algos Type= [DTDigiSyncTOFCorr,DTDigiSyncFromTable]
10  SyncName = cms.string('DTDigiSyncTOFCorr'),
11  # configure the creation of Digi-Sim links:
12  # one-to-one correspondence between digis and SimHits (MultipleLinks=false)
13  # or association of SimHits within a given time window (of the order of the resolution, in ns)
14  MultipleLinks = cms.bool(True),
15  # constant drift velocity for the IdealModel (cm/ns)
16  IdealModelConstantDriftVelocity = cms.double(0.0055),
17  interpolate = cms.bool(True),
18  # further configurable smearing
19  Smearing = cms.double(2.4),
20  # Dead time for signals on the same wire (number from M. Pegoraro)
21  deadTime = cms.double(150.0),
22  #Name of Collection used for create the XF
23  InputCollection = cms.string('g4SimHitsMuonDTHits'),
24  debug = cms.untracked.bool(False),
25  # Its parameters
26  pset = cms.PSet(
27  TOFCorrection = cms.int32(3),
28  offset = cms.double(500.0)
29  ),
30  # ideal model. Used for debug.
31  # It uses constant drift velocity and it hasn't any external delay
32  IdealModel = cms.bool(False),
33  LinksTimeWindow = cms.double(10.0),
34  onlyMuHits = cms.bool(False),
35  GeometryType = cms.string('idealForDigi')
36 )
37 
38 
39