CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripMonitorPedestals_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PedsMon = cms.EDAnalyzer("SiStripMonitorPedestals",
4  OutputMEsInRootFile = cms.bool(False),
5  StripQualityLabel = cms.string(''),
6  RunTypeFlag = cms.string('CalculatedPlotsOnly'), ##Options : ConDBPlotsOnly , CalculatedPlotsOnly, AllPlots
7 
8  DigiProducer = cms.string('siStripDigis'),
9  PedestalsPSet = cms.PSet(
10  MaskDeadCut = cms.double(0.7),
11  MaskCalculationFlag = cms.int32(1),
12  NumberOfEventsForInit = cms.int32(200),
13  MaskNoiseCut = cms.double(6.0),
14  useDB = cms.bool(False),
15  NumCMstripsInGroup = cms.int32(128),
16  CutToAvoidSignal = cms.double(3.0),
17  NumberOfEventsForIteration = cms.int32(100),
18  CalculatorAlgorithm = cms.string('TT6'),
19  CMType = cms.string('TT6'),
20  MaskTruncationCut = cms.double(0.05)
21  ),
22  UseFedKey = cms.untracked.bool(True),
23  OutPutFileName = cms.string('SiStripPedestal.root')
24 )
25 
26