12#define BOOST_TEST_MODULE Test PHSCTFIO
13#define BOOST_TEST_MAIN
14#define BOOST_TEST_DYN_LINK
19#include <boost/test/unit_test.hpp>
20#include <boost/test/data/test_case.hpp>
21#include <boost/test/data/dataset.hpp>
28#include <TStopwatch.h>
33namespace boost_data = boost::unit_test::data;
39 std::vector<TriggerRecord> triggers;
44 for (
int irof = 0; irof < 1000; irof++) {
45 ir += 1 + gRandom->Integer(200);
48 int n = 1 + gRandom->Poisson(100);
49 for (
int i =
n;
i--;) {
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);
60 std::vector<o2::ctf::BufferType>
vec;
67 LOG(info) <<
"Compressed in " <<
sw.CpuTime() <<
" s";
73 TFile
flOut(
"test_ctf_phos.root",
"recreate");
79 LOG(info) <<
"Wrote to tree in " <<
sw.CpuTime() <<
" s";
86 TFile
flIn(
"test_ctf_phos.root");
91 LOG(info) <<
"Read back from tree in " <<
sw.CpuTime() <<
" s";
104 LOG(info) <<
"Decompressed in " <<
sw.CpuTime() <<
" s";
108 LOG(info) <<
" BOOST_CHECK triggersD.size() " <<
triggersD.size() <<
" triggers.size() " << triggers.size()
109 <<
" BOOST_CHECK(cellsD.size() " <<
cellsD.size() <<
" cells.size()) " <<
cells.size();
111 for (
size_t i = 0;
i < triggers.size();
i++) {
112 const auto& dor = triggers[
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();
118 BOOST_CHECK(dor.getNumberOfObjects() == ddc.getNumberOfObjects());
119 BOOST_CHECK(dor.getFirstEntry() == dor.getFirstEntry());
122 for (
size_t i = 0;
i <
cells.size();
i++) {
123 const auto& cor =
cells[
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());
BOOST_DATA_TEST_CASE(DefaultConstructorNofSamplesIsInvariant, boost::unit_test::data::make(nsamples), nofSamples)
Definition of the Names Generator class.
class for entropy encoding/decoding of PHOS data
static constexpr std::string_view CTFTREENAME
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
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
constexpr ANSHeader ANSVersionCompat
constexpr ANSHeader ANSVersion1
@ TRU4x4
TRU channel, 4x4 trigger.
@ LOW_GAIN
Low gain channel.
@ HIGH_GAIN
High gain channel.
@ TRU2x2
TRU channel, 2x2 trigger.
std::vector< Cell > cells
std::vector< o2::ctf::BufferType > vec
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"
TFile flOut("test_ctf_phos.root", "recreate")
std::vector< o2::ctf::ANSHeader > ANSVersions
o2::InteractionRecord ir(0, 0)
std::vector< TriggerRecord > triggersD
TTree ctfTree(std::string(o2::base::NameConf::CTFTREENAME).c_str(), "O2 CTF tree")
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")