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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
// -*- C++ -*-
//
#include "DQM/HcalCommon/interface/DQTask.h"
#include "DQM/HcalCommon/interface/Utilities.h"
#include "DQM/HcalCommon/interface/HashFilter.h"
#include "DQM/HcalCommon/interface/Container1D.h"
#include "DQM/HcalCommon/interface/Container2D.h"
#include "DQM/HcalCommon/interface/ContainerProf1D.h"
#include "DQM/HcalCommon/interface/ContainerProf2D.h"
#include "DQM/HcalCommon/interface/ContainerSingle1D.h"
#include "DQM/HcalCommon/interface/ContainerSingle2D.h"
#include "DQM/HcalCommon/interface/ContainerSingleProf2D.h"
#include "DQM/HcalCommon/interface/ElectronicsMap.h"
#include "DQMServices/Core/interface/DQMEDAnalyzer.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "DataFormats/CaloRecHit/interface/CaloCluster.h"
#include "DataFormats/CaloRecHit/interface/CaloClusterFwd.h"
#include "DataFormats/CaloTowers/interface/CaloTowerCollection.h"
#include "DataFormats/CaloTowers/interface/CaloTowerDetId.h"
#include "DataFormats/Common/interface/Handle.h"
#include "DataFormats/DetId/interface/DetId.h"
#include "DataFormats/EcalDetId/interface/EcalSubdetector.h"
#include "DataFormats/HcalDetId/interface/HcalDetId.h"
#include "DataFormats/HcalDetId/interface/HcalSubdetector.h"
#include "DataFormats/Math/interface/Vector3D.h"
#include "DataFormats/Math/interface/deltaR.h"
#include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h"
#include "DataFormats/ParticleFlowReco/interface/PFBlock.h"
#include "DataFormats/ParticleFlowReco/interface/PFBlockElementCluster.h"
#include "DataFormats/ParticleFlowReco/interface/PFBlockElementTrack.h"
#include "DataFormats/ParticleFlowReco/interface/PFCluster.h"
#include "DataFormats/ParticleFlowReco/interface/PFClusterFwd.h"
#include "DataFormats/ParticleFlowReco/interface/PFLayer.h"
#include "DataFormats/ParticleFlowReco/interface/PFRecHit.h"
#include "DataFormats/ParticleFlowReco/interface/PFRecHitFraction.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/PluginManager/interface/ModuleDef.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include <cmath>
#ifdef PFLOW_DEBUG
#define LOGVERB(x) edm::LogVerbatim(x)
#else
#define LOGVERB(x) LogTrace(x)
#endif
using namespace hcaldqm;
using namespace hcaldqm::constants;
using namespace hcaldqm::filter;
class PFHcalGPUComparisonTask : public hcaldqm::DQTask {
public:
PFHcalGPUComparisonTask(edm::ParameterSet const&);
~PFHcalGPUComparisonTask() override = default;
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
std::shared_ptr<hcaldqm::Cache> globalBeginLuminosityBlock(edm::LuminosityBlock const&,
edm::EventSetup const&) const override;
void globalEndLuminosityBlock(edm::LuminosityBlock const&, edm::EventSetup const&) override;
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
private:
void _process(edm::Event const&, edm::EventSetup const&) override;
void _resetMonitors(hcaldqm::UpdateFreq) override;
edm::EDGetTokenT<reco::PFClusterCollection> pfClusterTok_ref_;
edm::EDGetTokenT<reco::PFClusterCollection> pfClusterTok_target_;
MonitorElement* pfCluster_Multiplicity_HostvsDevice_;
MonitorElement* pfCluster_Energy_HostvsDevice_;
MonitorElement* pfCluster_RecHitMultiplicity_HostvsDevice_;
MonitorElement* pfCluster_Layer_HostvsDevice_;
MonitorElement* pfCluster_Depth_HostvsDevice_;
MonitorElement* pfCluster_Eta_HostvsDevice_;
MonitorElement* pfCluster_Phi_HostvsDevice_;
MonitorElement* pfCluster_DuplicateMatches_HostvsDevice_;
std::string pfCaloGPUCompDir_;
};
PFHcalGPUComparisonTask::PFHcalGPUComparisonTask(edm::ParameterSet const& conf)
: DQTask(conf),
pfClusterTok_ref_{
consumes<reco::PFClusterCollection>(conf.getUntrackedParameter<edm::InputTag>("pfClusterToken_ref"))},
pfClusterTok_target_{
consumes<reco::PFClusterCollection>(conf.getUntrackedParameter<edm::InputTag>("pfClusterToken_target"))},
pfCaloGPUCompDir_{conf.getUntrackedParameter<std::string>("name")} {}
void PFHcalGPUComparisonTask::bookHistograms(DQMStore::IBooker& ibooker, edm::Run const& r, edm::EventSetup const& es) {
_subsystem = "ParticleFlow";
ibooker.setCurrentFolder("ParticleFlow/" + pfCaloGPUCompDir_);
DQTask::bookHistograms(ibooker, r, es);
// Book monitoring elements
const char* histo;
histo = "pfCluster_Multiplicity_HostvsDevice";
const char* histoAxis = "pfCluster_Multiplicity_HostvsDevice;Multiplicity Device;Multiplicity Device";
pfCluster_Multiplicity_HostvsDevice_ = ibooker.book2I(histo, histoAxis, 1000, 0, 1000, 1000, 0, 1000);
histo = "pfCluster_Energy_HostvsDevice";
histoAxis = "pfCluster_Energy_HostvsDevice;Energy Host [GeV];Energy Device [GeV]";
pfCluster_Energy_HostvsDevice_ = ibooker.book2D(histo, histoAxis, 500, 0, 500, 500, 0, 500);
histo = "pfCluster_RecHitMultiplicity_HostvsDevice";
histoAxis = "pfCluster_RecHitMultiplicity_HostvsDevice;RecHit Multiplicity Host;RecHit Multiplicity Device";
pfCluster_RecHitMultiplicity_HostvsDevice_ = ibooker.book2I(histo, histoAxis, 100, 0, 100, 100, 0, 100);
histo = "pfCluster_Layer_HostvsDevice";
histoAxis = "pfCluster_Layer_HostvsDevice;Cluster Layer Host;Cluster Layer Device";
pfCluster_Layer_HostvsDevice_ = ibooker.book2I(histo, histoAxis, 4, 0, 3, 4, 0, 3);
histo = "pfCluster_Depth_HostvsDevice";
histoAxis = "pfCluster_Depth_HostvsDevice;Cluster Depth Host;Cluster Depth Device";
pfCluster_Depth_HostvsDevice_ = ibooker.book2I(histo, histoAxis, 8, 0, 7, 8, 0, 7);
histo = "pfCluster_Eta_HostvsDevice";
histoAxis = "pfCluster_Eta_HostvsDevice;Cluster #eta Host;Cluster #eta Device";
pfCluster_Eta_HostvsDevice_ = ibooker.book2D(histo, histoAxis, 100, -5.f, 5.f, 100, -5.f, 5.f);
histo = "pfCluster_Phi_HostvsDevice";
histoAxis = "pfCluster_Phi_HostvsDevice;Cluster #phi Host;Cluster #phi Device";
pfCluster_Phi_HostvsDevice_ = ibooker.book2D(histo, histoAxis, 100, -M_PI, M_PI, 100, -M_PI, M_PI);
histo = "pfCluster_DuplicateMatches_HostvsDevice";
histoAxis = "pfCluster_Duplicates_HostvsDevice;Cluster Duplicates Host;Cluster Duplicates Device";
pfCluster_DuplicateMatches_HostvsDevice_ = ibooker.book1I(histo, histoAxis, 100, 0., 1000);
}
void PFHcalGPUComparisonTask::_resetMonitors(hcaldqm::UpdateFreq uf) { DQTask::_resetMonitors(uf); }
void PFHcalGPUComparisonTask::_process(edm::Event const& event, edm::EventSetup const&) {
edm::Handle<reco::PFClusterCollection> pfClusters_ref;
event.getByToken(pfClusterTok_ref_, pfClusters_ref);
edm::Handle<reco::PFClusterCollection> pfClusters_target;
event.getByToken(pfClusterTok_target_, pfClusters_target);
auto lumiCache = luminosityBlockCache(event.getLuminosityBlock().index());
_currentLS = lumiCache->currentLS;
// Compare per-event PF cluster multiplicity
if (pfClusters_ref->size() != pfClusters_target->size())
LOGVERB("PFCaloGPUComparisonTask") << " PFCluster multiplicity " << pfClusters_ref->size() << " "
<< pfClusters_target->size();
pfCluster_Multiplicity_HostvsDevice_->Fill((float)pfClusters_ref->size(), (float)pfClusters_target->size());
//
// Find matching PF cluster pairs
std::vector<int> matched_idx;
matched_idx.reserve(pfClusters_ref->size());
for (unsigned i = 0; i < pfClusters_ref->size(); ++i) {
bool matched = false;
for (unsigned j = 0; j < pfClusters_target->size(); ++j) {
if (pfClusters_ref->at(i).seed() == pfClusters_target->at(j).seed()) {
if (!matched) {
matched = true;
matched_idx.push_back((int)j);
} else {
edm::LogWarning("PFCaloGPUComparisonTask") << "Found duplicate match";
pfCluster_DuplicateMatches_HostvsDevice_->Fill((int)j);
}
}
}
if (!matched)
matched_idx.push_back(-1); // if you don't find a match, put a dummy number
}
//
// Plot matching PF cluster variables
for (unsigned i = 0; i < pfClusters_ref->size(); ++i) {
if (matched_idx[i] >= 0) {
unsigned int j = matched_idx[i];
int ref_energy_bin =
pfCluster_Energy_HostvsDevice_->getTH2F()->GetXaxis()->FindBin(pfClusters_ref->at(i).energy());
int target_energy_bin =
pfCluster_Energy_HostvsDevice_->getTH2F()->GetXaxis()->FindBin(pfClusters_target->at(j).energy());
if (ref_energy_bin != target_energy_bin)
edm::LogPrint("PFCaloGPUComparisonTask")
<< "Off-diagonal energy bin entries: " << pfClusters_ref->at(i).energy() << " "
<< pfClusters_ref->at(i).eta() << " " << pfClusters_ref->at(i).phi() << " "
<< pfClusters_target->at(j).energy() << " " << pfClusters_target->at(j).eta() << " "
<< pfClusters_target->at(j).phi() << std::endl;
pfCluster_Energy_HostvsDevice_->Fill(pfClusters_ref->at(i).energy(), pfClusters_target->at(j).energy());
pfCluster_Layer_HostvsDevice_->Fill(pfClusters_ref->at(i).layer(), pfClusters_target->at(j).layer());
pfCluster_Eta_HostvsDevice_->Fill(pfClusters_ref->at(i).eta(), pfClusters_target->at(j).eta());
pfCluster_Phi_HostvsDevice_->Fill(pfClusters_ref->at(i).phi(), pfClusters_target->at(j).phi());
pfCluster_Depth_HostvsDevice_->Fill(pfClusters_ref->at(i).depth(), pfClusters_target->at(j).depth());
pfCluster_RecHitMultiplicity_HostvsDevice_->Fill((float)pfClusters_ref->at(i).recHitFractions().size(),
(float)pfClusters_target->at(j).recHitFractions().size());
}
}
}
std::shared_ptr<hcaldqm::Cache> PFHcalGPUComparisonTask::globalBeginLuminosityBlock(edm::LuminosityBlock const& lb,
edm::EventSetup const& es) const {
return DQTask::globalBeginLuminosityBlock(lb, es);
}
void PFHcalGPUComparisonTask::globalEndLuminosityBlock(edm::LuminosityBlock const& lb, edm::EventSetup const& es) {
if (_ptype != fOnline)
return;
auto lumiCache = luminosityBlockCache(lb.index());
_currentLS = lumiCache->currentLS;
// in the end always do the DQTask::endLumi
DQTask::globalEndLuminosityBlock(lb, es);
}
void PFHcalGPUComparisonTask::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.addUntracked<std::string>("name", "pfCaloGPUCompDir");
desc.addUntracked<edm::InputTag>("pfClusterToken_ref", edm::InputTag("hltParticleFlowClusterHCALSerialSync"));
desc.addUntracked<edm::InputTag>("pfClusterToken_target", edm::InputTag("hltParticleFlowClusterHCAL"));
descriptions.addWithDefaultLabel(desc);
}
DEFINE_FWK_MODULE(PFHcalGPUComparisonTask);
|