CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
DQMFileSaverPB_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # DQM file saver module
4 dqmSaver = cms.EDAnalyzer("DQMFileSaverPB",
5  # Name of the producer.
6  producer = cms.untracked.string('DQM'),
7  # Directory in which to save the files.
8  path = cms.untracked.string('./'),
9 
10  # Tag, used in the filename as the third term.
11  tag = cms.untracked.string('UNKNOWN'),
12 
13  # Control reference saving (default / skip / qtests / all)
14  referenceHandling = cms.untracked.string('all'),
15  # Control which references are saved for qtests (default: STATUS_OK)
16  referenceRequireStatus = cms.untracked.int32(100),
17 
18  # If set, EvFDaqDirector is emulated and not used
19  fakeFilterUnitMode = cms.untracked.bool(False),
20  # Label of the stream
21  streamLabel = cms.untracked.string("streamDQMHistograms"),
22 
23  runNumber = cms.untracked.int32(111),
24 )