Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 from RecoLocalMuon.CSCRecHitD.cscRecHitD_cff import *
00005 csc2DRecHits = cms.EDProducer("CSCRecHitDProducer",
00006
00007
00008
00009
00010
00011 cscRecHitDParameters,
00012
00013
00014
00015 CSCStripPeakThreshold = cms.double(10.0),
00016 CSCStripClusterChargeCut = cms.double(25.0),
00017 CSCStripxtalksOffset = cms.double(0.03),
00018
00019
00020
00021 UseAverageTime = cms.bool(False),
00022 UseParabolaFit = cms.bool(False),
00023 UseFivePoleFit = cms.bool(True),
00024
00025
00026 CSCWireClusterDeltaT = cms.int32(1),
00027
00028
00029 CSCUseCalibrations = cms.bool(True),
00030
00031 CSCUseStaticPedestals = cms.bool(False),
00032 CSCNoOfTimeBinsForDynamicPedestal = cms.int32(2),
00033
00034
00035
00036
00037 wireDigiTag = cms.InputTag("muonCSCDigis","MuonCSCWireDigi"),
00038 stripDigiTag = cms.InputTag("muonCSCDigis","MuonCSCStripDigi"),
00039
00040
00041
00042
00043
00044 readBadChannels = cms.bool(True),
00045 readBadChambers = cms.bool(True),
00046
00047
00048
00049 CSCUseTimingCorrections = cms.bool(True),
00050
00051
00052
00053
00054 CSCDebug = cms.untracked.bool(False),
00055
00056 CSCstripWireDeltaTime = cms.int32(8),
00057
00058 CSCStripClusterSize = cms.untracked.int32(3)
00059 )
00060
00061