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
|
import FWCore.ParameterSet.Config as cms
import sys
if 'runkey=hi_run' in sys.argv:
from Configuration.Eras.Era_Run3_pp_on_PbPb_approxSiStripClusters_cff import Run3_pp_on_PbPb_approxSiStripClusters
process = cms.Process("DQM", Run3_pp_on_PbPb_approxSiStripClusters)
else:
from Configuration.Eras.Era_Run3_2025_cff import Run3_2025
process = cms.Process("DQM", Run3_2025)
unitTest = False
if 'unitTest=True' in sys.argv:
unitTest=True
if unitTest:
process.load("DQM.Integration.config.unittestinputsource_cfi")
from DQM.Integration.config.unittestinputsource_cfi import options
else:
# for live online DQM in P5
process.load("DQM.Integration.config.inputsource_cfi")
from DQM.Integration.config.inputsource_cfi import options
# used in the old input source
#process.DQMEventStreamHttpReader.SelectHLTOutput = cms.untracked.string('hltOutputHLTDQM')
# for testing in lxplus
#process.load("DQM.Integration.config.fileinputsource_cfi")
#from DQM.Integration.config.fileinputsource_cfi import options
#process.maxEvents = cms.untracked.PSet(
# input = cms.untracked.int32(100)
#)
process.load("DQM.Integration.config.environment_cfi")
process.dqmEnv.subSystemFolder = 'HLT'
process.dqmSaver.tag = 'HLT'
process.dqmSaver.runNumber = options.runNumber
# process.dqmSaverPB.tag = 'HLT'
# process.dqmSaverPB.runNumber = options.runNumber
process.load("Configuration.StandardSequences.GeometryRecoDB_cff")
process.load("Configuration.StandardSequences.MagneticField_cff")
process.GlobalTrackingGeometryESProducer = cms.ESProducer( "GlobalTrackingGeometryESProducer" ) # for muon hlt dqm
process.HLTSiStripClusterChargeCutNone = cms.PSet( value = cms.double( -1.0 ) )
process.ClusterShapeHitFilterESProducer = cms.ESProducer( "ClusterShapeHitFilterESProducer",
ComponentName = cms.string( "ClusterShapeHitFilter" ),
PixelShapeFileL1 = cms.string( "RecoTracker/PixelLowPtUtilities/data/pixelShapePhase1_loose.par" ),
clusterChargeCut = cms.PSet( refToPSet_ = cms.string( "HLTSiStripClusterChargeCutNone" ) ),
PixelShapeFile = cms.string( "RecoTracker/PixelLowPtUtilities/data/pixelShapePhase1_noL1.par" )
)
#SiStrip Local Reco
process.load("CalibTracker.SiStripCommon.TkDetMapESProducer_cfi")
#Track refitters
process.load("RecoTracker.TrackProducer.TrackRefitters_cff")
#---- for P5 (online) DB access
process.load("DQM.Integration.config.FrontierCondition_GT_cfi")
# Condition for lxplus: change and possibly customise the GT
#from Configuration.AlCa.GlobalTag import GlobalTag as gtCustomise
#process.GlobalTag = gtCustomise(process.GlobalTag, 'auto:run3_data', '')
process.hltESSHcalSeverityLevel = cms.ESSource( "EmptyESSource",
iovIsRunNotTime = cms.bool( True ),
recordName = cms.string( "HcalSeverityLevelComputerRcd" ),
firstValid = cms.vuint32( 1 )
)
process.hcalRecAlgos = cms.ESProducer( "HcalRecAlgoESProducer",
RecoveredRecHitBits = cms.vstring( 'TimingAddedBit',
'TimingSubtractedBit' ),
SeverityLevels = cms.VPSet(
cms.PSet( ChannelStatus = cms.vstring( ),
RecHitFlags = cms.vstring( ),
Level = cms.int32( 0 )
),
cms.PSet( ChannelStatus = cms.vstring( 'HcalCellCaloTowerProb' ),
RecHitFlags = cms.vstring( ),
Level = cms.int32( 1 )
),
cms.PSet( ChannelStatus = cms.vstring( 'HcalCellExcludeFromHBHENoiseSummary' ),
RecHitFlags = cms.vstring( 'HSCP_R1R2',
'HSCP_FracLeader',
'HSCP_OuterEnergy',
'HSCP_ExpFit',
'ADCSaturationBit',
'HBHEIsolatedNoise',
'AddedSimHcalNoise' ),
Level = cms.int32( 5 )
),
cms.PSet( ChannelStatus = cms.vstring( ),
RecHitFlags = cms.vstring( 'HBHEHpdHitMultiplicity',
'HBHEPulseShape',
'HOBit',
'HFInTimeWindow',
'ZDCBit',
'CalibrationBit',
'TimingErrorBit',
'HBHETriangleNoise',
'HBHETS4TS5Noise' ),
Level = cms.int32( 8 )
),
cms.PSet( ChannelStatus = cms.vstring( ),
RecHitFlags = cms.vstring( 'HFLongShort',
'HFPET',
'HFS8S1Ratio',
'HFDigiTime' ),
Level = cms.int32( 11 )
),
cms.PSet( ChannelStatus = cms.vstring( 'HcalCellCaloTowerMask' ),
RecHitFlags = cms.vstring( 'HBHEFlatNoise',
'HBHESpikeNoise' ),
Level = cms.int32( 12 )
),
cms.PSet( ChannelStatus = cms.vstring( 'HcalCellHot' ),
RecHitFlags = cms.vstring( ),
Level = cms.int32( 15 )
),
cms.PSet( ChannelStatus = cms.vstring( 'HcalCellOff',
'HcalCellDead' ),
RecHitFlags = cms.vstring( ),
Level = cms.int32( 20 )
)
),
DropChannelStatusBits = cms.vstring( 'HcalCellMask',
'HcalCellOff',
'HcalCellDead' )
)
### for pp collisions
process.load("DQM.HLTEvF.HLTObjectMonitor_cff")
### for Proton-Lead collisions only (2016 Proton-Lead Era)
#process.load("DQM.HLTEvF.HLTObjectMonitorProtonLead_cff")
process.load("DQM.HLTEvF.HLTObjectMonitor_Client_cff")
#process.p = cms.EndPath(process.hlts+process.hltsClient)
process.pp = cms.Path(process.dqmEnv+process.dqmSaver)#+process.dqmSaverPB)
#process.hltResults.plotAll = True
### process customizations included here
from DQM.Integration.config.online_customizations_cfi import *
process = customise(process)
print("Global Tag used:", process.GlobalTag.globaltag.value())
print("Final Source settings:", process.source)
|