CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalTrigPrimMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hcalTrigPrimMonitor=cms.EDAnalyzer("HcalTrigPrimMonitor",
4  # base class stuff
5  debug = cms.untracked.int32(0),
6  online = cms.untracked.bool(False),
7  AllowedCalibTypes = cms.untracked.vint32(0), # by default, don't include calibration events
8  #AllowedCalibTypes = cms.untracked.vint32(0,1,2,3,4,5),
9  mergeRuns = cms.untracked.bool(False),
10  enableCleanup = cms.untracked.bool(False),
11  subSystemFolder = cms.untracked.string("Hcal/"),
12  TaskFolder = cms.untracked.string("TrigPrimMonitor_Hcal/"),
13  skipOutOfOrderLS = cms.untracked.bool(False),
14  NLumiBlocks = cms.untracked.int32(4000),
15 
16  # TrigPrimMonitor
17  dataLabel = cms.InputTag('hcalDigis'),
18  emulLabel = cms.InputTag('valHcalTriggerPrimitiveDigis'),
19  ZSBadTPThreshold = cms.vint32( 0,
20  2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
21  2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
22  2, 2, 2, 2, 2, 2, 2, 2,
23  2, 2, 2, 2
24  ),
25  ZSAlarmThreshold = cms.vint32( 0,
26 # 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
27 # 10, 10, 10, 10, 40, 40, 10, 20, 20, 20,
28 # 13, 13, 13, 13, 13, 13, 10, 10,
29 # 3, 3, 2, 2
30  10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
31  10, 10, 10, 10, 40, 50, 10, 30, 30, 30,
32  20, 15, 15, 15, 15, 15, 10, 10,
33  5, 5, 5, 5
34  ),
35  FEDRawDataCollection=cms.untracked.InputTag("rawDataCollector")
36 )