CMS 3D CMS Logo

SiStripMonitorPedestals_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 PedsMon = DQMEDAnalyzer('SiStripMonitorPedestals',
5  OutputMEsInRootFile = cms.bool(False),
6  StripQualityLabel = cms.string(''),
7  RunTypeFlag = cms.string('CalculatedPlotsOnly'),
8 
9  DigiProducer = cms.string('siStripDigis'),
10  PedestalsPSet = cms.PSet(
11  MaskDeadCut = cms.double(0.7),
12  MaskCalculationFlag = cms.int32(1),
13  NumberOfEventsForInit = cms.int32(200),
14  MaskNoiseCut = cms.double(6.0),
15  useDB = cms.bool(False),
16  NumCMstripsInGroup = cms.int32(128),
17  CutToAvoidSignal = cms.double(3.0),
18  NumberOfEventsForIteration = cms.int32(100),
19  CalculatorAlgorithm = cms.string('TT6'),
20  CMType = cms.string('TT6'),
21  MaskTruncationCut = cms.double(0.05)
22  ),
23  UseFedKey = cms.untracked.bool(True),
24  OutPutFileName = cms.string('SiStripPedestal.root')
25 )
26 
27 
DQMEDAnalyzer
Definition: DQMEDAnalyzer.py:1