Project
Loading...
Searching...
No Matches
ThresholdAggregatorSpec.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
15
16#ifdef WITH_OPENMP
17#include <omp.h>
18#endif
19
20namespace o2
21{
22namespace its
23{
24
26// Default constructor
31
34{
35 LOGF(info, "ITSThresholdAggregator init...", mSelfName);
36
37 this->mVerboseOutput = ic.options().get<bool>("verbose");
38 this->mCcdbUrl = ic.options().get<std::string>("ccdb-url");
39 this->mCcdbUrlProd = ic.options().get<std::string>("ccdb-url-prod");
40 return;
41}
42
44// Main running function
45// Get DCSconfigObject_t from EPNs and aggregate them in 1 object
47{
48 // Skip everything in case of garbage (potentially at EoS)
50 LOG(info) << "Skipping the processing of inputs for timeslice " << pc.services().get<o2::framework::TimingInfo>().timeslice << " (firstTForbit is " << pc.services().get<o2::framework::TimingInfo>().firstTForbit << ")";
51 return;
52 }
53 // take run type, scan type, fit type, db version only at the beginning (important for EoS operations!)
54 if (mRunType == -1) {
55 for (auto const& inputRef : InputRecordWalker(pc.inputs(), {{"check", ConcreteDataTypeMatcher{"ITS", "RUNT"}}})) {
56 updateLHCPeriodAndRunNumber(pc);
57 mRunType = pc.inputs().get<short int>(inputRef);
58 break;
59 }
60 for (auto const& inputRef : InputRecordWalker(pc.inputs(), {{"check", ConcreteDataTypeMatcher{"ITS", "SCANT"}}})) {
61 mScanType = pc.inputs().get<char>(inputRef);
62 break;
63 }
64 for (auto const& inputRef : InputRecordWalker(pc.inputs(), {{"check", ConcreteDataTypeMatcher{"ITS", "FITT"}}})) {
65 mFitType = pc.inputs().get<char>(inputRef);
66 break;
67 }
68 for (auto const& inputRef : InputRecordWalker(pc.inputs(), {{"check", ConcreteDataTypeMatcher{"ITS", "CONFDBV"}}})) {
69 mDBversion = pc.inputs().get<short int>(inputRef);
70 break;
71 }
72 LOG(info) << "Aggregator received the following parameters:";
73 LOG(info) << "Run type : " << mRunType;
74 LOG(info) << "Run number: " << mRunNumber;
75 LOG(info) << "LHC period: " << mLHCPeriod;
76 LOG(info) << "Scan type : " << mScanType;
77 LOG(info) << "Fit type : " << std::to_string(mFitType);
78 LOG(info) << "DB version (no sense in pulse length 2D and vresetd 2D): " << mDBversion;
79 }
80 for (auto const& inputRef : InputRecordWalker(pc.inputs(), {{"check", ConcreteDataTypeMatcher{"ITS", "TSTR"}}})) {
81 // Read strings with tuning info
82 const auto tunString = pc.inputs().get<gsl::span<char>>(inputRef);
83 // Merge all strings coming from several sources (EPN)
84 std::copy(tunString.begin(), tunString.end(), std::back_inserter(tuningMerge));
85 }
86
87 for (auto const& inputRef : InputRecordWalker(pc.inputs(), {{"check", ConcreteDataTypeMatcher{"ITS", "PIXTYP"}}})) {
88 // Read strings with pixel type info
89 const auto PixTypString = pc.inputs().get<gsl::span<char>>(inputRef);
90 // Merge all strings coming from several sources (EPN)
91 std::copy(PixTypString.begin(), PixTypString.end(), std::back_inserter(PIXTYPMerge));
92 }
93 for (auto const& inputRef : InputRecordWalker(pc.inputs(), {{"check", ConcreteDataTypeMatcher{"ITS", "QCSTR"}}})) {
94 // Read strings with list of completed chips
95 const auto chipDoneString = pc.inputs().get<gsl::span<char>>(inputRef);
96 // Merge all strings coming from several sources (EPN)
97 std::copy(chipDoneString.begin(), chipDoneString.end(), std::back_inserter(chipDoneMerge));
98 }
99
100 if (mVerboseOutput) {
101 LOG(info) << "Chips completed: ";
102 std::string tmpString(chipDoneMerge.begin(), chipDoneMerge.end());
103 LOG(info) << tmpString;
104 }
105
106 return;
107}
108
110void ITSThresholdAggregator::finalize(EndOfStreamContext* ec)
111{
112 if (ec) {
113 LOGF(info, "endOfStream report:", mSelfName);
114 }
115
116 // Below is CCDB stuff
117 long tstart = o2::ccdb::getCurrentTimestamp();
118 long tend = tstart + 365L * 24 * 3600 * 1000;
119
120 auto class_name = o2::utils::MemFileHelper::getClassName(tuningMerge);
121
122 // Create metadata for database object
123 std::string ft = this->mFitType == 0 ? "derivative" : this->mFitType == 1 ? "fit"
124 : this->mFitType == 2 ? "hitcounting"
125 : "null";
126 if (mScanType == 'D' || mScanType == 'A' || mScanType == 'P' || mScanType == 'p') {
127 ft = "null";
128 }
129
130 std::map<std::string, std::string> md = {
131 {"fittype", ft}, {"runtype", std::to_string(this->mRunType)}, {"confDBversion", std::to_string(this->mDBversion)}};
132 if (mScanType == 'p') {
133 md["confDBversion"] = "null";
134 }
135 if (!(this->mLHCPeriod.empty())) {
136 md.insert({"LHC_period", this->mLHCPeriod});
137 }
138 if (!mCcdbUrl.empty()) { // add only if we write here otherwise ccdb-populator-wf add it already
139 md.insert({"runNumber", std::to_string(this->mRunNumber)});
140 }
141
142 if (!mCcdbUrlProd.empty()) { // add only if we write here otherwise ccdb-populator-wf add it already
143 md.insert({"runNumber", std::to_string(this->mRunNumber)});
144 }
145 std::string path("ITS/Calib/");
146 std::string name_str = mScanType == 'V' ? "VCASN" : mScanType == 'I' ? "ITHR"
147 : mScanType == 'D' ? "DIG"
148 : mScanType == 'A' ? "ANA"
149 : mScanType == 'T' ? "THR"
150 : mScanType == 'P' ? "PULSELENGTH"
151 : mScanType == 'p' ? "PULSELENGTH2D"
152 : "NULL";
153 o2::ccdb::CcdbObjectInfo info((path + name_str), "threshold_map", "calib_scan.root", md, tstart, tend);
154 o2::ccdb::CcdbObjectInfo info_pixtyp((path + name_str), "threshold_map", "calib_scan.root", md, tstart, tend);
155
156 auto image = o2::ccdb::CcdbApi::createObjectImage(&tuningMerge, &info);
157 auto image_pixtyp = o2::ccdb::CcdbApi::createObjectImage(&PIXTYPMerge, &info_pixtyp);
158
159 std::string file_name = "calib_scan_" + name_str + ".root";
160 std::string file_name_pixtyp = "calib_scan_pixel_type_" + name_str + ".root";
161 info.setFileName(file_name);
162 info_pixtyp.setFileName(file_name_pixtyp);
163
164 if (ec) { // send to ccdb-populator wf only if there is an EndOfStreamContext
165 LOG(info) << "Class Name: " << class_name << " | File Name: " << file_name
166 << "\nSending to ccdb-populator the object " << info.getPath() << "/" << info.getFileName()
167 << " of size " << image->size() << " bytes, valid for "
168 << info.getStartValidityTimestamp() << " : "
169 << info.getEndValidityTimestamp();
170
171 if (this->mScanType == 'V') {
174 } else if (this->mScanType == 'I') {
177 } else if (this->mScanType == 'T') {
180 } else if (this->mScanType == 'D') {
183
186 } else if (this->mScanType == 'A') {
189
192 } else if (this->mScanType == 'P') {
195 } else if (this->mScanType == 'p') {
198 } else {
199 LOG(error) << "Nothing sent to ccdb-populator, mScanType" << mScanType << "does not match any known scan type";
200 }
201 }
202
203 if (!mCcdbUrl.empty()) { // if url is specified, send object to ccdb from THIS wf
204
205 LOG(info) << "Sending object " << info.getFileName() << " to " << mCcdbUrl << "/browse/" << info.getPath() << " from the ITS calib workflow";
207 mApi.init(mCcdbUrl);
208 mApi.storeAsBinaryFile(&image->at(0), image->size(), info.getFileName(), info.getObjectType(), info.getPath(),
210 }
211
212 if (!mCcdbUrlProd.empty()) { // if url is specified, send object to ccdb from THIS wf
213
214 LOG(info) << "Sending Noisy, Dead and Inefficenct pixel object " << info_pixtyp.getFileName() << " (size:" << image_pixtyp->size() << ") to " << mCcdbUrlProd << "/browse/" << info_pixtyp.getPath() << " from the ITS calib workflow";
215 o2::ccdb::CcdbApi mApiProd;
216 mApiProd.init(mCcdbUrlProd);
217 mApiProd.storeAsBinaryFile(&image_pixtyp->at(0), image_pixtyp->size(), info_pixtyp.getFileName(), info_pixtyp.getObjectType(), info_pixtyp.getPath(), info_pixtyp.getMetaData(), info_pixtyp.getStartValidityTimestamp(), info_pixtyp.getEndValidityTimestamp());
218 }
219 return;
220}
221
223// fairMQ functionality; called automatically when the DDS stops processing
224void ITSThresholdAggregator::stop()
225{
226 if (!mStopped && (mScanType == 'R' || mScanType == 'r')) {
227 mStopped = true;
228 LOG(info) << "VRESETD scan: aggregator will not call finalize() since nothing needs to be shipped to CCDB";
229 return; // doing nothing
230 }
231 if (!mStopped) {
232 this->finalize(nullptr);
233 this->mStopped = true;
234 }
235 return;
236}
237
239// O2 functionality allowing to do post-processing when the upstream device
240// tells that there will be no more input data
241void ITSThresholdAggregator::endOfStream(EndOfStreamContext& ec)
242{
243 if (!mStopped && (mScanType == 'R' || mScanType == 'r')) {
244 mStopped = true;
245 LOG(info) << "VRESETD scan: aggregator will not call finalize() since nothing needs to be shipped to CCDB";
246 return; // doing nothing
247 }
248 if (!mStopped) {
249 this->finalize(&ec);
250 this->mStopped = true;
251 }
252 return;
253}
254
256// Search current month or LHCperiod, and read run number
257void ITSThresholdAggregator::updateLHCPeriodAndRunNumber(ProcessingContext& pc)
258{
259 auto& dataTakingContext = pc.services().get<o2::framework::DataTakingContext>();
260 const std::string LHCPeriodStr = dataTakingContext.lhcPeriod;
261 if (!(LHCPeriodStr.empty())) {
262 this->mLHCPeriod = LHCPeriodStr;
263 } else {
264 const char* months[12] = {"JAN", "FEB", "MAR", "APR", "MAY", "JUN",
265 "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"};
266 std::time_t now = std::time(nullptr);
267 std::tm* ltm = std::gmtime(&now);
268 this->mLHCPeriod = (std::string)months[ltm->tm_mon];
269 LOG(warning) << "LHCPeriod is not available, using current month " << this->mLHCPeriod;
270 }
271 this->mLHCPeriod += "_ITS";
272
273 // Run number
274 auto& timingInfo = pc.services().get<o2::framework::TimingInfo>();
275 this->mRunNumber = timingInfo.runNumber;
276
277 return;
278}
279
282{
283 std::vector<InputSpec> inputs;
284 inputs.emplace_back("tunestring", ConcreteDataTypeMatcher{"ITS", "TSTR"});
285 inputs.emplace_back("PixTypString", ConcreteDataTypeMatcher{"ITS", "PIXTYP"});
286 inputs.emplace_back("chipdonestring", ConcreteDataTypeMatcher{"ITS", "QCSTR"});
287 inputs.emplace_back("runtype", ConcreteDataTypeMatcher{"ITS", "RUNT"});
288 inputs.emplace_back("scantype", ConcreteDataTypeMatcher{"ITS", "SCANT"});
289 inputs.emplace_back("fittype", ConcreteDataTypeMatcher{"ITS", "FITT"});
290 inputs.emplace_back("confdbversion", ConcreteDataTypeMatcher{"ITS", "CONFDBV"});
291
292 std::vector<OutputSpec> outputs;
293 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "VCASN"}, Lifetime::Sporadic);
294 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "VCASN"}, Lifetime::Sporadic);
295
296 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "ITHR"}, Lifetime::Sporadic);
297 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "ITHR"}, Lifetime::Sporadic);
298
299 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "THR"}, Lifetime::Sporadic);
300 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "THR"}, Lifetime::Sporadic);
301
302 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "DIG"}, Lifetime::Sporadic);
303 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "DIG"}, Lifetime::Sporadic);
304
305 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "ANA"}, Lifetime::Sporadic);
306 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "ANA"}, Lifetime::Sporadic);
307
308 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "PULSELENGTH"}, Lifetime::Sporadic);
309 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "PULSELENGTH"}, Lifetime::Sporadic);
310
311 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "PULSELENGTH2D"}, Lifetime::Sporadic);
312 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "PULSELENGTH2D"}, Lifetime::Sporadic);
313
314 return DataProcessorSpec{
315 "its-aggregator",
316 inputs,
317 outputs,
318 AlgorithmSpec{adaptFromTask<o2::its::ITSThresholdAggregator>()},
319 Options{
320 {"verbose", VariantType::Bool, false, {"Use verbose output mode"}},
321 {"ccdb-url", VariantType::String, "", {"CCDB url, default is empty (i.e. no upload to CCDB)"}},
322 {"ccdb-url-prod", VariantType::String, "", {"CCDB prod url, default is empty (i.e. no upload to CCDB)"}}}};
323}
324} // namespace its
325} // namespace o2
void init(std::string const &hosts)
Definition CcdbApi.cxx:165
static std::unique_ptr< std::vector< char > > createObjectImage(const T *obj, CcdbObjectInfo *info=nullptr)
Definition CcdbApi.h:103
int storeAsBinaryFile(const char *buffer, size_t size, const std::string &fileName, const std::string &objectType, const std::string &path, const std::map< std::string, std::string > &metadata, long startValidityTimestamp, long endValidityTimestamp, std::vector< char >::size_type maxSize=0) const
Definition CcdbApi.cxx:351
long getEndValidityTimestamp() const
void setFileName(const std::string &nm)
const std::string & getPath() const
const std::string & getObjectType() const
const std::map< std::string, std::string > & getMetaData() const
long getStartValidityTimestamp() const
const std::string & getFileName() const
void snapshot(const Output &spec, T const &object)
ConfigParamRegistry const & options()
Definition InitContext.h:33
A helper class to iteratate over all parts of all input routes.
decltype(auto) get(R binding, int part=0) const
InputRecord & inputs()
The inputs associated with this processing context.
ServiceRegistryRef services()
The services registry associated with this processing context.
void run(ProcessingContext &pc) final
static constexpr std::string_view getName()
GLeglImageOES image
Definition glcorearb.h:4021
GLsizei const GLchar *const * path
Definition glcorearb.h:3591
long getCurrentTimestamp()
returns the timestamp in long corresponding to "now"
std::vector< ConfigParamSpec > Options
o2::framework::DataProcessorSpec getITSThresholdAggregatorSpec()
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::string to_string(gsl::span< T, Size > span)
Definition common.h:52
static constexpr o2::header::DataOrigin gDataOriginCDBWrapper
Definition Utils.h:44
static constexpr o2::header::DataOrigin gDataOriginCDBPayload
Definition Utils.h:43
std::string lhcPeriod
The current lhc period.
static std::string getClassName(const T &obj)
get the class name of the object
static std::string concat_string(Ts const &... ts)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"