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