CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalDetDiagPedestalMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hcalDetDiagPedestalMonitor=cms.EDAnalyzer("HcalDetDiagPedestalMonitor",
4  # base class stuff
5  debug = cms.untracked.int32(0),
6  online = cms.untracked.bool(False),
7  AllowedCalibTypes = cms.untracked.vint32(1), # pedestals have calibration type 1
8  mergeRuns = cms.untracked.bool(False),
9  enableCleanup = cms.untracked.bool(False),
10  subSystemFolder = cms.untracked.string("Hcal/"),
11  TaskFolder = cms.untracked.string("DetDiagPedestalMonitor_Hcal/"),
12  skipOutOfOrderLS = cms.untracked.bool(True),
13  NLumiBlocks = cms.untracked.int32(4000),
14  makeDiagnostics = cms.untracked.bool(False),
15 
16  # DetDiag Pedestal Monitor-specific Info
17 
18  # Input collections
19  digiLabel = cms.untracked.InputTag("hcalDigis"),
20  rawDataLabel = cms.untracked.InputTag("rawDataCollector"),
21  # reference dataset path + filename
22  PedestalReferenceData = cms.untracked.string(""),
23  # processed dataset name (to create HTML only)
24  PedestalDatasetName = cms.untracked.string(""),
25  # html path (to create HTML from dataset only)
26  htmlOutputPath = cms.untracked.string(""),
27  # Save output to different files on same file
28  Overwrite = cms.untracked.bool(True),
29  # path to store datasets for current run
30  OutputFilePath = cms.untracked.string(""),
31  # path to store xmz.zip file to be uploaded into OMDG
32  XmlFilePath = cms.untracked.string(""),
33  # thresholds
34  HBMeanTreshold = cms.untracked.double(0.2),
35  HBRmsTreshold = cms.untracked.double(0.3),
36  HEMeanTreshold = cms.untracked.double(0.2),
37  HERmsTreshold = cms.untracked.double(0.3),
38  HOMeanTreshold = cms.untracked.double(0.2),
39  HORmsTreshold = cms.untracked.double(0.3),
40  HFMeanTreshold = cms.untracked.double(0.2),
41  HFRmsTreshold = cms.untracked.double(0.3),
42  hcalTBTriggerDataTag = cms.InputTag("tbunpack"),
43  FEDRawDataCollection=cms.untracked.InputTag("rawDataCollector")
44  )