CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalLSbyLSMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hcalLSbyLSMonitor=cms.EDAnalyzer("HcalLSbyLSMonitor",
4  # base class stuff
5  debug = cms.untracked.int32(0),
6  online = cms.untracked.bool(False),
7  AllowedCalibTypes = cms.untracked.vint32([0,1,2,3,4,5,6,7]),
8  mergeRuns = cms.untracked.bool(False),
9  enableCleanup = cms.untracked.bool(False),
10  subSystemFolder = cms.untracked.string("Hcal/"),
11  TaskFolder = cms.untracked.string("LSbyLS_Hcal/"),
12  skipOutOfOrderLS = cms.untracked.bool(True),
13  NLumiBlocks = cms.untracked.int32(4000),
14  makeDiagnostics = cms.untracked.bool(False),
15 
16  # List directories of all tasks that contribute to this test
17  # Make sure that all listed tasks are filling their ProblemCurrentLB histogram,
18  # or they will cause this test to automatically fail!
19  TaskDirectories = cms.untracked.vstring("DeadCellMonitor_Hcal/",
20  "DigiMonitor_Hcal/",
21  "HotCellMonitor_Hcal/",
22  "BeamMonitor_Hcal/"),
23  minEvents = cms.untracked.int32(500),
24  FEDRawDataCollection=cms.untracked.InputTag("rawDataCollector")
25  )