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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
#-------------------------------------
# Hcal DQM Application using New DQM Sources/Clients
# Online Mode
#-------------------------------------
#-------------------------------------
# Standard Python Imports
#-------------------------------------
import os, sys, socket, string
#-------------------------------------
# Standard CMSSW Imports/Definitions
#-------------------------------------
import FWCore.ParameterSet.Config as cms
#
# these Modifiers are like eras as well, for more info check
# Configuration/StandardSequences/python/Eras.py
# PRocess accepts a (*list) of modifiers
#
from Configuration.Eras.Era_Run3_cff import Run3
process = cms.Process('HCALDQM', Run3)
subsystem = 'HcalReco'
cmssw = os.getenv("CMSSW_VERSION").split("_")
debugstr = "### HcalDQM::cfg::DEBUG: "
warnstr = "### HcalDQM::cfg::WARN: "
errorstr = "### HcalDQM::cfg::ERROR:"
useOfflineGT = False
useFileInput = False
useMap = False
useMapText = False
unitTest = False
if 'unitTest=True' in sys.argv:
unitTest=True
useFileInput=False
#-------------------------------------
# Central DQM Stuff imports
#-------------------------------------
from DQM.Integration.config.online_customizations_cfi import *
if useOfflineGT:
process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
process.GlobalTag.globaltag = '106X_dataRun3_HLT_Candidate_2019_11_26_14_48_16'
#process.GlobalTag.globaltag = '100X_dataRun2_HLT_Candidate_2018_01_31_16_04_35'
#process.GlobalTag.globaltag = '100X_dataRun2_HLT_v1'
else:
process.load('DQM.Integration.config.FrontierCondition_GT_cfi')
if unitTest:
process.load("DQM.Integration.config.unittestinputsource_cfi")
from DQM.Integration.config.unittestinputsource_cfi import options
elif useFileInput:
process.load("DQM.Integration.config.fileinputsource_cfi")
from DQM.Integration.config.fileinputsource_cfi import options
else:
process.load('DQM.Integration.config.inputsource_cfi')
from DQM.Integration.config.inputsource_cfi import options
process.load('DQM.Integration.config.environment_cfi')
#-------------------------------------
# Central DQM Customization
#-------------------------------------
process.dqmEnv.subSystemFolder = subsystem
process.dqmSaver.tag = "HcalReco" # to have a file saved as DQM_V..._HcalReco...
process.dqmSaver.runNumber = options.runNumber
# process.dqmSaverPB.tag = "HcalReco"
# process.dqmSaverPB.runNumber = options.runNumber
process = customise(process)
process.DQMStore.verbose = 0
if not unitTest and not useFileInput:
if not options.BeamSplashRun :
process.source.minEventsPerLumi = 5
# Note, runType is obtained after importing DQM-related modules
# => DQM-dependent
runType = process.runType.getRunType()
print(debugstr, "Running with run type= ", runType)
#-------------------------------------
# CMSSW/Hcal non-DQM Related Module import
#-------------------------------------
process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
process.load('FWCore.MessageLogger.MessageLogger_cfi')
process.load("EventFilter.HcalRawToDigi.HcalRawToDigi_cfi")
process.load("SimCalorimetry.HcalTrigPrimProducers.hcaltpdigi_cff")
process.load("RecoLocalCalo.Configuration.hcalLocalReco_cff")
process.load('CondCore.CondDB.CondDB_cfi')
#-------------------------------------
# CMSSW/Hcal non-DQM Related Module Settings
# -> runType
# -> Generic Input tag for the Raw Collection
# -> cmssw version
# -> Turn off default blocking of dead channels from rechit collection
# -> Drop Channel Status Bits (had benn 'HcalCellOff', "HcalCellDead")
# -> For Trigger Primitives Emulation
# -> L1 GT setting
# -> Rename the hbheprereco to hbhereco
#-------------------------------------
runType = process.runType.getRunType()
runTypeName = process.runType.getRunTypeName()
isCosmicRun = runTypeName=="cosmic_run" or runTypeName=="cosmic_run_stage1"
isHeavyIon = runTypeName=="hi_run"
cmssw = os.getenv("CMSSW_VERSION").split("_")
rawTag = "rawDataCollector"
rawTagUntracked = "rawDataCollector"
if isHeavyIon:
rawTag = "rawDataRepacker"
rawTagUntracked = "rawDataRepacker"
# set the tag for default unpacker
process.hcalDigis.InputLabel = rawTag
#-------------------------------------
# Hcal DQM Tasks and Clients import
# New Style
#-------------------------------------
process.load('DQM.HcalTasks.RecHitTask_cfi')
process.load('DQM.HcalTasks.HcalOnlineHarvesting_cfi')
#-------------------------------------
# To force using uTCA
# Will not be here for Online DQM
#-------------------------------------
if useMap:
process.GlobalTag.toGet.append(cms.PSet(
record = cms.string("HcalElectronicsMapRcd"),
#tag = cms.string("HcalElectronicsMap_v7.05_hlt")
tag = cms.string("HcalElectronicsMap_v9.0_hlt")
)
)
#-------------------------------------
# For Debugginb
#-------------------------------------
#-------------------------------------
# Settings for the Primary Modules
#-------------------------------------
oldsubsystem = subsystem
process.recHitTask.tagHBHE = "hbheprereco"
process.recHitTask.tagHO = "horeco"
process.recHitTask.tagHF = "hfreco"
process.recHitTask.runkeyVal = runType
process.recHitTask.runkeyName = runTypeName
process.recHitTask.tagRaw = rawTagUntracked
process.recHitTask.subsystem = subsystem
process.hcalOnlineHarvesting.subsystem = subsystem
#-------------------------------------
# Hcal DQM Tasks/Clients Sequences Definition
#-------------------------------------
process.tasksPath = cms.Path(
process.recHitTask
)
process.harvestingPath = cms.Path(
process.hcalOnlineHarvesting
)
#-------------------------------------
process.digiPath = cms.Path(
process.hcalDigis
)
process.recoPath = cms.Path(
process.horeco
*process.hfprereco
*process.hfreco
*process.hbheprereco
)
process.dqmPath = cms.Path(
process.dqmEnv
*process.dqmSaver
#*process.dqmSaverPB
)
process.schedule = cms.Schedule(
process.digiPath,
process.recoPath,
process.tasksPath,
process.harvestingPath,
process.dqmPath
)
#-------------------------------------
# Scheduling and Process Customizations
#-------------------------------------
process.options = cms.untracked.PSet(
Rethrow = cms.untracked.vstring(
"ProductNotFound",
"TooManyProducts",
"TooFewProducts"
)
)
process.options.wantSummary = True
print("Global Tag used:", process.GlobalTag.globaltag.value())
print("Final Source settings:", process.source)
|