Project
Loading...
Searching...
No Matches
CalibInfoCluster.h
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
14
15#ifndef ALICEO2_TOF_CLUSTERCALINFOCLASS_H
16#define ALICEO2_TOF_CLUSTERCALINFOCLASS_H
17
18#include <vector>
19#include "Rtypes.h"
20
21namespace o2
22{
23namespace tof
24{
29{
30 int ch = 0;
31 int8_t deltach = 0;
32 float deltat = 0;
33 short tot1 = 0;
34 short tot2 = 0;
35
36 public:
37 int getCH() const { return ch; }
38 int8_t getDCH() const { return deltach; }
39 float getDT() const { return deltat; }
40 short getTOT1() const { return tot1; }
41 short getTOT2() const { return tot2; }
42
43 CalibInfoCluster() = default;
44 CalibInfoCluster(int ich, int8_t ideltach, float dt, short t1, short t2) : ch(ich), deltach(ideltach), deltat(dt), tot1(t1), tot2(t2) {}
46};
47} // namespace tof
48
49} // namespace o2
50
51#endif
CalibInfoCluster for TOF.
ClassDefNV(CalibInfoCluster, 1)
CalibInfoCluster(int ich, int8_t ideltach, float dt, short t1, short t2)
GLuint GLfloat GLfloat GLfloat GLfloat GLfloat GLfloat GLfloat GLfloat GLfloat t1
Definition glcorearb.h:5034
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...