35 LOGF(info,
"ITSThresholdAggregator init...", mSelfName);
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");
55 for (
auto const& inputRef :
InputRecordWalker(pc.
inputs(), {{
"check", ConcreteDataTypeMatcher{
"ITS",
"RUNT"}}})) {
56 updateLHCPeriodAndRunNumber(pc);
57 mRunType = pc.
inputs().
get<
short int>(inputRef);
60 for (
auto const& inputRef :
InputRecordWalker(pc.
inputs(), {{
"check", ConcreteDataTypeMatcher{
"ITS",
"SCANT"}}})) {
61 mScanType = pc.inputs().get<
char>(inputRef);
65 mFitType = pc.inputs().get<
char>(inputRef);
69 mDBversion = pc.inputs().get<
short int>(inputRef);
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;
78 LOG(info) <<
"DB version (no sense in pulse length 2D and vresetd 2D): " << mDBversion;
82 const auto tunString = pc.inputs().get<gsl::span<char>>(inputRef);
84 std::copy(tunString.begin(), tunString.end(), std::back_inserter(tuningMerge));
89 const auto PixTypString = pc.inputs().get<gsl::span<char>>(inputRef);
91 std::copy(PixTypString.begin(), PixTypString.end(), std::back_inserter(PIXTYPMerge));
95 const auto chipDoneString = pc.inputs().get<gsl::span<char>>(inputRef);
97 std::copy(chipDoneString.begin(), chipDoneString.end(), std::back_inserter(chipDoneMerge));
100 if (mVerboseOutput) {
101 LOG(info) <<
"Chips completed: ";
102 std::string tmpString(chipDoneMerge.begin(), chipDoneMerge.end());
103 LOG(info) << tmpString;
113 LOGF(info,
"endOfStream report:", mSelfName);
118 long tend = tstart + 365L * 24 * 3600 * 1000;
123 std::string ft = this->mFitType == 0 ?
"derivative" : this->mFitType == 1 ?
"fit"
124 : this->mFitType == 2 ?
"hitcounting"
126 if (mScanType ==
'D' || mScanType ==
'A' || mScanType ==
'P' || mScanType ==
'p') {
130 std::map<std::string, std::string> md = {
132 if (mScanType ==
'p') {
133 md[
"confDBversion"] =
"null";
135 if (!(this->mLHCPeriod.empty())) {
136 md.insert({
"LHC_period", this->mLHCPeriod});
138 if (!mCcdbUrl.empty()) {
142 if (!mCcdbUrlProd.empty()) {
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"
159 std::string file_name =
"calib_scan_" + name_str +
".root";
160 std::string file_name_pixtyp =
"calib_scan_pixel_type_" + name_str +
".root";
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 "
171 if (this->mScanType ==
'V') {
174 }
else if (this->mScanType ==
'I') {
177 }
else if (this->mScanType ==
'T') {
180 }
else if (this->mScanType ==
'D') {
186 }
else if (this->mScanType ==
'A') {
192 }
else if (this->mScanType ==
'P') {
195 }
else if (this->mScanType ==
'p') {
199 LOG(error) <<
"Nothing sent to ccdb-populator, mScanType" << mScanType <<
"does not match any known scan type";
203 if (!mCcdbUrl.empty()) {
205 LOG(info) <<
"Sending object " << info.
getFileName() <<
" to " << mCcdbUrl <<
"/browse/" << info.
getPath() <<
" from the ITS calib workflow";
212 if (!mCcdbUrlProd.empty()) {
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";
216 mApiProd.
init(mCcdbUrlProd);
224void ITSThresholdAggregator::stop()
226 if (!mStopped && (mScanType ==
'R' || mScanType ==
'r')) {
228 LOG(info) <<
"VRESETD scan: aggregator will not call finalize() since nothing needs to be shipped to CCDB";
232 this->finalize(
nullptr);
233 this->mStopped =
true;
243 if (!mStopped && (mScanType ==
'R' || mScanType ==
'r')) {
245 LOG(info) <<
"VRESETD scan: aggregator will not call finalize() since nothing needs to be shipped to CCDB";
250 this->mStopped =
true;
260 const std::string LHCPeriodStr = dataTakingContext.
lhcPeriod;
261 if (!(LHCPeriodStr.empty())) {
262 this->mLHCPeriod = LHCPeriodStr;
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;
271 this->mLHCPeriod +=
"_ITS";
283 std::vector<InputSpec> inputs;
292 std::vector<OutputSpec> outputs;
318 AlgorithmSpec{adaptFromTask<o2::its::ITSThresholdAggregator>()},
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)"}}}};
void init(std::string const &hosts)
static std::unique_ptr< std::vector< char > > createObjectImage(const T *obj, CcdbObjectInfo *info=nullptr)
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
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
T get(const char *key) const
void snapshot(const Output &spec, T const &object)
DataAllocator & outputs()
ConfigParamRegistry const & options()
InputRecord & inputs()
The inputs associated with this processing context.
ServiceRegistryRef services()
The services registry associated with this processing context.
void init(InitContext &ic) final
void run(ProcessingContext &pc) final
static constexpr std::string_view getName()
GLsizei const GLchar *const * path
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)
static constexpr o2::header::DataOrigin gDataOriginCDBWrapper
static constexpr o2::header::DataOrigin gDataOriginCDBPayload
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"