Project
Loading...
Searching...
No Matches
EntropyEncoderSpec.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
14#include <vector>
15
22#include <TStopwatch.h>
23
24using namespace o2::framework;
25
26namespace o2
27{
28namespace hmpid
29{
30
32{
33 public:
34 EntropyEncoderSpec(bool selIR = false);
35 ~EntropyEncoderSpec() override = default;
37 void init(o2::framework::InitContext& ic) final;
39 void finaliseCCDB(o2::framework::ConcreteDataMatcher& matcher, void* obj) final;
40
41 private:
42 o2::hmpid::CTFCoder mCTFCoder;
43 bool mSelIR = false;
44 TStopwatch mTimer;
45};
46
47EntropyEncoderSpec::EntropyEncoderSpec(bool selIR) : mCTFCoder(o2::ctf::CTFCoderBase::OpType::Encoder), mSelIR(selIR)
48{
49 mTimer.Stop();
50 mTimer.Reset();
51}
52
54{
55 if (mCTFCoder.finaliseCCDB<CTF>(matcher, obj)) {
56 return;
57 }
58}
59
61{
62 mCTFCoder.init<CTF>(ic);
63}
64
66{
67 auto cput = mTimer.CpuTime();
68 mTimer.Start(false);
69 mCTFCoder.updateTimeDependentParams(pc, true);
70 auto triggers = pc.inputs().get<gsl::span<Trigger>>("triggers");
71 auto digits = pc.inputs().get<gsl::span<Digit>>("digits");
72 if (mSelIR) {
73 mCTFCoder.setSelectedIRFrames(pc.inputs().get<gsl::span<o2::dataformats::IRFrame>>("selIRFrames"));
74 }
75 auto& buffer = pc.outputs().make<std::vector<o2::ctf::BufferType>>(Output{"HMP", "CTFDATA", 0});
76
77 auto iosize = mCTFCoder.encode(buffer, triggers, digits);
78 pc.outputs().snapshot({"ctfrep", 0}, iosize);
79 if (mSelIR) {
80 mCTFCoder.getIRFramesSelector().clear();
81 }
82 mTimer.Stop();
83 LOG(info) << iosize.asString() << " in " << mTimer.CpuTime() - cput << " s";
84}
85
87{
88 LOGF(info, "HMPID Entropy Encoding total timing: Cpu: %.3e Real: %.3e s in %d slots",
89 mTimer.CpuTime(), mTimer.RealTime(), mTimer.Counter() - 1);
90}
91
93{
94 std::vector<InputSpec> inputs;
95 inputs.emplace_back("triggers", "HMP", "INTRECORDS", 0, Lifetime::Timeframe);
96 inputs.emplace_back("digits", "HMP", "DIGITS", 0, Lifetime::Timeframe);
97 inputs.emplace_back("ctfdict", "HMP", "CTFDICT", 0, Lifetime::Condition, ccdbParamSpec("HMP/Calib/CTFDictionaryTree"));
98 if (selIR) {
99 inputs.emplace_back("selIRFrames", "CTF", "SELIRFRAMES", 0, Lifetime::Timeframe);
100 }
101 return DataProcessorSpec{
102 "hmpid-entropy-encoder",
103 inputs,
104 Outputs{{"HMP", "CTFDATA", 0, Lifetime::Timeframe},
105 {{"ctfrep"}, "HMP", "CTFENCREP", 0, Lifetime::Timeframe}},
106 AlgorithmSpec{adaptFromTask<EntropyEncoderSpec>(selIR)},
107 Options{{"ctf-dict", VariantType::String, "ccdb", {"CTF dictionary: empty or ccdb=CCDB, none=no external dictionary otherwise: local filename"}},
108 {"irframe-margin-bwd", VariantType::UInt32, 0u, {"margin in BC to add to the IRFrame lower boundary when selection is requested"}},
109 {"irframe-margin-fwd", VariantType::UInt32, 0u, {"margin in BC to add to the IRFrame upper boundary when selection is requested"}},
110 {"mem-factor", VariantType::Float, 1.f, {"Memory allocation margin factor"}},
111 {"ans-version", VariantType::String, {"version of ans entropy coder implementation to use"}}}};
112}
113
114} // namespace hmpid
115} // namespace o2
class for entropy encoding/decoding of HMPID data
Convert HMP data to CTF (EncodedBlocks)
void updateTimeDependentParams(o2::framework::ProcessingContext &pc, bool askTree=false)
void init(o2::framework::InitContext &ic)
void setSelectedIRFrames(const SPAN &sp)
o2::utils::IRFrameSelector & getIRFramesSelector()
bool finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj)
void snapshot(const Output &spec, T const &object)
decltype(auto) make(const Output &spec, Args... args)
decltype(auto) get(R binding, int part=0) const
DataAllocator & outputs()
The data allocator is used to allocate memory for the output data.
InputRecord & inputs()
The inputs associated with this processing context.
o2::ctf::CTFIOSize encode(VEC &buff, const gsl::span< const Trigger > &trigData, const gsl::span< const Digit > &digData)
entropy-encode data to buffer with CTF
Definition CTFCoder.h:62
void run(o2::framework::ProcessingContext &pc) final
void endOfStream(o2::framework::EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
void init(o2::framework::InitContext &ic) final
~EntropyEncoderSpec() override=default
void finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj) final
GLuint buffer
Definition glcorearb.h:655
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
std::vector< OutputSpec > Outputs
framework::DataProcessorSpec getEntropyEncoderSpec(bool selIR=false)
create a processor spec
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
wrapper for the Entropy-encoded triggers and cells of the TF
Definition CTF.h:39
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
std::vector< Digit > digits