Project
Loading...
Searching...
No Matches
EntropyDecoderSpec.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
24
25using namespace o2::framework;
26
27namespace o2
28{
29namespace itsmft
30{
31
33 : mOrigin(orig), mCTFCoder(o2::ctf::CTFCoderBase::OpType::Decoder, orig == o2::header::gDataOriginITS ? o2::detectors::DetID::ITS : o2::detectors::DetID::MFT), mGetDigits(getDigits)
34{
36 mDetPrefix = orig == o2::header::gDataOriginITS ? "_ITS" : "_MFT";
37 mTimer.Stop();
38 mTimer.Reset();
39 mCTFCoder.setVerbosity(verbosity);
40 mCTFCoder.setDictBinding(std::string("ctfdict") + mDetPrefix);
41}
42
44{
45 mCTFCoder.init<CTF>(ic);
46 mMaskNoise = ic.options().get<bool>("mask-noise");
47 mUseClusterDictionary = !ic.options().get<bool>("ignore-cluster-dictionary");
48}
49
51{
53 mTimer.Reset();
54 }
55 auto cput = mTimer.CpuTime();
56 mTimer.Start(false);
57 o2::ctf::CTFIOSize iosize;
58 updateTimeDependentParams(pc);
59 auto buff = pc.inputs().get<gsl::span<o2::ctf::BufferType>>(std::string("ctf") + mDetPrefix);
60 // since the buff is const, we cannot use EncodedBlocks::relocate directly, instead we wrap its data to another flat object
61 // const auto ctfImage = o2::itsmft::CTF::getImage(buff.data());
62
63 // this produces weird memory problems in unrelated devices, to be understood
64 // auto& trigs = pc.outputs().make<std::vector<o2::itsmft::PhysTrigger>>(OutputRef{"phystrig"}); // dummy output
65
66 auto& rofs = pc.outputs().make<std::vector<o2::itsmft::ROFRecord>>(OutputRef{"ROframes"});
67 if (mGetDigits) {
68 auto& digits = pc.outputs().make<std::vector<o2::itsmft::Digit>>(OutputRef{"Digits"});
69 if (buff.size()) {
70 iosize = mCTFCoder.decode(o2::itsmft::CTF::getImage(buff.data()), rofs, digits, mNoiseMap, mPattIdConverter);
71 }
72 mTimer.Stop();
73 LOG(info) << "Decoded " << digits.size() << " digits in " << rofs.size() << " RO frames, (" << iosize.asString() << ") in " << mTimer.CpuTime() - cput << " s";
74 } else {
75 auto& compcl = pc.outputs().make<std::vector<o2::itsmft::CompClusterExt>>(OutputRef{"compClusters"});
76 auto& patterns = pc.outputs().make<std::vector<unsigned char>>(OutputRef{"patterns"});
77 if (buff.size()) {
78 iosize = mCTFCoder.decode(o2::itsmft::CTF::getImage(buff.data()), rofs, compcl, patterns, mNoiseMap, mPattIdConverter);
79 }
80 mTimer.Stop();
81 LOG(info) << "Decoded " << compcl.size() << " clusters in " << rofs.size() << " RO frames, (" << iosize.asString() << ") in " << mTimer.CpuTime() - cput << " s";
82 }
83 pc.outputs().snapshot({"ctfrep", 0}, iosize);
84}
85
87{
88 LOGF(info, "%s Entropy Decoding total timing: Cpu: %.3e Real: %.3e s in %d slots",
89 mOrigin.as<std::string>(), mTimer.CpuTime(), mTimer.RealTime(), mTimer.Counter() - 1);
90}
91
92void EntropyDecoderSpec::updateTimeDependentParams(ProcessingContext& pc)
93{
94 if (pc.services().get<o2::framework::TimingInfo>().globalRunNumberChanged) { // this params need to be queried only once
95 if (mMaskNoise) {
96 pc.inputs().get<o2::itsmft::NoiseMap*>(std::string("noise") + mDetPrefix);
97 }
98 if (mGetDigits || mMaskNoise) {
99 pc.inputs().get<o2::itsmft::TopologyDictionary*>(std::string("cldict") + mDetPrefix);
100 }
101 }
102 mCTFCoder.updateTimeDependentParams(pc, true);
103}
104
106{
107 if (matcher == ConcreteDataMatcher(mOrigin, "NOISEMAP", 0)) {
108 mNoiseMap = (o2::itsmft::NoiseMap*)obj;
109 LOG(info) << mOrigin.as<std::string>() << " noise map updated";
110 return;
111 }
112 if (matcher == ConcreteDataMatcher(mOrigin, "CLUSDICT", 0)) {
113 LOG(info) << mOrigin.as<std::string>() << " cluster dictionary updated" << (!mUseClusterDictionary ? " but its using is disabled" : "");
114 mPattIdConverter.setDictionary((const TopologyDictionary*)obj);
115 return;
116 }
117 if (mCTFCoder.finaliseCCDB<CTF>(matcher, obj)) {
118 return;
119 }
120}
121
122DataProcessorSpec getEntropyDecoderSpec(o2::header::DataOrigin orig, int verbosity, bool getDigits, unsigned int sspec)
123{
124 std::vector<OutputSpec> outputs;
125 // this is a special dummy input which makes sense only in sync workflows
126
127 // this produces weird memory problems in unrelated devices, to be understood
128 // outputs.emplace_back(OutputSpec{{"phystrig"}, orig, "PHYSTRIG", 0, Lifetime::Timeframe});
129
130 if (getDigits) {
131 outputs.emplace_back(OutputSpec{{"Digits"}, orig, "DIGITS", 0, Lifetime::Timeframe});
132 outputs.emplace_back(OutputSpec{{"ROframes"}, orig, "DIGITSROF", 0, Lifetime::Timeframe});
133 } else {
134 outputs.emplace_back(OutputSpec{{"compClusters"}, orig, "COMPCLUSTERS", 0, Lifetime::Timeframe});
135 outputs.emplace_back(OutputSpec{{"ROframes"}, orig, "CLUSTERSROF", 0, Lifetime::Timeframe});
136 outputs.emplace_back(OutputSpec{{"patterns"}, orig, "PATTERNS", 0, Lifetime::Timeframe});
137 }
138 outputs.emplace_back(OutputSpec{{"ctfrep"}, orig, "CTFDECREP", 0, Lifetime::Timeframe});
139 std::string nm = orig == o2::header::gDataOriginITS ? "_ITS" : "_MFT";
140 std::vector<InputSpec> inputs;
141 inputs.emplace_back(std::string("ctf") + nm, orig, "CTFDATA", sspec, Lifetime::Timeframe);
142 inputs.emplace_back(std::string("noise") + nm, orig, "NOISEMAP", 0, Lifetime::Condition, ccdbParamSpec(fmt::format("{}/Calib/NoiseMap", orig.as<std::string>())));
143 inputs.emplace_back(std::string("cldict") + nm, orig, "CLUSDICT", 0, Lifetime::Condition, ccdbParamSpec(fmt::format("{}/Calib/ClusterDictionary", orig.as<std::string>())));
144 inputs.emplace_back(std::string("ctfdict") + nm, orig, "CTFDICT", 0, Lifetime::Condition, ccdbParamSpec(fmt::format("{}/Calib/CTFDictionaryTree", orig.as<std::string>())));
145 inputs.emplace_back(std::string("trigoffset"), "CTP", "Trig_Offset", 0, Lifetime::Condition, ccdbParamSpec("CTP/Config/TriggerOffsets"));
146
147 return DataProcessorSpec{
149 inputs,
150 outputs,
151 AlgorithmSpec{adaptFromTask<EntropyDecoderSpec>(orig, verbosity, getDigits)},
152 Options{
153 {"ctf-dict", VariantType::String, "ccdb", {"CTF dictionary: empty or ccdb=CCDB, none=no external dictionary otherwise: local filename"}},
154 {"mask-noise", VariantType::Bool, false, {"apply noise mask to digits or clusters (involves reclusterization)"}},
155 {"ignore-cluster-dictionary", VariantType::Bool, false, {"do not use cluster dictionary, always store explicit patterns"}},
156 {"ans-version", VariantType::String, {"version of ans entropy coder implementation to use"}}}};
157}
158
159} // namespace itsmft
160} // namespace o2
#define verbosity
Definition of the ITS/MFT clusterer settings.
Definition of the ITSMFT compact cluster.
Definition of the Names Generator class.
Convert CTF (EncodedBlocks) to clusters streams.
Definition Physics trigger record extracted from the ITS/MFT stream.
void updateTimeDependentParams(o2::framework::ProcessingContext &pc, bool askTree=false)
void setDictBinding(const std::string &s)
void init(o2::framework::InitContext &ic)
bool finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj)
static auto getImage(const void *newHead)
get const image of the container wrapper, with pointers in the image relocated to new head
Static class with identifiers, bitmasks and names for ALICE detectors.
Definition DetID.h:58
void snapshot(const Output &spec, T const &object)
decltype(auto) make(const Output &spec, Args... args)
ConfigParamRegistry const & options()
Definition InitContext.h:33
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.
ServiceRegistryRef services()
The services registry associated with this processing context.
o2::ctf::CTFIOSize decode(const CTF::base &ec, VROF &rofRecVec, VCLUS &cclusVec, VPAT &pattVec, const NoiseMap *noiseMap, const LookUp &clPattLookup)
entropy decode clusters from buffer with CTF
Definition CTFCoder.h:140
void finaliseCCDB(o2::framework::ConcreteDataMatcher &matcher, void *obj) final
void endOfStream(o2::framework::EndOfStreamContext &ec) final
This is invoked whenever we have an EndOfStream event.
static auto getName(o2::header::DataOrigin orig)
void run(o2::framework::ProcessingContext &pc) final
void init(o2::framework::InitContext &ic) final
EntropyDecoderSpec(o2::header::DataOrigin orig, int verbosity, bool getDigits=false)
void setDictionary(const TopologyDictionary *dict)
Definition LookUp.cxx:42
NoiseMap class for the ITS and MFT.
Definition NoiseMap.h:39
constexpr o2::header::DataOrigin gDataOriginMFT
Definition DataHeader.h:572
constexpr o2::header::DataOrigin gDataOriginITS
Definition DataHeader.h:570
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
framework::DataProcessorSpec getEntropyDecoderSpec(o2::header::DataOrigin orig, int verbosity, bool getDigits, unsigned int sspec)
create a processor spec
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::string asString() const
Definition CTFIOSize.cxx:19
std::enable_if_t< std::is_same< T, std::string >::value==true, T > as() const
get the descriptor as std::string
Definition DataHeader.h:301
wrapper for the Entropy-encoded clusters of the TF
Definition CTF.h:69
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
std::vector< Digit > digits