CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/HcalMonitorTasks/python/HcalTrigPrimMonitor_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 HcalTrigPrimMonitor=cms.EDAnalyzer("HcalTrigPrimMonitor",
00004    # base class stuff
00005    debug                  = cms.untracked.int32(0),
00006    online                 = cms.untracked.bool(False),
00007    AllowedCalibTypes      = cms.untracked.vint32(0), # by default, don't include calibration events
00008    #AllowedCalibTypes      = cms.untracked.vint32(0,1,2,3,4,5),
00009    mergeRuns              = cms.untracked.bool(False),
00010    enableCleanup          = cms.untracked.bool(False),
00011    subSystemFolder        = cms.untracked.string("Hcal/"),
00012    TaskFolder             = cms.untracked.string("TrigPrimMonitor_Hcal/"),
00013    skipOutOfOrderLS       = cms.untracked.bool(False),
00014    NLumiBlocks            = cms.untracked.int32(4000),
00015 
00016    # TrigPrimMonitor
00017    dataLabel              = cms.InputTag('hcalDigis'),
00018    emulLabel              = cms.InputTag('valHcalTriggerPrimitiveDigis'),
00019    ZSBadTPThreshold       = cms.vint32( 0,
00020                                         2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
00021                                         2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
00022                                         2, 2, 2, 2, 2, 2, 2, 2,
00023                                         2, 2, 2, 2
00024                                       ),                                        
00025    ZSAlarmThreshold       = cms.vint32( 0,
00026 #                                       10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
00027 #                                       10, 10, 10, 10, 40, 40, 10, 20, 20, 20,
00028 #                                       13, 13, 13, 13, 13, 13, 10, 10,
00029 #                                       3, 3, 2, 2
00030                                         10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
00031                                         10, 10, 10, 10, 40, 50, 10, 30, 30, 30,
00032                                         20, 15, 15, 15, 15, 15, 10, 10,
00033                                         5, 5, 5, 5
00034                                       )
00035 )