CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DQM/HcalMonitorTasks/python/HcalDeadCellMonitor_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 HcalDeadCellMonitor=cms.EDAnalyzer("HcalDeadCellMonitor",
00004                                    # base class stuff
00005                                    debug                  = cms.untracked.int32(0),
00006                                    online                 = cms.untracked.bool(False),
00007                                    AllowedCalibTypes      = cms.untracked.vint32([0,1,2,3,4,5,6,7]),
00008                                    mergeRuns              = cms.untracked.bool(False),
00009                                    enableCleanup          = cms.untracked.bool(False),
00010                                    subSystemFolder        = cms.untracked.string("Hcal/"),
00011                                    TaskFolder             = cms.untracked.string("DeadCellMonitor_Hcal/"),
00012                                    skipOutOfOrderLS       = cms.untracked.bool(True),
00013                                    NLumiBlocks            = cms.untracked.int32(4000),
00014                                    makeDiagnostics        = cms.untracked.bool(False),
00015 
00016                                    BadChannelStatusMask   = cms.untracked.int32((1<<5) | (1<<1)), # dead cells mask: up to 03.01.2001 dead cells masks keep changing... expect a final version soon.
00017                                    # Dead Cell Monitor-specific Info
00018                                    
00019                                    # Input collections
00020                                    hbheRechitLabel        = cms.untracked.InputTag("hbhereco"),
00021                                    hoRechitLabel          = cms.untracked.InputTag("horeco"),
00022                                    hfRechitLabel          = cms.untracked.InputTag("hfreco"),
00023                                    digiLabel              = cms.untracked.InputTag("hcalDigis"),
00024                                    # minimum number of events necessary for lumi-block-based checking to commence
00025                                    minDeadEventCount      = cms.untracked.int32(1000),
00026 
00027                                    excludeHORing2         = cms.untracked.bool(False),
00028                                    excludeHO1P02          = cms.untracked.bool(True),
00029                                    #booleans for dead cell tests
00030                                    test_digis             = cms.untracked.bool(True), # test for recent missing digis
00031                                    test_rechits           = cms.untracked.bool(True), # test for missing rechits
00032                                    MissingRechitEnergyThreshold = cms.untracked.double(-99.)
00033 
00034                                    )