Project
Loading...
Searching...
No Matches
test_ctf_io_phos.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#define BOOST_TEST_MODULE Test PHSCTFIO
13#define BOOST_TEST_MAIN
14#define BOOST_TEST_DYN_LINK
15
16#undef NDEBUG
17#include <cassert>
18
19#include <boost/test/unit_test.hpp>
20#include <boost/test/data/test_case.hpp>
21#include <boost/test/data/dataset.hpp>
24#include "DataFormatsPHOS/CTF.h"
25#include "Framework/Logger.h"
26#include <TFile.h>
27#include <TRandom.h>
28#include <TStopwatch.h>
29#include <TSystem.h>
30#include <cstring>
31
32using namespace o2::phos;
33namespace boost_data = boost::unit_test::data;
34
35inline std::vector<o2::ctf::ANSHeader> ANSVersions{o2::ctf::ANSVersionCompat, o2::ctf::ANSVersion1};
36
37BOOST_DATA_TEST_CASE(CTFTest, boost_data::make(ANSVersions), ansVersion)
38{
39 std::vector<TriggerRecord> triggers;
40 std::vector<Cell> cells;
41 TStopwatch sw;
42 sw.Start();
44 for (int irof = 0; irof < 1000; irof++) {
45 ir += 1 + gRandom->Integer(200);
46
47 auto start = cells.size();
48 int n = 1 + gRandom->Poisson(100);
49 for (int i = n; i--;) {
50 ChannelType_t tp = gRandom->Rndm() > 0.5 ? (gRandom->Rndm() > 0.5 ? TRU2x2 : TRU4x4) : (gRandom->Rndm() > 0.5 ? HIGH_GAIN : LOW_GAIN);
51 uint16_t id = (tp == TRU2x2 || tp == TRU4x4) ? 3000 : gRandom->Integer(kNmaxCell);
52 float timeCell = gRandom->Rndm() * 3.00e-07 - 0.3e-9;
53 float en = gRandom->Rndm() * 160.;
54 cells.emplace_back(id, en, timeCell, tp);
55 }
56 triggers.emplace_back(ir, start, cells.size() - start);
57 }
58
59 sw.Start();
60 std::vector<o2::ctf::BufferType> vec;
61 {
63 coder.setANSVersion(ansVersion);
64 coder.encode(vec, triggers, cells); // compress
65 }
66 sw.Stop();
67 LOG(info) << "Compressed in " << sw.CpuTime() << " s";
68
69 // writing
70 {
71 sw.Start();
73 TFile flOut("test_ctf_phos.root", "recreate");
74 TTree ctfTree(std::string(o2::base::NameConf::CTFTREENAME).c_str(), "O2 CTF tree");
75 ctfImage->print();
76 ctfImage->appendToTree(ctfTree, "PHS");
77 ctfTree.Write();
78 sw.Stop();
79 LOG(info) << "Wrote to tree in " << sw.CpuTime() << " s";
80 }
81
82 // reading
83 vec.clear();
84 {
85 sw.Start();
86 TFile flIn("test_ctf_phos.root");
87 std::unique_ptr<TTree> tree((TTree*)flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()));
89 o2::phos::CTF::readFromTree(vec, *(tree.get()), "PHS");
90 sw.Stop();
91 LOG(info) << "Read back from tree in " << sw.CpuTime() << " s";
92 }
93
94 std::vector<TriggerRecord> triggersD;
95 std::vector<Cell> cellsD;
96
97 sw.Start();
98 const auto ctfImage = o2::phos::CTF::getImage(vec.data());
99 {
101 coder.decode(ctfImage, triggersD, cellsD); // decompress
102 }
103 sw.Stop();
104 LOG(info) << "Decompressed in " << sw.CpuTime() << " s";
105
106 BOOST_CHECK(triggersD.size() == triggers.size());
107 BOOST_CHECK(cellsD.size() == cells.size());
108 LOG(info) << " BOOST_CHECK triggersD.size() " << triggersD.size() << " triggers.size() " << triggers.size()
109 << " BOOST_CHECK(cellsD.size() " << cellsD.size() << " cells.size()) " << cells.size();
110
111 for (size_t i = 0; i < triggers.size(); i++) {
112 const auto& dor = triggers[i];
113 const auto& ddc = triggersD[i];
114 LOG(debug) << " Orig.TriggerRecord " << i << " " << dor.getBCData() << " " << dor.getFirstEntry() << " " << dor.getNumberOfObjects();
115 LOG(debug) << " Deco.TriggerRecord " << i << " " << ddc.getBCData() << " " << ddc.getFirstEntry() << " " << ddc.getNumberOfObjects();
116
117 BOOST_CHECK(dor.getBCData() == ddc.getBCData());
118 BOOST_CHECK(dor.getNumberOfObjects() == ddc.getNumberOfObjects());
119 BOOST_CHECK(dor.getFirstEntry() == dor.getFirstEntry());
120 }
121
122 for (size_t i = 0; i < cells.size(); i++) {
123 const auto& cor = cells[i];
124 const auto& cdc = cellsD[i];
125 BOOST_CHECK(cor.getPackedID() == cdc.getPackedID());
126 BOOST_CHECK(cor.getPackedTime() == cdc.getPackedTime());
127 BOOST_CHECK(cor.getPackedEnergy() == cdc.getPackedEnergy());
128 BOOST_CHECK(cor.getPackedCellStatus() == cdc.getPackedCellStatus());
129 }
130}
int32_t i
BOOST_DATA_TEST_CASE(DefaultConstructorNofSamplesIsInvariant, boost::unit_test::data::make(nsamples), nofSamples)
Definition testDigit.cxx:50
Definition of the Names Generator class.
Definitions for PHOS CTF data.
class for entropy encoding/decoding of PHOS data
std::ostringstream debug
static constexpr std::string_view CTFTREENAME
Definition NameConf.h:95
void setANSVersion(const ctf::ANSHeader &ansVersion) noexcept
void readFromTree(TTree &tree, const std::string &name, int ev=0)
read from tree to non-flat object
static auto get(void *head)
cast arbitrary buffer head to container class. Head is supposed to respect the alignment
static auto getImage(const void *newHead)
get const image of the container wrapper, with pointers in the image relocated to new head
o2::ctf::CTFIOSize decode(const CTF::base &ec, VTRG &trigVec, VCELL &cellVec)
entropy decode data from buffer with CTF
Definition CTFCoder.h:129
o2::ctf::CTFIOSize encode(VEC &buff, const gsl::span< const TriggerRecord > &trigData, const gsl::span< const Cell > &cellData)
entropy-encode data to buffer with CTF
Definition CTFCoder.h:62
GLdouble n
Definition glcorearb.h:1982
GLuint start
Definition glcorearb.h:469
constexpr ANSHeader ANSVersionCompat
Definition ANSHeader.h:54
constexpr ANSHeader ANSVersion1
Definition ANSHeader.h:55
ChannelType_t
Definition Cell.h:51
@ TRU4x4
TRU channel, 4x4 trigger.
Definition Cell.h:55
@ LOW_GAIN
Low gain channel.
Definition Cell.h:52
@ HIGH_GAIN
High gain channel.
Definition Cell.h:53
@ TRU2x2
TRU channel, 2x2 trigger.
Definition Cell.h:54
constexpr int kNmaxCell
Definition Cell.h:30
std::vector< Cell > cells
std::vector< o2::ctf::BufferType > vec
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
TFile flOut("test_ctf_phos.root", "recreate")
BOOST_CHECK(tree)
std::vector< o2::ctf::ANSHeader > ANSVersions
o2::InteractionRecord ir(0, 0)
TStopwatch sw
std::vector< TriggerRecord > triggersD
TTree ctfTree(std::string(o2::base::NameConf::CTFTREENAME).c_str(), "O2 CTF tree")
auto * ctfImage
std::vector< Cell > cellsD
std::unique_ptr< TTree > tree((TTree *) flIn.Get(std::string(o2::base::NameConf::CTFTREENAME).c_str()))
TFile flIn("test_ctf_phos.root")