24#include <fairlogger/Logger.h>
39 : mDigits(useDigits), mCCDBRequest(req)
46 auto probT = ic.
options().
get<
float>(
"prob-threshold");
47 auto probTRelErr = ic.
options().
get<
float>(
"prob-rel-err");
48 LOGP(info,
"Setting the probability threshold to {} with relative error {}", probT, probTRelErr);
49 mStopMeOnly = ic.
options().
get<
bool>(
"stop-me-only");
50 mPath = ic.
options().
get<std::string>(
"path-CCDB");
51 mPathMerge = ic.
options().
get<std::string>(
"path-CCDB-merge");
57 mCalibrator = std::make_unique<CALIBRATOR>(probT, probTRelErr);
59 mPathDcs = ic.
options().
get<std::string>(
"path-DCS");
60 mOutputType = ic.
options().
get<std::string>(
"send-to-server");
61 mNoiseMapForDcs.clear();
67 updateTimeDependentParams(pc);
69 const auto digits = pc.
inputs().
get<gsl::span<o2::itsmft::Digit>>(
"digits");
70 const auto rofs = pc.
inputs().
get<gsl::span<o2::itsmft::ROFRecord>>(
"digitsROF");
71 const auto tfcounter = o2::header::get<o2::framework::DataProcessingHeader*>(pc.
inputs().
get(
"digitsROF").header)->startTime;
73 if (mCalibrator->processTimeFrame(tfcounter,
digits, rofs)) {
74 LOG(info) <<
"Minimum number of noise counts has been reached !";
75 if (mOutputType.compare(
"CCDB") == 0) {
76 LOG(info) <<
"Sending an object to Production-CCDB";
78 LOG(info) <<
"Sending an object to Production-CCDBMerge";
79 sendOutputCcdbMerge(pc.
outputs());
80 }
else if (mOutputType.compare(
"DCS") == 0) {
81 LOG(info) <<
"Sending an object to DCS-CCDB";
84 LOG(info) <<
"Sending an object to Production-CCDB and DCS-CCDB";
85 sendOutputCcdbDcs(pc.
outputs());
86 LOG(info) <<
"Sending an object to Production-CCDBMerge";
87 sendOutputCcdbMerge(pc.
outputs());
92 const auto compClusters = pc.
inputs().
get<gsl::span<o2::itsmft::CompClusterExt>>(
"compClusters");
93 gsl::span<const unsigned char> patterns = pc.
inputs().
get<gsl::span<unsigned char>>(
"patterns");
94 const auto rofs = pc.
inputs().
get<gsl::span<o2::itsmft::ROFRecord>>(
"ROframes");
95 const auto tfcounter = o2::header::get<o2::framework::DataProcessingHeader*>(pc.
inputs().
get(
"ROframes").header)->startTime;
97 if (mCalibrator->processTimeFrame(tfcounter, compClusters, patterns, rofs)) {
98 LOG(info) <<
"Minimum number of noise counts has been reached !";
99 if (mOutputType.compare(
"CCDB") == 0) {
100 LOG(info) <<
"Sending an object to Production-CCDB";
102 LOG(info) <<
"Sending an object to Production-CCDBMerge";
103 sendOutputCcdbMerge(pc.
outputs());
104 }
else if (mOutputType.compare(
"DCS") == 0) {
105 LOG(info) <<
"Sending an object to DCS-CCDB";
108 LOG(info) <<
"Sending an object to Production-CCDB and DCS-CCDB";
109 sendOutputCcdbDcs(pc.
outputs());
110 LOG(info) <<
"Sending an object to Production-CCDBMerge";
111 sendOutputCcdbMerge(pc.
outputs());
120 for (
int iChip = 0; iChip < 936; ++iChip) {
121 for (
int iRow = 0; iRow < 512; ++iRow) {
122 for (
int iCol = 0; iCol < 1024; ++iCol) {
124 if (!payload.
isNoisy(iChip, iRow, iCol)) {
127 std::array<int, 3> noise = {iChip, iRow, iCol};
128 mNoiseMapForDcs.emplace_back(noise);
137 LOG(info) <<
"CCDB-DCS mode";
139 static bool done =
false;
145 mCalibrator->finalize();
147 long tstart = mStart;
153 constexpr long SECONDSPERYEAR = 365 * 24 * 60 * 60;
157 std::map<std::string, std::string> meta;
158 auto toKeyValPairs = [&meta](std::vector<std::string>
const& tokens) {
159 for (
auto& token : tokens) {
161 if (keyval.size() != 2) {
162 LOG(error) <<
"Illegal command-line key/value string: " << token;
166 meta[keyval[0]] = keyval[1];
173 const auto& payload = mCalibrator->getNoiseMap();
179 info.setFileName(flName);
180 LOG(info) <<
"Sending object " << info.getPath() <<
"/" << info.getFileName()
181 <<
" of size " <<
image->size()
182 <<
" bytes, valid for " << info.getStartValidityTimestamp()
183 <<
" : " << info.getEndValidityTimestamp();
189 setOutputDcs(payload);
194 infoDcs.setFileName(flNameDcs);
195 LOG(info) <<
"Sending object " << infoDcs.getPath() <<
"/" << infoDcs.getFileName()
196 <<
" of size " << imageDcs->size()
197 <<
" bytes, valid for " << infoDcs.getStartValidityTimestamp()
198 <<
" : " << infoDcs.getEndValidityTimestamp();
201 output.snapshot(
Output{clbUtilsDcs::gDataOriginCDBPayload,
"MFT_NoiseMap", 1}, *imageDcs.get());
202 output.snapshot(
Output{clbUtilsDcs::gDataOriginCDBWrapper,
"MFT_NoiseMap", 1}, infoDcs);
208 LOG(info) <<
"CCDB mode";
210 static bool done =
false;
216 mCalibrator->finalize();
218 long tstart = mStart;
224 constexpr long SECONDSPERYEAR = 365 * 24 * 60 * 60;
228 std::map<std::string, std::string> meta;
229 auto toKeyValPairs = [&meta](std::vector<std::string>
const& tokens) {
230 for (
auto& token : tokens) {
232 if (keyval.size() != 2) {
233 LOG(error) <<
"Illegal command-line key/value string: " << token;
237 meta[keyval[0]] = keyval[1];
244 const auto& payload = mCalibrator->getNoiseMap();
250 info.setFileName(flName);
251 LOG(info) <<
"Sending object CCDB " << info.getPath() <<
"/" << info.getFileName()
252 <<
" of size " <<
image->size()
253 <<
" bytes, valid for " << info.getStartValidityTimestamp()
254 <<
" : " << info.getEndValidityTimestamp();
264 LOG(info) <<
"CCDB-Merge mode";
266 static bool done =
false;
272 mCalibrator->finalize();
274 long tstart = mStart;
280 constexpr long SECONDSPERYEAR = 365 * 24 * 60 * 60;
284 std::map<std::string, std::string> meta;
285 auto toKeyValPairs = [&meta](std::vector<std::string>
const& tokens) {
286 for (
auto& token : tokens) {
288 if (keyval.size() != 2) {
289 LOG(error) <<
"Illegal command-line key/value string: " << token;
293 meta[keyval[0]] = keyval[1];
300 auto payload = mCalibrator->getNoiseMap();
302 map<string, string> headers;
303 map<std::string, std::string>
filter;
305 long validtime = std::stol(headers[
"Valid-From"]);
306 auto mergedPL = payload;
308 validtime = validtime - 1;
310 auto bufferPL = payloadPrev2->
merge(payloadPrev1);
311 mergedPL = payload.
merge(&bufferPL);
316 info.setFileName(flName);
317 LOG(info) <<
"Sending object ccdb-merge " << info.getPath() <<
"/" << info.getFileName()
318 <<
" of size " <<
image->size()
319 <<
" bytes, valid for " << info.getStartValidityTimestamp()
320 <<
" : " << info.getEndValidityTimestamp();
330 LOG(info) <<
"DCS mode";
332 static bool done =
false;
338 mCalibrator->finalize();
340 long tstart = mStart;
346 constexpr long SECONDSPERYEAR = 365 * 24 * 60 * 60;
350 std::map<std::string, std::string> meta;
351 auto toKeyValPairs = [&meta](std::vector<std::string>
const& tokens) {
352 for (
auto& token : tokens) {
354 if (keyval.size() != 2) {
355 LOG(error) <<
"Illegal command-line key/value string: " << token;
359 meta[keyval[0]] = keyval[1];
366 const auto& payload = mCalibrator->getNoiseMap();
369 setOutputDcs(payload);
374 infoDcs.setFileName(flNameDcs);
375 LOG(info) <<
"Sending object " << infoDcs.getPath() <<
"/" << infoDcs.getFileName()
376 <<
" of size " << imageDcs->size()
377 <<
" bytes, valid for " << infoDcs.getStartValidityTimestamp()
378 <<
" : " << infoDcs.getEndValidityTimestamp();
381 output.snapshot(
Output{clbUtilsDcs::gDataOriginCDBPayload,
"MFT_NoiseMap", 0}, *imageDcs.get());
382 output.snapshot(
Output{clbUtilsDcs::gDataOriginCDBWrapper,
"MFT_NoiseMap", 0}, infoDcs);
387 if (mOutputType.compare(
"CCDB") == 0) {
388 LOG(info) <<
"Sending an object to Production-CCDB";
390 LOG(info) <<
"Sending an object to Production-CCDB-Merge";
391 sendOutputCcdbMerge(ec.
outputs());
392 }
else if (mOutputType.compare(
"DCS") == 0) {
393 LOG(info) <<
"Sending an object to DCS-CCDB";
396 LOG(info) <<
"Sending an object to Production-CCDB and DCS-CCDB";
397 sendOutputCcdbDcs(ec.
outputs());
398 sendOutputCcdbMerge(ec.
outputs());
416 LOG(info) <<
"cluster dictionary updated";
424 std::vector<InputSpec> inputs;
426 inputs.emplace_back(
"digits", detOrig,
"DIGITS", 0, Lifetime::Timeframe);
427 inputs.emplace_back(
"digitsROF", detOrig,
"DIGITSROF", 0, Lifetime::Timeframe);
429 inputs.emplace_back(
"compClusters", detOrig,
"COMPCLUSTERS", 0, Lifetime::Timeframe);
430 inputs.emplace_back(
"patterns", detOrig,
"PATTERNS", 0, Lifetime::Timeframe);
431 inputs.emplace_back(
"ROframes", detOrig,
"CLUSTERSROF", 0, Lifetime::Timeframe);
432 inputs.emplace_back(
"cldict",
"MFT",
"CLUSDICT", 0, Lifetime::Condition,
ccdbParamSpec(
"MFT/Calib/ClusterDictionary"));
434 auto ccdbRequest = std::make_shared<o2::base::GRPGeomRequest>(
false,
442 std::vector<OutputSpec> outputs;
447 "mft-noise-calibrator",
450 AlgorithmSpec{adaptFromTask<NoiseCalibratorSpec>(useDigits, ccdbRequest)},
452 {
"prob-threshold", VariantType::Float, 1.e-6f, {
"Probability threshold for noisy pixels"}},
453 {
"prob-rel-err", VariantType::Float, 0.2f, {
"Relative error on channel noise to apply the threshold"}},
454 {
"tstart", VariantType::Int64, -1ll, {
"Start of validity timestamp"}},
455 {
"tend", VariantType::Int64, -1ll, {
"End of validity timestamp"}},
456 {
"path-CCDB", VariantType::String,
"/MFT/Calib/NoiseMap", {
"Path to write to in CCDB"}},
457 {
"path-CCDB-merge", VariantType::String,
"/MFT/Calib/NoiseMapMerged", {
"Path to write merged file to in CCDB"}},
458 {
"path-DCS", VariantType::String,
"/MFT/Config/NoiseMap", {
"Path to write to in DCS"}},
459 {
"meta", VariantType::String,
"", {
"meta data to write in CCDB"}},
460 {
"send-to-server", VariantType::String,
"CCDB-DCS", {
"meta data to write in DCS-CCDB"}},
461 {
"stop-me-only", VariantType::Bool,
false, {
"At sufficient statistics stop only this device, otherwise whole workflow"}}}};
Definition of the ITS/MFT clusterer settings.
Definition of the ITSMFT compact cluster.
Definition of the Names Generator class.
Utils and constants for calibration and related workflows.
void checkUpdates(o2::framework::ProcessingContext &pc)
bool finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj)
static GRPGeomHelper & instance()
void setRequest(std::shared_ptr< GRPGeomRequest > req)
static std::string getCCDBServer()
static std::string generateFileName(const std::string &inp)
void init(std::string const &hosts)
static std::unique_ptr< std::vector< char > > createObjectImage(const T *obj, CcdbObjectInfo *info=nullptr)
std::enable_if<!std::is_base_of< o2::conf::ConfigurableParam, T >::value, T * >::type retrieveFromTFileAny(std::string const &path, std::map< std::string, std::string > const &metadata, long timestamp=-1, std::map< std::string, std::string > *headers=nullptr, std::string const &etag="", const std::string &createdNotAfter="", const std::string &createdNotBefore="") const
T get(const char *key) const
DataAllocator & outputs()
ConfigParamRegistry const & options()
DataAllocator & outputs()
The data allocator is used to allocate memory for the output data.
InputRecord & inputs()
The inputs associated with this processing context.
ServiceRegistryRef services()
The services registry associated with this processing context.
NoiseMap class for the ITS and MFT.
NoiseMap merge(const NoiseMap *prev)
bool isNoisy(int chip, int row, int col) const
NoiseCalibratorSpec(bool digits=false, std::shared_ptr< o2::base::GRPGeomRequest > req={})
void endOfStream(EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void run(ProcessingContext &pc) final
void init(InitContext &ic) final
void finaliseCCDB(ConcreteDataMatcher &matcher, void *obj) final
GLint GLint GLint GLint GLint GLint GLint GLbitfield GLenum filter
constexpr o2::header::DataOrigin gDataOriginMFT
long getCurrentTimestamp()
returns the timestamp in long corresponding to "now"
long getFutureTimestamp(int secondsInFuture)
returns the timestamp in long corresponding to "now + secondsInFuture"
Defining PrimaryVertex explicitly as messageable.
std::vector< ConfigParamSpec > ccdbParamSpec(std::string const &path, int runDependent, std::vector< CCDBMetadata > metadata={}, int qrate=0)
std::vector< ConfigParamSpec > Options
DataProcessorSpec getNoiseCalibratorSpec(bool useDigits)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
static constexpr o2::header::DataOrigin gDataOriginCDBWrapper
static constexpr o2::header::DataOrigin gDataOriginCDBPayload
static void trim(std::string &s)
static std::vector< std::string > tokenize(const std::string &src, char delim, bool trimToken=true, bool skipEmpty=true)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
std::vector< Digit > digits