Project
Loading...
Searching...
No Matches
WaveformCalibSpec.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
15
16#include <iostream>
17#include <vector>
18#include <string>
21#include "CCDB/CcdbApi.h"
22#include "Framework/Logger.h"
41
42using namespace o2::framework;
43
44namespace o2
45{
46namespace zdc
47{
48
50{
51 mTimer.Stop();
52 mTimer.Reset();
53}
54
56{
57 mTimer.Stop();
58 mTimer.Reset();
59}
60
62{
63 mVerbosity = ic.options().get<int>("verbosity-level");
64 mWorker.setVerbosity(mVerbosity);
65}
66
68{
69 // we call these methods just to trigger finaliseCCDB callback
70 pc.inputs().get<o2::zdc::WaveformCalibConfig*>("wavecalibconfig");
71}
72
74{
75 if (matcher == ConcreteDataMatcher("ZDC", "WAVECALIBCONFIG", 0)) {
76 // InterCalib configuration
77 auto* config = (const o2::zdc::WaveformCalibConfig*)obj;
78 if (mVerbosity > DbgZero) {
79 config->print();
80 }
81 mWorker.setConfig(config);
82 }
83}
84
86{
87 if (!mInitialized) {
88 mInitialized = true;
90 mTimer.Stop();
91 mTimer.Reset();
92 mTimer.Start(false);
93 }
94
95 auto data = pc.inputs().get<WaveformCalibData>("waveformcalibdata");
96 if (mVerbosity >= DbgFull) {
97 data.print();
98 }
99 mWorker.process(data);
100}
101
103{
104 mWorker.endOfRun();
105 mTimer.Stop();
106 sendOutput(ec.outputs());
107 LOGF(info, "ZDC Waveform calibration total timing: Cpu: %.3e Real: %.3e s in %d slots", mTimer.CpuTime(), mTimer.RealTime(), mTimer.Counter() - 1);
108}
109
110//________________________________________________________________
112{
113 // extract CCDB infos and calibration objects, convert it to TMemFile and send them to the output
114 // TODO in principle, this routine is generic, can be moved to Utils.h
116 const auto& data = mWorker.getData();
117 WaveformCalibParam payload;
118 payload.assign(data);
119 auto& info = mWorker.getCcdbObjectInfo();
120 const auto& opt = CalibParamZDC::Instance();
121 opt.updateCcdbObjectInfo(info);
122
123 auto image = o2::ccdb::CcdbApi::createObjectImage<WaveformCalibParam>(&payload, &info);
124 LOG(info) << "Sending object " << info.getPath() << "/" << info.getFileName() << " of size " << image->size()
125 << " bytes, valid for " << info.getStartValidityTimestamp() << " : " << info.getEndValidityTimestamp();
126 if (mVerbosity > DbgZero) {
127 payload.print();
128 }
129 output.snapshot(Output{o2::calibration::Utils::gDataOriginCDBPayload, "ZDCWaveformCalib", 0}, *image.get()); // vector<char>
130 output.snapshot(Output{o2::calibration::Utils::gDataOriginCDBWrapper, "ZDCWaveformCalib", 0}, info); // root-serialized
131 // TODO: reset the outputs once they are already sent (is it necessary?)
132 // mWorker.init();
133}
134
136{
137 using device = o2::zdc::WaveformCalibSpec;
139
140 std::vector<InputSpec> inputs;
141 inputs.emplace_back("waveformcalibdata", "ZDC", "WAVECALIBDATA", 0, Lifetime::Timeframe);
142 inputs.emplace_back("wavecalibconfig", "ZDC", "WAVECALIBCONFIG", 0, Lifetime::Condition, o2::framework::ccdbParamSpec(o2::zdc::CCDBPathWaveformCalibConfig.data()));
143
144 std::vector<OutputSpec> outputs;
145 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBPayload, "ZDCWaveformCalib"}, Lifetime::Sporadic);
146 outputs.emplace_back(ConcreteDataTypeMatcher{o2::calibration::Utils::gDataOriginCDBWrapper, "ZDCWaveformCalib"}, Lifetime::Sporadic);
147
148 return DataProcessorSpec{
149 "zdc-waveformcalib",
150 inputs,
151 outputs,
152 AlgorithmSpec{adaptFromTask<device>()},
153 Options{{"verbosity-level", o2::framework::VariantType::Int, 1, {"Verbosity level"}}}};
154}
155
156} // namespace zdc
157} // namespace o2
#define verbosity
Class to describe fired triggered and/or stored channels for the BC and to refer to channel data.
ZDC calibration common parameters.
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
Definition of the Names Generator class.
Class to describe pedestal data accumulated over the orbit.
Class to describe reconstructed ZDC event (single BC with signal in one of detectors)
Waveform calibration intermediate data.
Waveform calibration data.
Container class to store NTimeBinsPerBC ADC values of single ZDC channel.
ConfigParamRegistry const & options()
Definition InitContext.h:33
decltype(auto) get(R binding, int part=0) const
InputRecord & inputs()
The inputs associated with this processing context.
void sendOutput(o2::framework::DataAllocator &output)
void endOfStream(o2::framework::EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void init(o2::framework::InitContext &ic) final
void run(o2::framework::ProcessingContext &pc) final
void updateTimeDependentParams(o2::framework::ProcessingContext &pc)
void finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj) final
void setConfig(const WaveformCalibConfig *param)
int process(const WaveformCalibData &data)
WaveformCalibData & getData()
CcdbObjectInfo & getCcdbObjectInfo()
GLeglImageOES image
Definition glcorearb.h:4021
GLboolean * data
Definition glcorearb.h:298
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
struct o2::upgrades_utils::@463 zdc
structure to keep FT0 information
framework::DataProcessorSpec getWaveformCalibSpec()
constexpr int DbgFull
Definition Constants.h:210
const std::string CCDBPathWaveformCalibConfig
Definition Constants.h:228
constexpr int DbgZero
Definition Constants.h:207
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
static constexpr o2::header::DataOrigin gDataOriginCDBWrapper
Definition Utils.h:44
static constexpr o2::header::DataOrigin gDataOriginCDBPayload
Definition Utils.h:43
void assign(const WaveformCalibData &data)
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"