File indexing completed on 2023-03-17 11:19:04
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006 from RecoLocalMuon.CSCRecHitD.cscRecHitD_cff import *
0007 import RecoLocalMuon.CSCRecHitD.cscRecHitDProducer_cfi as _mod
0008
0009 csc2DRecHits = _mod.cscRecHitDProducer.clone(
0010
0011
0012
0013 CSCStripPeakThreshold = 10.0,
0014 CSCStripClusterChargeCut = 25.0,
0015 CSCStripxtalksOffset = 0.03,
0016
0017
0018
0019 UseAverageTime = False,
0020 UseParabolaFit = False,
0021 UseFivePoleFit = True,
0022
0023
0024 CSCWireClusterDeltaT = 1,
0025
0026
0027 CSCUseReducedWireTimeWindow = True,
0028 CSCWireTimeWindowLow = 5,
0029 CSCWireTimeWindowHigh = 11,
0030
0031
0032 CSCUseCalibrations = True,
0033
0034 CSCUseStaticPedestals = False,
0035 CSCNoOfTimeBinsForDynamicPedestal = 2,
0036
0037
0038
0039
0040 wireDigiTag = "muonCSCDigis:MuonCSCWireDigi",
0041 stripDigiTag = "muonCSCDigis:MuonCSCStripDigi",
0042
0043
0044
0045
0046
0047 readBadChannels = True,
0048 readBadChambers = True,
0049
0050
0051
0052 CSCUseTimingCorrections = True,
0053
0054
0055 CSCUseGasGainCorrections = True,
0056
0057
0058
0059 CSCDebug = False,
0060
0061 CSCstripWireDeltaTime = 8,
0062
0063
0064
0065
0066
0067 **cscRecHitDParameters
0068 )
0069
0070
0071
0072 from Configuration.Eras.Modifier_run2_common_cff import run2_common
0073 run2_common.toModify( csc2DRecHits,
0074 readBadChannels = False,
0075 CSCUseGasGainCorrections = False )