CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 HcalHotCellMonitor=cms.EDAnalyzer("HcalHotCellMonitor",
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                                   mergeRuns              = cms.untracked.bool(False),
00009                                   enableCleanup          = cms.untracked.bool(False),
00010                                   subSystemFolder        = cms.untracked.string("Hcal/"),
00011                                   TaskFolder             = cms.untracked.string("HotCellMonitor_Hcal/"),
00012                                   skipOutOfOrderLS       = cms.untracked.bool(True),
00013                                   NLumiBlocks            = cms.untracked.int32(4000),
00014                                   makeDiagnostics        = cms.untracked.bool(True),
00015                                   
00016                                   # Hot Cell Monitor-specific Info
00017                                   
00018                                   # Input collections
00019                                   hbheRechitLabel              = cms.untracked.InputTag("hbhereco"),
00020                                   hoRechitLabel                = cms.untracked.InputTag("horeco"),
00021                                   hfRechitLabel                = cms.untracked.InputTag("hfreco"),
00022 
00023                                   # disable testing of HO ring 2
00024                                   excludeHORing2  = cms.untracked.bool(True),
00025                                   
00026                                   # Booleans for various tests
00027                                   test_energy     = cms.untracked.bool(False),  # dropped in favor of ET test
00028                                   test_et         = cms.untracked.bool(True),
00029                                   test_persistent = cms.untracked.bool(True),
00030                                   test_neighbor   = cms.untracked.bool(False),
00031 
00032                                   # Threshold requirements
00033                                   minEvents       = cms.untracked.int32(200),
00034                                   minErrorFlag    = cms.untracked.double(0.10), # fraction of a lumi section for which a channel must be above threshold to be considered a problem in LS plots
00035                                   energyThreshold = cms.untracked.double(10.),
00036                                   energyThreshold_HF = cms.untracked.double(20.),
00037                                   ETThreshold        = cms.untracked.double(5.0),
00038                                   ETThreshold_HF     = cms.untracked.double(5.0),
00039                                   # other subdetector thresholds are also untracked
00040 
00041                                   persistentThreshold = cms.untracked.double(6.),
00042                                   persistentThreshold_HF = cms.untracked.double(10.),
00043 
00044                                   persistentETThreshold    = cms.untracked.double(3.),
00045                                   persistentETThreshold_HF = cms.untracked.double(3.),
00046 
00047                                   )