00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 SiStripNoisesGenerator = cms.Service("SiStripNoisesGenerator",
00005 printDebug = cms.untracked.uint32(5),
00006 file = cms.FileInPath('CalibTracker/SiStripCommon/data/SiStripDetInfo.dat'),
00007
00008 StripLengthMode = cms.bool(True),
00009
00010
00011
00012
00013
00014
00015 NoiseStripLengthSlopeTIB = cms.vdouble( 51.0, 51.0, 51.0, 51.0),
00016 NoiseStripLengthQuoteTIB = cms.vdouble(630.0, 630.0, 630.0, 630.0),
00017
00018 NoiseStripLengthSlopeTID = cms.vdouble( 51.0, 51.0, 51.0),
00019 NoiseStripLengthQuoteTID = cms.vdouble(630.0, 630.0, 630.0),
00020
00021 NoiseStripLengthSlopeTOB = cms.vdouble( 51.0, 51.0, 51.0, 51.0, 51.0, 51.0),
00022 NoiseStripLengthQuoteTOB = cms.vdouble(630.0, 630.0, 630.0, 630.0, 630.0, 630.0),
00023
00024 NoiseStripLengthSlopeTEC = cms.vdouble( 51.0, 51.0, 51.0, 51.0, 51.0, 51.0, 51.0),
00025 NoiseStripLengthQuoteTEC = cms.vdouble(630.0, 630.0, 630.0, 630.0, 630.0, 630.0, 630.0),
00026
00027 electronPerAdc = cms.double(1.0),
00028
00029
00030
00031 MeanNoiseTIB = cms.vdouble(4.0, 4.0, 4.0, 4.0),
00032 SigmaNoiseTIB = cms.vdouble(0.5, 0.5, 0.5, 0.5),
00033
00034 MeanNoiseTID = cms.vdouble(4.0, 4.0, 4.0),
00035 SigmaNoiseTID = cms.vdouble(0.5, 0.5, 0.5),
00036
00037 MeanNoiseTOB = cms.vdouble(4.0, 4.0, 4.0, 4.0, 4.0, 4.0),
00038 SigmaNoiseTOB = cms.vdouble(0.5, 0.5, 0.5, 0.5, 0.5, 0.5),
00039
00040 MeanNoiseTEC = cms.vdouble(4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0),
00041 SigmaNoiseTEC = cms.vdouble(0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5),
00042
00043 MinPositiveNoise = cms.double(0.1)
00044 )
00045
00046 from SimTracker.SiStripDigitizer.SiStripDigi_cfi import *
00047 SiStripNoisesGenerator.electronPerAdc=simSiStripDigis.electronPerAdcDec
00048
00049