Project
Loading...
Searching...
No Matches
CPVBadMapCalibDevice.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
13#include "CCDB/CcdbApi.h"
14#include "CCDB/CcdbObjectInfo.h"
16#include <string>
17#include <fairlogger/Logger.h>
27#include <TFile.h>
28
29using namespace o2::cpv;
30
34
36{
37
38 mBadMap.reset(new BadChannelMap());
39
40 //Probably can be configured from configKeyValues?
41 const float kMaxCut = 10.;
42 const float kMinCut = 0.1;
43
44 if (mMethod % 2 == 0) { //Gains: dead channels (medhod= 0,2)
45
46 std::string filename = mPath + "CPVGains.root";
47 TFile f(filename.data(), "READ");
48 TH2F* spectra = nullptr;
49 if (f.IsOpen()) {
50 spectra = static_cast<TH2F*>(f.Get("Gains"));
51 }
52 if (!spectra) {
53 LOG(error) << "ERROR: can not read histo Gains from file " << filename.data();
54 return;
55 }
56 float meanOccupancy = spectra->Integral() / spectra->GetNbinsX();
57 short nBadChannels = 0;
58 float improvedOccupancy = meanOccupancy;
59 do {
60 nBadChannels = 0;
61 meanOccupancy = improvedOccupancy;
62 improvedOccupancy = 0;
63 short ngood = 0;
64 for (unsigned short i = spectra->GetNbinsX(); --i;) {
65 float a = spectra->Integral(i + 1, i + 1, 1, 1024);
66 if (a > kMaxCut * meanOccupancy + 1 || a < kMinCut * meanOccupancy - 1 || a == 0) { //noisy or dead
67 if (mBadMap->isChannelGood(i)) {
68 mBadMap->addBadChannel(i);
69 nBadChannels++;
70 }
71 } else {
72 improvedOccupancy += a;
73 ngood++;
74 }
75 }
76 if (ngood > 0) {
77 improvedOccupancy /= ngood;
78 }
79 } while (nBadChannels > 0);
80 spectra->Delete();
81 f.Close();
82 }
83
84 if (mMethod > 0) { //methods 1,2: use pedestals
85 //Read latest pedestal file
86 std::string filename = mPath + "CPVPedestals.root";
87 TFile f(filename.data(), "READ");
88 TH2F* pedestals = nullptr;
89 if (f.IsOpen()) {
90 pedestals = static_cast<TH2F*>(f.Get("Mean"));
91 }
92 if (!pedestals) {
93 LOG(error) << "ERROR: can not read histo Mean from file " << filename.data();
94 return;
95 }
96 TH1D* proj = pedestals->ProjectionY("m");
97 float meanPed = proj->GetMean();
98 float rmsPed = proj->GetRMS();
99 proj->Delete();
100 short nBadChannels = 0;
101 float improvedMean = meanPed, improvedRMS = rmsPed;
102 do {
103 nBadChannels = 0;
104 meanPed = improvedMean;
105 rmsPed = improvedRMS;
106 improvedMean = 0.;
107 improvedRMS = 0.;
108 short ngood = 0;
109 for (unsigned short i = pedestals->GetNbinsX(); --i;) {
110 TH1D* pr = pedestals->ProjectionY(Form("proj%d", i), i + 1, i + 1);
111 float prMean = pr->GetMean();
112 float prRMS = pr->GetRMS();
113 pr->Delete();
114 if (prMean > kMaxCut * meanPed || prMean < kMinCut * meanPed || prMean == 0 ||
115 prRMS > kMaxCut * rmsPed || prRMS < kMinCut * rmsPed) { //noisy or dead
116 if (mBadMap->isChannelGood(i)) {
117 mBadMap->addBadChannel(i);
118 nBadChannels++;
119 }
120 } else {
121 improvedMean += prMean;
122 improvedRMS += prRMS;
123 ngood++;
124 }
125 }
126 if (ngood > 0) {
127 improvedMean /= ngood;
128 improvedRMS /= ngood;
129 }
130 } while (nBadChannels > 0);
131 pedestals->Delete();
132 f.Close();
133 }
134
135 if (!differFromCurrent() || mForceUpdate) {
136 sendOutput(ctx.outputs());
137 }
139 ctx.services().get<ControlService>().readyToQuit(QuitRequest::Me);
140}
141
143{
144
145 LOG(info) << "[CPVBadMapCalibDevice - endOfStream]";
146 //calculate stuff here
147}
148
150{
151 // extract CCDB infos and calibration objects, convert it to TMemFile and send them to the output
152 // TODO in principle, this routine is generic, can be moved to Utils.h
153
154 if (mUpdateCCDB || mForceUpdate) {
155 // prepare all info to be sent to CCDB
157 auto image = o2::ccdb::CcdbApi::createObjectImage(mBadMap.get(), &info);
158
159 auto flName = o2::ccdb::CcdbApi::generateFileName("BadChannelMap");
160 info.setPath("CPV/Calib/BadChannelMap");
161 info.setObjectType("BadChannelMap");
162 info.setFileName(flName);
163 // TODO: should be changed to time of the run
164 time_t now = time(nullptr);
167 std::map<std::string, std::string> md;
168 info.setMetaData(md);
169
170 LOG(info) << "Sending object CPV/Calib/BadChannelMap";
171
173 output.snapshot(Output{o2::calibration::Utils::gDataOriginCDBPayload, "CPV_BadChanMap", subSpec}, *image.get());
174 output.snapshot(Output{o2::calibration::Utils::gDataOriginCDBWrapper, "CPV_BadChanMap", subSpec}, info);
175 }
176
177 output.snapshot(o2::framework::Output{"CPV", "BADMAPCHANGE", 0}, mMapDiff);
178}
179
181{
182 // Method to compare new pedestals and latest in ccdb
183 // Send difference to QC
184 // Do not update existing object automatically if difference is too strong
185
186 if (!mUseCCDB) { //can not compare, just update
187 return false;
188 }
189 // read calibration objects from ccdb
190 // int nSlots = pc.inputs().getNofParts(0);
191 // assert(pc.inputs().getNofParts(1) == nSlots);
192
193 // int lhcphaseIndex = -1;
194 // for (int isl = 0; isl < nSlots; isl++) {
195 // const auto wrp = pc.inputs().get<CcdbObjectInfo*>("clbInfo", isl);
196 // if (wrp->getStartValidityTimestamp() > tfcounter) { // replace tfcounter with the timestamp of the TF
197 // lhxphaseIndex = isl - 1;
198 // break;
199 // }
200 // }
201
202 return false;
203}
204
205o2::framework::DataProcessorSpec o2::cpv::getBadMapCalibSpec(bool useCCDB, bool forceUpdate, std::string path, short method)
206{
207
208 std::vector<o2::framework::OutputSpec> outputs;
209 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "CPV_BadChanMap"}, o2::framework::Lifetime::Sporadic);
210 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "CPV_BadChanMap"}, o2::framework::Lifetime::Sporadic);
211
212 outputs.emplace_back("CPV", "BADMAPCHANGE", 0, o2::framework::Lifetime::Sporadic);
213
214 return o2::framework::DataProcessorSpec{"BadMapCalibSpec",
215 Inputs{},
216 outputs,
217 o2::framework::adaptFromTask<CPVBadMapCalibDevice>(useCCDB, forceUpdate, path, method),
219}
Utils and constants for calibration and related workflows.
int16_t time
Definition RawEventData.h:4
int32_t i
A helper class to iteratate over all parts of all input routes.
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
static std::string generateFileName(const std::string &inp)
Definition CcdbApi.cxx:815
static std::unique_ptr< std::vector< char > > createObjectImage(const T *obj, CcdbObjectInfo *info=nullptr)
Definition CcdbApi.h:103
void setStartValidityTimestamp(long start)
void setFileName(const std::string &nm)
void setPath(const std::string &path)
void setEndValidityTimestamp(long end)
void setObjectType(const std::string &tp)
void setMetaData(const std::map< std::string, std::string > &md)
static constexpr long INFINITE_TIMESTAMP
CCDB container for bad (masked) channels in CPV.
void init(o2::framework::InitContext &ic) final
void endOfStream(o2::framework::EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void run(o2::framework::ProcessingContext &pc) final
void sendOutput(DataAllocator &output)
DataAllocator & outputs()
The data allocator is used to allocate memory for the output data.
ServiceRegistryRef services()
The services registry associated with this processing context.
GLeglImageOES image
Definition glcorearb.h:4021
GLdouble f
Definition glcorearb.h:310
GLsizei const GLchar *const * path
Definition glcorearb.h:3591
GLboolean GLboolean GLboolean GLboolean a
Definition glcorearb.h:1233
o2::framework::DataProcessorSpec getBadMapCalibSpec(bool useCCDB, bool forceUpdate, std::string path, short method)
std::vector< ConfigParamSpec > Options
std::vector< InputSpec > Inputs
std::string filename()
static constexpr o2::header::DataOrigin gDataOriginCDBWrapper
Definition Utils.h:44
static constexpr o2::header::DataOrigin gDataOriginCDBPayload
Definition Utils.h:43
uint32_t SubSpecificationType
Definition DataHeader.h:620
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"