Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 PedsMon = cms.EDAnalyzer("SiStripMonitorPedestals",
00004 OutputMEsInRootFile = cms.bool(False),
00005 StripQualityLabel = cms.string(''),
00006 RunTypeFlag = cms.string('CalculatedPlotsOnly'),
00007
00008 DigiProducer = cms.string('siStripDigis'),
00009 PedestalsPSet = cms.PSet(
00010 MaskDeadCut = cms.double(0.7),
00011 MaskCalculationFlag = cms.int32(1),
00012 NumberOfEventsForInit = cms.int32(200),
00013 MaskNoiseCut = cms.double(6.0),
00014 useDB = cms.bool(False),
00015 NumCMstripsInGroup = cms.int32(128),
00016 CutToAvoidSignal = cms.double(3.0),
00017 NumberOfEventsForIteration = cms.int32(100),
00018 CalculatorAlgorithm = cms.string('TT6'),
00019 CMType = cms.string('TT6'),
00020 MaskTruncationCut = cms.double(0.05)
00021 ),
00022 UseFedKey = cms.untracked.bool(True),
00023 OutPutFileName = cms.string('SiStripPedestal.root')
00024 )
00025
00026