Project
Loading...
Searching...
No Matches
ApplyCCDBCalibSpec.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
12#include <vector>
13
15#include "Framework/Task.h"
17#include "Framework/Logger.h"
18
22#include <boost/property_tree/ptree.hpp>
23
24using namespace o2::framework;
25
26namespace o2::tpc
27{
28
30{
31 public:
32 void init(InitContext& ic) final
33 {
34 //const int minEnt = ic.options().get<int>("min-tfs");
35 mReferenceDriftV = o2::conf::ConfigurableParam::getValueAs<float>("TPCGasParam.DriftV");
36 LOGP(info, "Setting reference drift velocity to {}", mReferenceDriftV);
37 }
38
39 void run(ProcessingContext& pc) final
40 {
41 applyLaserVDrift(pc.inputs());
42 }
43
44 private:
45 float mReferenceDriftV{};
46 float mDriftV{};
47 std::unique_ptr<const LtrCalibData> mLtrCalibData;
48
49 void applyLaserVDrift(InputRecord& inputs);
50 void updateVDrift();
51};
52
53void ApplyCCDBCalibDevice::applyLaserVDrift(InputRecord& inputs)
54{
55 auto ltrCalibPtr = inputs.get<LtrCalibData*>("calibLaserTracks");
56 if (!mLtrCalibData) {
57 mLtrCalibData.reset(ltrCalibPtr.release());
58 LOGP(info, "Laser track calibration initialized: {} - {}: A - {} C - {}", mLtrCalibData->firstTime, mLtrCalibData->lastTime, mLtrCalibData->dvCorrectionA, mLtrCalibData->dvCorrectionC);
59 updateVDrift();
60 } else {
61 if (ltrCalibPtr->firstTime != mLtrCalibData->firstTime) {
62 mLtrCalibData.reset(ltrCalibPtr.release());
63 LOGP(info, "Laser track calibration updated: {} - {}: A - {} C - {}, was {} - {}: A - {} C - {}", mLtrCalibData->firstTime, mLtrCalibData->lastTime, mLtrCalibData->dvCorrectionA, mLtrCalibData->dvCorrectionC, ltrCalibPtr->firstTime, ltrCalibPtr->lastTime, ltrCalibPtr->dvCorrectionA, ltrCalibPtr->dvCorrectionC);
64 updateVDrift();
65 }
66 }
67}
68
69void ApplyCCDBCalibDevice::updateVDrift()
70{
71 const float oldDriftV = mDriftV;
72 mDriftV = mReferenceDriftV * mLtrCalibData->getDriftVCorrection();
73 LOGP(info, "updating drift velocity correction to {}, was {}, reference is {} (cm / us)", mDriftV, oldDriftV, mReferenceDriftV);
74 o2::conf::ConfigurableParam::setValue<float>("TPCGasParam", "DriftV", mDriftV);
75}
76
77//______________________________________________________________________________
79{
80 using device = ApplyCCDBCalibDevice;
81
82 std::vector<InputSpec> inputs{
83 InputSpec{"calibLaserTracks", "TPC", "CalibLaserTracks", 0, Lifetime::Condition, ccdbParamSpec("TPC/Calib/LaserTracks")},
84 InputSpec{"sometimer", "TST", "BAR", 0, Lifetime::Timer, {startTimeParamSpec(1638548475371)}},
85 };
86
87 return DataProcessorSpec{
88 "tpc-apply-ccdb-calib",
89 inputs,
90 Outputs{},
91 AlgorithmSpec{adaptFromTask<device>()},
92 Options{
93 //{"min-tfs", VariantType::Int, 100, {"minimum number of TFs with enough laser tracks to finalize a slot"}},
94 }};
95}
96
97} // namespace o2::tpc
Device to apply calibrations loaded from CCDB.
calibration data from laser track calibration
Definition of the parameter class for the detector gas.
The input API of the Data Processing Layer This class holds the inputs which are valid for processing...
decltype(auto) get(R binding, int part=0) const
void run(ProcessingContext &pc) final
void init(InitContext &ic) final
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
std::vector< ConfigParamSpec > ccdbParamSpec(std::string const &path, int runDependent, std::vector< CCDBMetadata > metadata={}, int qrate=0)
std::vector< ConfigParamSpec > Options
ConfigParamSpec startTimeParamSpec(int64_t t)
std::vector< OutputSpec > Outputs
Global TPC definitions and constants.
Definition SimTraits.h:167
o2::framework::DataProcessorSpec getApplyCCDBCalibSpec()