Project
Loading...
Searching...
No Matches
BaseHits.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
12#ifndef ALICEO2_BASE_HIT_H
13#define ALICEO2_BASE_HIT_H
14#include "MathUtils/Cartesian.h"
15
16namespace o2
17{
18
19// Mother class of all hit classes for AliceO2
20// just defines what is absolutely necessary to have
21// as common interface
22// at the moment ony GetTrackID() used by Stack.h
23// eventually we could add some interfaces to retrieve
24// the coordinates as floats or something
26{
27 public:
28 BaseHit() = default;
29 BaseHit(int id) : mTrackID{id} {}
30 int GetTrackID() const { return mTrackID; }
31 void SetTrackID(int id) { mTrackID = id; }
32
33 private:
34 int mTrackID = 0; // track_id
35 ClassDefNV(BaseHit, 1);
36};
37
38// a set of configurable classes to define basic hit types
39// these are meant to be an alternative to FairMCPoint
40// which always includes the momentum and is purely based on double values
41
42// Generic class to keep position, time and hit value
43// T is basic type for position,
44// E is basic type for time,
45// V is basic type for hit value.
46template <typename T, typename E, typename V = float>
47class BasicXYZVHit : public BaseHit
48{
49 math_utils::Point3D<T> mPos; // cartesian position of Hit
50 E mTime; // time of flight
51 V mHitValue; // hit value
52 short mDetectorID; // the detector/sensor id
53
54 public:
55 BasicXYZVHit() = default; // for ROOT IO
56
57 // constructor
58 BasicXYZVHit(T x, T y, T z, E time, V val, int trackid, short did)
59 : mPos(x, y, z), mTime(time), mHitValue(val), BaseHit(trackid), mDetectorID(did)
60 {
61 }
62
63 // getting the cartesian coordinates
64 T GetX() const { return mPos.X(); }
65 T GetY() const { return mPos.Y(); }
66 T GetZ() const { return mPos.Z(); }
67 math_utils::Point3D<T> GetPos() const { return mPos; }
68 // getting hit value
69 V GetHitValue() const { return mHitValue; }
70 // getting the time
71 E GetTime() const { return mTime; }
72 // get detector + track information
73 short GetDetectorID() const { return mDetectorID; }
74
75 // modifiers
76 void SetTime(E time) { mTime = time; }
77 void SetHitValue(V val) { mHitValue = val; }
78 void SetDetectorID(short detID) { mDetectorID = detID; }
79 void SetX(T x) { mPos.SetX(x); }
80 void SetY(T y) { mPos.SetY(y); }
81 void SetZ(T z) { mPos.SetZ(z); }
82 void SetXYZ(T x, T y, T z)
83 {
84 SetX(x);
85 SetY(y);
86 SetZ(z);
87 }
88 void SetPos(math_utils::Point3D<T> const& p) { mPos = p; }
89
91};
92
93// Class for a hit containing energy loss as hit value
94// T is basic type for position,
95// E is basic type for time (float as default),
96// V is basic type for hit value (float as default).
97template <typename T, typename E = float, typename V = float>
98class BasicXYZEHit : public BasicXYZVHit<T, E, V>
99{
100 public:
101 using BasicXYZVHit<T, E, V>::BasicXYZVHit;
102
105
107};
108
109// Class for a hit containing charge as hit value
110// T is basic type for position,
111// E is basic type for time (float as default),
112// V is basic type for hit value (int as default).
113template <typename T, typename E = float, typename V = int>
114class BasicXYZQHit : public BasicXYZVHit<T, E, V>
115{
116 public:
117 using BasicXYZVHit<T, E, V>::BasicXYZVHit;
118
121
123};
124
125} // namespace o2
126#endif
int16_t time
Definition RawEventData.h:4
BaseHit()=default
int GetTrackID() const
Definition BaseHits.h:30
BaseHit(int id)
Definition BaseHits.h:29
void SetTrackID(int id)
Definition BaseHits.h:31
V GetEnergyLoss() const
Definition BaseHits.h:103
void SetEnergyLoss(V val)
Definition BaseHits.h:104
ClassDefNV(BasicXYZEHit, 1)
V GetCharge() const
Definition BaseHits.h:119
void SetCharge(V val)
Definition BaseHits.h:120
ClassDefNV(BasicXYZQHit, 1)
void SetXYZ(T x, T y, T z)
Definition BaseHits.h:82
math_utils::Point3D< T > GetPos() const
Definition BaseHits.h:67
E GetTime() const
Definition BaseHits.h:71
void SetTime(E time)
Definition BaseHits.h:76
T GetZ() const
Definition BaseHits.h:66
void SetX(T x)
Definition BaseHits.h:79
T GetY() const
Definition BaseHits.h:65
void SetZ(T z)
Definition BaseHits.h:81
void SetHitValue(V val)
Definition BaseHits.h:77
V GetHitValue() const
Definition BaseHits.h:69
T GetX() const
Definition BaseHits.h:64
void SetDetectorID(short detID)
Definition BaseHits.h:78
short GetDetectorID() const
Definition BaseHits.h:73
BasicXYZVHit()=default
void SetPos(math_utils::Point3D< T > const &p)
Definition BaseHits.h:88
BasicXYZVHit(T x, T y, T z, E time, V val, int trackid, short did)
Definition BaseHits.h:58
ClassDefNV(BasicXYZVHit, 1)
void SetY(T y)
Definition BaseHits.h:80
GLint GLenum GLint x
Definition glcorearb.h:403
GLuint GLfloat * val
Definition glcorearb.h:1582
GLuint id
Definition glcorearb.h:650
GLdouble GLdouble GLdouble z
Definition glcorearb.h:843
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...