CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalDetDiagLaserMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hcalDetDiagLaserMonitor=cms.EDAnalyzer("HcalDetDiagLaserMonitor",
4  # base class stuff
5  debug = cms.untracked.int32(0),
6  online = cms.untracked.bool(False),
7  AllowedCalibTypes = cms.untracked.vint32(1,2,3,4,5),
8  mergeRuns = cms.untracked.bool(False),
9  enableCleanup = cms.untracked.bool(False),
10  subSystemFolder = cms.untracked.string("Hcal/"),
11  TaskFolder = cms.untracked.string("DetDiagLaserMonitor_Hcal/"),
12  skipOutOfOrderLS = cms.untracked.bool(True),
13  NLumiBlocks = cms.untracked.int32(4000),
14  makeDiagnostics = cms.untracked.bool(False),
15 
16  # DetDiag Laser Monitor-specific Info
17 
18  # Input collections
19  digiLabel = cms.untracked.InputTag("hcalDigis"),
20  calibDigiLabel = cms.untracked.InputTag("hcalDigis"),
21  RawDataLabel = cms.untracked.InputTag("source"),
22  hcalTBTriggerDataTag = cms.InputTag("tbunpack"),
23  # reference dataset path + filename
24  LaserReferenceData = cms.untracked.string(""),
25  # processed dataset name (to create HTML only)
26  LaserDatasetName = cms.untracked.string(""),
27  # html path (to create HTML from dataset only)
28  htmlOutputPath = cms.untracked.string(""),
29  # Save output to different files on same file
30  Overwrite = cms.untracked.bool(True),
31  # path to store datasets for current run
32  OutputFilePath = cms.untracked.string(""),
33  # path to store xmz.zip file to be uploaded into OMDG
34  XmlFilePath = cms.untracked.string(""),
35  # thresholds
36  LaserTimingThreshold = cms.untracked.double(0.2),
37  LaserEnergyThreshold = cms.untracked.double(0.1),
38  FEDRawDataCollection=cms.untracked.InputTag("rawDataCollector")
39  )