CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 HcalDetDiagPedestalMonitor=cms.EDAnalyzer("HcalDetDiagPedestalMonitor",
00004                                           # base class stuff
00005                                           debug                  = cms.untracked.int32(0),
00006                                           online                 = cms.untracked.bool(False),
00007                                           AllowedCalibTypes      = cms.untracked.vint32(1),  # pedestals have calibration type 1
00008                                           mergeRuns              = cms.untracked.bool(False),
00009                                           enableCleanup          = cms.untracked.bool(False),
00010                                           subSystemFolder        = cms.untracked.string("Hcal/"),
00011                                           TaskFolder             = cms.untracked.string("DetDiagPedestalMonitor_Hcal/"),
00012                                           skipOutOfOrderLS       = cms.untracked.bool(True),
00013                                           NLumiBlocks            = cms.untracked.int32(4000),
00014                                           makeDiagnostics        = cms.untracked.bool(False),
00015                                           
00016                                           # DetDiag Pedestal Monitor-specific Info
00017                                           
00018                                           # Input collections
00019                                           digiLabel              = cms.untracked.InputTag("hcalDigis"),
00020                                           rawDataLabel           = cms.untracked.InputTag("rawDataCollector"),
00021                                           # reference dataset path + filename
00022                                           PedestalReferenceData  = cms.untracked.string(""),
00023                                           # processed dataset name (to create HTML only)
00024                                           PedestalDatasetName   = cms.untracked.string(""),
00025                                           # html path (to create HTML from dataset only)        
00026                                           htmlOutputPath         = cms.untracked.string(""),
00027                                           # Save output to different files on same file
00028                                           Overwrite              = cms.untracked.bool(True),
00029                                           # path to store datasets for current run
00030                                           OutputFilePath         = cms.untracked.string(""),
00031                                           # path to store xmz.zip file to be uploaded into OMDG
00032                                           XmlFilePath            = cms.untracked.string(""),
00033                                           # thresholds
00034                                           HBMeanTreshold         = cms.untracked.double(0.2),
00035                                           HBRmsTreshold          = cms.untracked.double(0.3),
00036                                           HEMeanTreshold         = cms.untracked.double(0.2),
00037                                           HERmsTreshold          = cms.untracked.double(0.3),
00038                                           HOMeanTreshold         = cms.untracked.double(0.2),
00039                                           HORmsTreshold          = cms.untracked.double(0.3),
00040                                           HFMeanTreshold         = cms.untracked.double(0.2),
00041                                           HFRmsTreshold          = cms.untracked.double(0.3)
00042                                    )