Project
Loading...
Searching...
No Matches
TPCVDriftTglCalibSpec.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
16#include "Framework/Logger.h"
20#include "CCDB/CcdbApi.h"
21#include "CCDB/CcdbObjectInfo.h"
22#include "Framework/Task.h"
23
24using namespace o2::framework;
25
26namespace o2
27{
28namespace tpc
29{
31{
32 public:
33 TPCVDriftTglCalibSpec(int ntgl, float tglMax, int ndtgl, float dtglMax, size_t slotL, float offset, float maxDelay, size_t minEnt, std::shared_ptr<o2::base::GRPGeomRequest> req) : mCCDBRequest(req)
34 {
35 mCalibrator = std::make_unique<o2::tpc::TPCVDriftTglCalibration>(ntgl, tglMax, ndtgl, dtglMax, slotL, offset, maxDelay, minEnt);
36 }
37
38 void init(InitContext& ic) final
39 {
41 mCalibrator->setSaveHistosFile(ic.options().get<std::string>("vdtgl-histos-file-name"));
42 };
43
44 void run(ProcessingContext& pc) final
45 {
46 const auto& tinfo = pc.services().get<o2::framework::TimingInfo>();
47 if (tinfo.globalRunNumberChanged) { // new run is starting
48 mRunStopRequested = false;
49 mCalibrator->reset();
50 }
51 if (mRunStopRequested) {
52 return;
53 }
55 auto data = pc.inputs().get<gsl::span<o2::dataformats::Triplet<float, float, float>>>("input");
56 o2::base::TFIDInfoHelper::fillTFIDInfo(pc, mCalibrator->getCurrentTFInfo());
57 if (data.size()) {
58 LOG(detail) << "Processing TF " << mCalibrator->getCurrentTFInfo().tfCounter << " with " << data.size() - 2 << " tracks"; // 1st entry is for VDrift, 2nd for the offset
59 }
60 mCalibrator->process(data);
61 if (pc.transitionState() == TransitionHandlingState::Requested) {
62 LOG(info) << "Run stop requested, finalizing";
63 mRunStopRequested = true;
64 mCalibrator->checkSlotsToFinalize(o2::calibration::INFINITE_TF);
65 }
66 sendOutput(pc.outputs());
67 }
68
70 {
71 if (mRunStopRequested) {
72 return;
73 }
74 LOG(info) << "Finalizing calibration";
75 mCalibrator->checkSlotsToFinalize(o2::calibration::INFINITE_TF);
76 sendOutput(ec.outputs());
77 mRunStopRequested = true;
78 }
79
80 void finaliseCCDB(o2::framework::ConcreteDataMatcher& matcher, void* obj) final
81 {
83 }
84
85 private:
86 void sendOutput(DataAllocator& output);
87 std::unique_ptr<o2::tpc::TPCVDriftTglCalibration> mCalibrator;
88 std::shared_ptr<o2::base::GRPGeomRequest> mCCDBRequest;
89 bool mRunStopRequested = false; // flag that run was stopped (ant the last output is sent)
90};
91
92//_____________________________________________________________
93void TPCVDriftTglCalibSpec::sendOutput(DataAllocator& output)
94{
95 // extract CCDB infos and calibration objects, convert it to TMemFile and send them to the output
96 // TODO in principle, this routine is generic, can be moved to Utils.h
98 const auto& payloadVec = mCalibrator->getVDPerSlot();
99 auto& infoVec = mCalibrator->getCCDBInfoPerSlot(); // use non-const version as we update it
100 assert(payloadVec.size() == infoVec.size());
101
102 for (uint32_t i = 0; i < payloadVec.size(); i++) {
103 auto& w = infoVec[i];
104 auto image = o2::ccdb::CcdbApi::createObjectImage(&payloadVec[i], &w);
105 LOG(info) << "Sending object " << w.getPath() << "/" << w.getFileName() << " of size " << image->size()
106 << " bytes, valid for " << w.getStartValidityTimestamp() << " : " << w.getEndValidityTimestamp();
107 output.snapshot(Output{o2::calibration::Utils::gDataOriginCDBPayload, "TPCVDTGL", i}, *image.get()); // vector<char>
108 output.snapshot(Output{o2::calibration::Utils::gDataOriginCDBWrapper, "TPCVDTGL", i}, w); // root-serialized
109 }
110 if (payloadVec.size()) {
111 mCalibrator->initOutput(); // reset the outputs once they are already sent
112 }
113}
114
115//_____________________________________________________________
116DataProcessorSpec getTPCVDriftTglCalibSpec(int ntgl, float tglMax, int ndtgl, float dtglMax, size_t slotL, float slot0frac, float maxDelay, size_t minEnt)
117{
118
119 using device = o2::tpc::TPCVDriftTglCalibSpec;
121
122 std::vector<InputSpec> inputs;
123 inputs.emplace_back("input", "GLO", "TPCITS_VDTGL", 0, Lifetime::Timeframe);
124 auto ccdbRequest = std::make_shared<o2::base::GRPGeomRequest>(true, // orbitResetTime
125 true, // GRPECS=true
126 false, // GRPLHCIF
127 false, // GRPMagField
128 false, // askMatLUT
130 inputs);
131
132 std::vector<OutputSpec> outputs;
133 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "TPCVDTGL"}, Lifetime::Sporadic);
134 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "TPCVDTGL"}, Lifetime::Sporadic);
135 slot0frac = 1. - slot0frac;
136
137 return DataProcessorSpec{
138 "tpc-vd-tgl-calib",
139 inputs,
140 outputs,
141 AlgorithmSpec{adaptFromTask<o2::tpc::TPCVDriftTglCalibSpec>(ntgl, tglMax, ndtgl, dtglMax, slotL, slot0frac, maxDelay, minEnt, ccdbRequest)},
142 Options{{"vdtgl-histos-file-name", VariantType::String, "", {"file to save histos (if name provided)"}}}};
143}
144
145} // namespace tpc
146} // namespace o2
Utils and constants for calibration and related workflows.
int32_t i
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
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::unique_ptr< std::vector< char > > createObjectImage(const T *obj, CcdbObjectInfo *info=nullptr)
Definition CcdbApi.h:103
void init(InitContext &ic) final
void endOfStream(EndOfStreamContext &ec) final
TPCVDriftTglCalibSpec(int ntgl, float tglMax, int ndtgl, float dtglMax, size_t slotL, float offset, float maxDelay, size_t minEnt, std::shared_ptr< o2::base::GRPGeomRequest > req)
void run(ProcessingContext &pc) final
void finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj) final
GLeglImageOES image
Definition glcorearb.h:4021
GLboolean * data
Definition glcorearb.h:298
GLintptr offset
Definition glcorearb.h:660
GLubyte GLubyte GLubyte GLubyte w
Definition glcorearb.h:852
constexpr TFType INFINITE_TF
Definition TimeSlot.h:30
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< ConfigParamSpec > Options
o2::framework::DataProcessorSpec getTPCVDriftTglCalibSpec(int ntgl, float tglMax, int ndtgl, float dtglMax, size_t slotL, float offset, float maxDelay, size_t minEnt)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
static void fillTFIDInfo(o2::framework::ProcessingContext &pc, o2::dataformats::TFIDInfo &ti)
static constexpr o2::header::DataOrigin gDataOriginCDBWrapper
Definition Utils.h:44
static constexpr o2::header::DataOrigin gDataOriginCDBPayload
Definition Utils.h:43
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"