File indexing completed on 2024-04-06 11:59:52
0001 import FWCore.ParameterSet.Config as cms
0002
0003 siStripNoisesFakeESSource = cms.ESSource("SiStripNoisesFakeESSource",
0004 appendToDataLabel = cms.string(''),
0005 SiStripDetInfoFile = cms.FileInPath("CalibTracker/SiStripCommon/data/SiStripDetInfo.dat"),
0006
0007 printDebug = cms.untracked.uint32(5),
0008
0009 StripLengthMode = cms.bool(True),
0010
0011
0012
0013
0014
0015
0016 NoiseStripLengthSlopeTIB = cms.vdouble( 51.0, 51.0, 51.0, 51.0),
0017 NoiseStripLengthQuoteTIB = cms.vdouble(630.0, 630.0, 630.0, 630.0),
0018
0019 NoiseStripLengthSlopeTID = cms.vdouble( 51.0, 51.0, 51.0),
0020 NoiseStripLengthQuoteTID = cms.vdouble(630.0, 630.0, 630.0),
0021
0022 NoiseStripLengthSlopeTOB = cms.vdouble( 51.0, 51.0, 51.0, 51.0, 51.0, 51.0),
0023 NoiseStripLengthQuoteTOB = cms.vdouble(630.0, 630.0, 630.0, 630.0, 630.0, 630.0),
0024
0025 NoiseStripLengthSlopeTEC = cms.vdouble( 51.0, 51.0, 51.0, 51.0, 51.0, 51.0, 51.0),
0026 NoiseStripLengthQuoteTEC = cms.vdouble(630.0, 630.0, 630.0, 630.0, 630.0, 630.0, 630.0),
0027
0028 electronPerAdc = cms.double(1.0),
0029
0030
0031
0032 MeanNoiseTIB = cms.vdouble(4.0, 4.0, 4.0, 4.0),
0033 SigmaNoiseTIB = cms.vdouble(0.5, 0.5, 0.5, 0.5),
0034
0035 MeanNoiseTID = cms.vdouble(4.0, 4.0, 4.0),
0036 SigmaNoiseTID = cms.vdouble(0.5, 0.5, 0.5),
0037
0038 MeanNoiseTOB = cms.vdouble(4.0, 4.0, 4.0, 4.0, 4.0, 4.0),
0039 SigmaNoiseTOB = cms.vdouble(0.5, 0.5, 0.5, 0.5, 0.5, 0.5),
0040
0041 MeanNoiseTEC = cms.vdouble(4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0),
0042 SigmaNoiseTEC = cms.vdouble(0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5),
0043
0044 MinPositiveNoise = cms.double(0.1)
0045 )
0046
0047 from SimGeneral.MixingModule.stripDigitizer_cfi import *
0048
0049 siStripNoisesFakeESSource.electronPerAdc = stripDigitizer.electronPerAdcDec
0050
0051