CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/HcalMonitorClient/python/ZDCMonitorClient_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 from copy import deepcopy
00003 
00004 zdcClient = cms.EDAnalyzer("ZDCMonitorClient",
00005                            debug=cms.untracked.int32(0),
00006                            inputFile=cms.untracked.string(""),
00007                            mergeRuns=cms.untracked.bool(False),
00008                            cloneME=cms.untracked.bool(False),
00009                            prescaleFactor=cms.untracked.int32(-1),
00010                            subSystemFolder           = cms.untracked.string('Hcal/'), # change to "ZDC" at some point, when ZDC DQM process is decoupled form HCAL?
00011                            ZDCFolder                 = cms.untracked.string("ZDCMonitor_Hcal/"), # This is the subfolder with the subSystemFolder where histograms are kept
00012                            enableCleanup             = cms.untracked.bool(False),
00013                            online                    = cms.untracked.bool(False),  # Use to toggle between online/offline-specific functions
00014 
00015                            
00016                            # These should not be needed by ZDC Monitor Client, at least in the near future -- used for outputting channel status database information for HCAL. 
00017                            baseHtmlDir    = cms.untracked.string(""),
00018                            htmlUpdateTime = cms.untracked.int32(0),
00019                            htmlFirstUpdate = cms.untracked.int32(20),
00020                            databaseDir = cms.untracked.string(""),
00021                            databaseUpdateTime = cms.untracked.int32(0),
00022                            databaseFirstUpdate = cms.untracked.int32(10), # database updates have a 10 minute offset, if updatetime>0
00023                            
00024                            # Specify whether LS-by-LS certification should be created
00025                            saveByLumiSection = cms.untracked.bool(False),
00026 
00027                            ZDC_QIValueForGoodLS = cms.untracked.vdouble(0.8, #The ZDC+ must have at least this high a quality index (QI) to be called good for that Lumi Section (LS) 
00028                                                                         0.8  #The ZDC- must have at least this high a quality index (QI) to be called good for that Lumi Sectoin (LS)
00029                                                                         ),
00030                            
00031                           )