Project
Loading...
Searching...
No Matches
Hit.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_TRD_HIT_H_
13#define ALICEO2_TRD_HIT_H_
14
15#include <vector>
18
19namespace o2::trd
20{
21
22class Hit : public o2::BasicXYZQHit<float>
23{
24 public:
25 using BasicXYZQHit<float>::BasicXYZQHit;
26 Hit(float x, float y, float z, float lCol, float lRow, float lTime, float tof, int charge, int trackId, int detId, bool drift)
27 : BasicXYZQHit(x, y, z, tof, charge, trackId, detId), mInDrift(drift), locC(lCol), locR(lRow), locT(lTime){};
28 bool isFromDriftRegion() const { return mInDrift; }
29 void setLocalC(float lCol) { locC = lCol; }
30 void setLocalR(float lRow) { locR = lRow; }
31 void setLocalT(float lTime) { locT = lTime; }
32 float getLocalC() const { return locC; }
33 float getLocalR() const { return locR; }
34 float getLocalT() const { return locT; }
35
36 private:
37 bool mInDrift{false};
38 float locC{-99}; // col direction in amplification or drift volume
39 float locR{-99}; // row direction in amplification or drift volume
40 float locT{-99}; // time direction in amplification or drift volume
41
42 ClassDefNV(Hit, 1);
43};
44} // namespace o2::trd
45
46#ifdef USESHM
47namespace std
48{
49template <>
50class allocator<o2::trd::Hit> : public o2::utils::ShmAllocator<o2::trd::Hit>
51{
52};
53} // namespace std
54#endif
55
56#endif
int16_t charge
Definition RawEventData.h:5
void setLocalC(float lCol)
Definition Hit.h:29
float getLocalT() const
Definition Hit.h:34
Hit(float x, float y, float z, float lCol, float lRow, float lTime, float tof, int charge, int trackId, int detId, bool drift)
Definition Hit.h:26
float getLocalR() const
Definition Hit.h:33
bool isFromDriftRegion() const
Definition Hit.h:28
float getLocalC() const
Definition Hit.h:32
void setLocalT(float lTime)
Definition Hit.h:31
void setLocalR(float lRow)
Definition Hit.h:30
GLint GLenum GLint x
Definition glcorearb.h:403
GLdouble GLdouble GLdouble z
Definition glcorearb.h:843
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Defining DataPointCompositeObject explicitly as copiable.