1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
########## Configuration ##########
# if set to True, a file with logs will be produced.
produce_logs = False
# Path for a ROOT file with the histograms
output_distributions = 'dqm_run_distributions_test.root'
###################################
import FWCore.ParameterSet.Config as cms
from input_files_cff import input_files
process = cms.Process('testDistributions')
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load("CalibPPS.AlignmentGlobal.ppsAlignmentWorker_cfi")
process.load("DQMServices.Core.DQMStore_cfi")
# Message Logger
if produce_logs:
process.MessageLogger = cms.Service("MessageLogger",
destinations = cms.untracked.vstring('run_distributions',
'cout'
),
run_distributions = cms.untracked.PSet(
threshold = cms.untracked.string("INFO")
),
cout = cms.untracked.PSet(
threshold = cms.untracked.string('WARNING')
)
)
else:
process.MessageLogger = cms.Service("MessageLogger",
destinations = cms.untracked.vstring('cout'),
cout = cms.untracked.PSet(
threshold = cms.untracked.string('WARNING')
)
)
# Source
process.source = cms.Source("PoolSource",
fileNames = input_files
)
process.maxEvents = cms.untracked.PSet(input = cms.untracked.int32(-1))
# Event Setup
from config_cff import ppsAlignmentConfigESSource
process.ppsAlignmentConfigESSource = ppsAlignmentConfigESSource
# Output for the histograms
process.dqmOutput = cms.OutputModule("DQMRootOutputModule",
fileName = cms.untracked.string(output_distributions)
)
process.path = cms.Path(
process.ppsAlignmentWorker
)
process.end_path = cms.EndPath(
process.dqmOutput
)
process.schedule = cms.Schedule(
process.path,
process.end_path
)
|