CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cscRecHitD_cfi.py
Go to the documentation of this file.
2 
3 # parameters for CSC rechit building
5 csc2DRecHits = cms.EDProducer("CSCRecHitDProducer",
6  #
7  # Parameters for coordinate and uncertainty calculations
8  # Data and MC parameters are (still) different
9  # Needs tuning
10  #
11  cscRecHitDParameters,
12  #
13  # Parameters for strip hits
14  #
15  CSCStripPeakThreshold = cms.double(10.0),
16  CSCStripClusterChargeCut = cms.double(25.0),
17  CSCStripxtalksOffset = cms.double(0.03),
18  #
19  # How to find SCA peak time?
20  #
21  UseAverageTime = cms.bool(False),
22  UseParabolaFit = cms.bool(False),
23  UseFivePoleFit = cms.bool(True),
24  #
25  # Parameters for wire hits
26  CSCWireClusterDeltaT = cms.int32(1),
27  #
28  # Calibration info:
29  CSCUseCalibrations = cms.bool(True),
30  # Pedestal treatment
31  CSCUseStaticPedestals = cms.bool(False),
32  CSCNoOfTimeBinsForDynamicPedestal = cms.int32(2),
33  #
34  # Which digis:
35  #
36  # When using data from unpacker
37  wireDigiTag = cms.InputTag("muonCSCDigis","MuonCSCWireDigi"),
38  stripDigiTag = cms.InputTag("muonCSCDigis","MuonCSCStripDigi"),
39  # When using data from simulation
40  # wireDigiTag = cms.InputTag("simMuonCSCDigis","MuonCSCWireDigi"),
41  # stripDigiTag = cms.InputTag("simMuonCSCDigis","MuonCSCStripDigi"),
42  #
43  # Use dead channels information
44  readBadChannels = cms.bool(True),
45  readBadChambers = cms.bool(True),
46  #
47  # Do we use the chip and chamber and L1A phase corrections when filling the recHit time?
48  #
49  CSCUseTimingCorrections = cms.bool(True),
50  #
51  # Do we correct the energy deposited for gas gains?
52  CSCUseGasGainCorrections = cms.bool(True),
53  #
54  # Parameters which are not used currently
55  #
56  CSCDebug = cms.untracked.bool(False),
57  # To be set once wire digis have proper timing info:
58  CSCstripWireDeltaTime = cms.int32(8),
59  # to be deleted
60  CSCStripClusterSize = cms.untracked.int32(3)
61 )
62 
63