Project
Loading...
Searching...
No Matches
testClusterNative.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#define BOOST_TEST_MODULE Test TPC DataFormats
17#define BOOST_TEST_MAIN
18#define BOOST_TEST_DYN_LINK
19#include "../include/DataFormatsTPC/ClusterNative.h"
20#include <boost/test/unit_test.hpp>
21#include <iomanip>
22#include <iostream>
23
24namespace o2
25{
26namespace tpc
27{
28// check function for different versions of the cluster type, versions
29// can differ by internal members and scaling factors
30template <typename ClusterType>
32{
33 constexpr float step = 0.01;
34 constexpr auto padSeparation = 1. / ClusterType::scalePadPacked;
35 constexpr auto timeSeparation = 1. / ClusterType::scaleTimePacked;
36 constexpr auto sigmaPadSeparation = 1. / ClusterType::scaleSigmaPadPacked;
37 constexpr auto sigmaTimeSeparation = 1. / ClusterType::scaleSigmaTimePacked;
38
39 // the step size must be small then the achievable separation of values
40 static_assert(step < padSeparation, "inconsistent step size");
41 static_assert(step < timeSeparation, "inconsistent step size");
42
43 ClusterType somecluster;
44 for (float v = 0.; v < 5.; v += step) {
45 somecluster.setPad(v);
46 auto readback = somecluster.getPad();
47 auto delta = padSeparation;
48 BOOST_REQUIRE(readback > v - delta && readback < v + delta);
49
50 v += step;
51 somecluster.setTime(v);
52 readback = somecluster.getTime();
53 delta = timeSeparation;
54 BOOST_REQUIRE(readback > v - delta && readback < v + delta);
55
56 v += step;
57 somecluster.setSigmaPad(v);
58 readback = somecluster.getSigmaPad();
59 delta = sigmaPadSeparation;
60 BOOST_REQUIRE(readback > v - delta && readback < v + delta);
61
62 v += step;
63 somecluster.setSigmaTime(v);
64 readback = somecluster.getSigmaTime();
65 delta = sigmaTimeSeparation;
66 BOOST_REQUIRE(readback > v - delta && readback < v + delta);
67 }
68
69 // currently a time frame is supposed to be 256 orbits at most, which is less
70 // than 256 TPC drift lengths; 9 bit time sampling per drift length
71 float maxTime = 256 * 512;
72 uint8_t flags = 0x66;
73 somecluster.setTimeFlags(maxTime, flags);
74 auto read = somecluster.getTime();
75 BOOST_REQUIRE(read > maxTime - timeSeparation && read < maxTime + timeSeparation);
76 BOOST_REQUIRE(somecluster.getFlags() == 0x66);
77
78 // check that there is no crosstalk to the flags field if time is too large
79 somecluster.setFlags(0);
80 somecluster.setTime(4 * maxTime);
81 BOOST_REQUIRE(somecluster.getFlags() == 0);
82
83 return true;
84}
85
86BOOST_AUTO_TEST_CASE(test_tpc_clusternative) { checkClusterType<ClusterNative>(); }
87} // namespace tpc
88} // namespace o2
const GLdouble * v
Definition glcorearb.h:832
GLbitfield flags
Definition glcorearb.h:1570
BOOST_AUTO_TEST_CASE(ClusterHardware_test1)
bool checkClusterType()
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...