CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 HcalDetDiagLaserMonitor=cms.EDAnalyzer("HcalDetDiagLaserMonitor",
00004                                    # base class stuff
00005                                    debug                  = cms.untracked.int32(0),
00006                                    online                 = cms.untracked.bool(False),
00007                                    AllowedCalibTypes      = cms.untracked.vint32(1,2,3,4,5),
00008                                    mergeRuns              = cms.untracked.bool(False),
00009                                    enableCleanup          = cms.untracked.bool(False),
00010                                    subSystemFolder        = cms.untracked.string("Hcal/"),
00011                                    TaskFolder             = cms.untracked.string("DetDiagLaserMonitor_Hcal/"),
00012                                    skipOutOfOrderLS       = cms.untracked.bool(True),
00013                                    NLumiBlocks            = cms.untracked.int32(4000),
00014                                    makeDiagnostics        = cms.untracked.bool(False),
00015                                    
00016                                    # DetDiag Laser Monitor-specific Info
00017                                    
00018                                    # Input collections
00019                                    digiLabel              = cms.untracked.InputTag("hcalDigis"),
00020                                    calibDigiLabel         = cms.untracked.InputTag("hcalDigis"),
00021                                    RawDataLabel           = cms.untracked.InputTag("source"),
00022                                    # reference dataset path + filename
00023                                    LaserReferenceData     = cms.untracked.string(""),
00024                                    # processed dataset name (to create HTML only)
00025                                    LaserDatasetName       = cms.untracked.string(""),
00026                                    # html path (to create HTML from dataset only)
00027                                    htmlOutputPath         = cms.untracked.string(""),
00028                                    # Save output to different files on same file
00029                                    Overwrite              = cms.untracked.bool(True),
00030                                    # path to store datasets for current run
00031                                    OutputFilePath         = cms.untracked.string(""),
00032                                    # path to store xmz.zip file to be uploaded into OMDG
00033                                    XmlFilePath            = cms.untracked.string(""),
00034                                    # thresholds
00035                                    LaserTimingThreshold   = cms.untracked.double(0.2),
00036                                    LaserEnergyThreshold   = cms.untracked.double(0.1)
00037                                    )