forked from AliceO2Group/QualityControl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDecodingPostProcessing.cxx
More file actions
238 lines (199 loc) · 9.11 KB
/
DecodingPostProcessing.cxx
File metadata and controls
238 lines (199 loc) · 9.11 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
///
/// \file DecodingPostProcessing.cxx
/// \author Andrea Ferrero andrea.ferrero@cern.ch
/// \brief Trending of the MCH tracking
/// \since 21/06/2022
///
#include "MCH/DecodingPostProcessing.h"
#include "MCH/PostProcessingConfigMCH.h"
#include "MUONCommon/Helpers.h"
#include <MCHMappingInterface/Segmentation.h>
#include "QualityControl/QcInfoLogger.h"
#include "QualityControl/DatabaseInterface.h"
#include <TH2.h>
using namespace o2::quality_control;
using namespace o2::quality_control::core;
using namespace o2::quality_control::postprocessing;
using namespace o2::quality_control_modules::muon;
using namespace o2::quality_control_modules::muonchambers;
using namespace o2::mch::raw;
void DecodingPostProcessing::configure(const boost::property_tree::ptree& config)
{
mConfig = PostProcessingConfigMCH(getID(), config);
}
//_________________________________________________________________________________________
void DecodingPostProcessing::createDecodingErrorsHistos(Trigger t, repository::DatabaseInterface* qcdb)
{
//----------------------------------
// Decoding errors plotters
//----------------------------------
mErrorsPlotter.reset();
mErrorsPlotter = std::make_unique<DecodingErrorsPlotter>("DecodingErrors/");
mErrorsPlotter->publish(getObjectsManager(), core::PublicationPolicy::ThroughStop);
if (mEnableLastCycleHistos) {
// Helpers to extract plots from last cycle
auto obj = mCcdbObjects.find(errorsSourceName());
if (obj != mCcdbObjects.end()) {
mErrorsOnCycle.reset();
mErrorsOnCycle = std::make_unique<HistoOnCycle<TH2FRatio>>();
}
mErrorsPlotterOnCycle.reset();
mErrorsPlotterOnCycle = std::make_unique<DecodingErrorsPlotter>("DecodingErrors/LastCycle/");
mErrorsPlotterOnCycle->publish(getObjectsManager(), core::PublicationPolicy::ThroughStop);
}
}
//_________________________________________________________________________________________
void DecodingPostProcessing::createHeartBeatPacketsHistos(Trigger t, repository::DatabaseInterface* qcdb)
{
//----------------------------------
// HeartBeat packets plotters
//----------------------------------
mHBPacketsPlotter.reset();
mHBPacketsPlotter = std::make_unique<HeartBeatPacketsPlotter>("HeartBeatPackets/", mFullHistos);
mHBPacketsPlotter->publish(getObjectsManager(), core::PublicationPolicy::ThroughStop);
if (mEnableLastCycleHistos) {
// Helpers to extract plots from last cycle
auto obj = mCcdbObjects.find(hbPacketsSourceName());
if (obj != mCcdbObjects.end()) {
mHBPacketsOnCycle.reset();
mHBPacketsOnCycle = std::make_unique<HistoOnCycle<TH2FRatio>>();
}
mHBPacketsPlotterOnCycle.reset();
mHBPacketsPlotterOnCycle = std::make_unique<HeartBeatPacketsPlotter>("HeartBeatPackets/LastCycle/", mFullHistos);
mHBPacketsPlotterOnCycle->publish(getObjectsManager(), core::PublicationPolicy::ThroughStop);
}
}
//_________________________________________________________________________________________
void DecodingPostProcessing::createSyncStatusHistos(Trigger t, repository::DatabaseInterface* qcdb)
{
//----------------------------------
// Sync status plotters
//----------------------------------
mSyncStatusPlotter.reset();
mSyncStatusPlotter = std::make_unique<FECSyncStatusPlotter>("SyncErrors/");
mSyncStatusPlotter->publish(getObjectsManager(), core::PublicationPolicy::ThroughStop);
if (mEnableLastCycleHistos) {
// Helpers to extract plots from last cycle
auto obj = mCcdbObjects.find(syncStatusSourceName());
if (obj != mCcdbObjects.end()) {
mSyncStatusOnCycle.reset();
mSyncStatusOnCycle = std::make_unique<HistoOnCycle<TH2FRatio>>();
}
mSyncStatusPlotterOnCycle.reset();
mSyncStatusPlotterOnCycle = std::make_unique<FECSyncStatusPlotter>("SyncErrors/LastCycle/");
mSyncStatusPlotterOnCycle->publish(getObjectsManager(), core::PublicationPolicy::ThroughStop);
}
}
//_________________________________________________________________________________________
void DecodingPostProcessing::initialize(Trigger t, framework::ServiceRegistryRef services)
{
auto& qcdb = services.get<repository::DatabaseInterface>();
const auto& activity = t.activity;
mFullHistos = getConfigurationParameter<bool>(mCustomParameters, "FullHistos", mFullHistos, activity);
mEnableLastCycleHistos = getConfigurationParameter<bool>(mCustomParameters, "EnableLastCycleHistos", mEnableLastCycleHistos, activity);
mEnableTrending = getConfigurationParameter<bool>(mCustomParameters, "EnableTrending", mEnableTrending, activity);
mCcdbObjects.clear();
mCcdbObjects.emplace(errorsSourceName(), CcdbObjectHelper());
mCcdbObjects.emplace(hbPacketsSourceName(), CcdbObjectHelper());
mCcdbObjects.emplace(syncStatusSourceName(), CcdbObjectHelper());
// set objects path from configuration
for (auto source : mConfig.dataSources) {
std::string sourceType, sourceName;
splitDataSourceName(source.name, sourceType, sourceName);
if (sourceType.empty()) {
continue;
}
auto obj = mCcdbObjects.find(sourceType);
if (obj != mCcdbObjects.end()) {
obj->second.mPath = source.path;
obj->second.mName = sourceName;
}
}
// instantiate and publish the histograms
createDecodingErrorsHistos(t, &qcdb);
createHeartBeatPacketsHistos(t, &qcdb);
createSyncStatusHistos(t, &qcdb);
//--------------------------------------------------
// Detector quality histogram
//--------------------------------------------------
mHistogramQualityPerDE.reset();
mHistogramQualityPerDE = std::make_unique<TH2F>("QualityFlagPerDE", "Quality Flag vs DE", getNumDE(), 0, getNumDE(), 3, 0, 3);
mHistogramQualityPerDE->GetYaxis()->SetBinLabel(1, "Bad");
mHistogramQualityPerDE->GetYaxis()->SetBinLabel(2, "Medium");
mHistogramQualityPerDE->GetYaxis()->SetBinLabel(3, "Good");
mHistogramQualityPerDE->SetOption("colz");
mHistogramQualityPerDE->SetStats(0);
getObjectsManager()->startPublishing(mHistogramQualityPerDE.get(), core::PublicationPolicy::ThroughStop);
getObjectsManager()->setDefaultDrawOptions(mHistogramQualityPerDE.get(), "colz");
getObjectsManager()->setDisplayHint(mHistogramQualityPerDE.get(), "gridy");
}
//_________________________________________________________________________________________
void DecodingPostProcessing::updateDecodingErrorsHistos(Trigger t, repository::DatabaseInterface* qcdb)
{
auto obj = mCcdbObjects.find(errorsSourceName());
if (obj != mCcdbObjects.end() && obj->second.update(qcdb, t.timestamp, t.activity)) {
TH2FRatio* hr = obj->second.get<TH2FRatio>();
if (hr) {
mErrorsPlotter->update(hr);
if (mEnableLastCycleHistos) {
// extract the average occupancies on the last cycle
mErrorsOnCycle->update(hr);
mErrorsPlotterOnCycle->update(mErrorsOnCycle.get());
}
}
}
}
//_________________________________________________________________________________________
void DecodingPostProcessing::updateHeartBeatPacketsHistos(Trigger t, repository::DatabaseInterface* qcdb)
{
auto obj = mCcdbObjects.find(hbPacketsSourceName());
if (obj != mCcdbObjects.end() && obj->second.update(qcdb, t.timestamp, t.activity)) {
TH2FRatio* hr = obj->second.get<TH2FRatio>();
if (hr) {
mHBPacketsPlotter->update(hr);
if (mEnableLastCycleHistos) {
// extract the average occupancies on the last cycle
mHBPacketsOnCycle->update(hr);
mHBPacketsPlotterOnCycle->update(mHBPacketsOnCycle.get());
}
}
}
}
//_________________________________________________________________________________________
void DecodingPostProcessing::updateSyncStatusHistos(Trigger t, repository::DatabaseInterface* qcdb)
{
auto obj = mCcdbObjects.find(syncStatusSourceName());
if (obj != mCcdbObjects.end() && obj->second.update(qcdb, t.timestamp, t.activity)) {
TH2F* hr = obj->second.get<TH2FRatio>();
if (hr) {
mSyncStatusPlotter->update(hr);
if (mEnableLastCycleHistos) {
// extract the average occupancies on the last cycle
mSyncStatusOnCycle->update(hr);
mSyncStatusPlotterOnCycle->update(mSyncStatusOnCycle.get());
}
}
}
}
//_________________________________________________________________________________________
void DecodingPostProcessing::update(Trigger t, framework::ServiceRegistryRef services)
{
auto& qcdb = services.get<repository::DatabaseInterface>();
updateDecodingErrorsHistos(t, &qcdb);
updateHeartBeatPacketsHistos(t, &qcdb);
updateSyncStatusHistos(t, &qcdb);
}
//_________________________________________________________________________________________
void DecodingPostProcessing::finalize(Trigger t, framework::ServiceRegistryRef)
{
}