Project
Loading...
Searching...
No Matches
AliHLTTPCRawCluster.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 ALIHLTTPCRAWCLUSTER_H
16#define ALIHLTTPCRAWCLUSTER_H
17
26
27 AliHLTTPCRawCluster(int16_t PadRow, float Pad, float Time, float SigmaPad2, float SigmaTime2, uint16_t Charge, uint16_t QMax, uint16_t Flags) : fPadRow(PadRow), mFlags(Flags), fPad(Pad), fTime(Time), fSigmaPad2(SigmaPad2), fSigmaTime2(SigmaTime2), fCharge(Charge), fQMax(QMax) {}
28
30
32 {
33 if (this == &other) {
34 return *this;
35 }
37 new (this) AliHLTTPCRawCluster(other);
38 return *this;
39 }
40
41 void Clear()
42 {
44 new (this) AliHLTTPCRawCluster;
45 }
46
47 int16_t fPadRow;
48 uint16_t mFlags; // Flags: (1 << 0): Split in pad direction
49 // (1 << 1): Split in time direction
50 // (1 << 2): Edge Cluster
51 // During cluster merging, flags are OR'd
52 float fPad;
53 float fTime;
56 uint16_t fCharge;
57 uint16_t fQMax;
58
59 int32_t GetPadRow() const { return fPadRow; }
60 float GetPad() const { return fPad; }
61 float GetTime() const { return fTime; }
62 float GetSigmaPad2() const { return fSigmaPad2; }
63 float GetSigmaTime2() const { return fSigmaTime2; }
64 int32_t GetCharge() const { return fCharge; }
65 int32_t GetQMax() const { return fQMax; }
66 bool GetFlagSplitPad() const { return (mFlags & (1 << 0)); }
67 bool GetFlagSplitTime() const { return (mFlags & (1 << 1)); }
68 bool GetFlagSplitAny() const { return (mFlags & 3); }
69 bool GetFlagEdge() const { return (mFlags & (1 << 2)); }
70 bool GetFlagSplitAnyOrEdge() const { return (mFlags & 7); }
71 uint16_t GetFlags() const { return (mFlags); }
72
73 void SetPadRow(int16_t padrow) { fPadRow = padrow; }
74 void SetPad(float pad) { fPad = pad; }
75 void SetTime(float time) { fTime = time; }
76 void SetSigmaPad2(float sigmaPad2) { fSigmaPad2 = sigmaPad2; }
77 void SetSigmaTime2(float sigmaTime2) { fSigmaTime2 = sigmaTime2; }
78 void SetCharge(uint16_t charge) { fCharge = charge; }
79 void SetQMax(uint16_t qmax) { fQMax = qmax; }
80
81 void ClearFlags() { mFlags = 0; }
82 void SetFlags(uint16_t flags) { mFlags = flags; }
83 void SetFlagSplitPad() { mFlags |= (1 << 0); }
84 void SetFlagSplitTime() { mFlags |= (1 << 1); }
85 void SetFlagEdge() { mFlags |= (1 << 2); }
86};
88
90 uint32_t fVersion; // version number
91 uint32_t fCount; // number of clusters
92#if defined(__HP_aCC) || defined(__DECCXX) || defined(__SUNPRO_CC)
93 AliHLTTPCRawCluster fClusters[1]; // array of clusters
94#else
95 AliHLTTPCRawCluster fClusters[0]; // array of clusters
96#endif
97};
99
100#endif
int16_t charge
Definition RawEventData.h:5
int16_t time
Definition RawEventData.h:4
uint32_t padrow
Definition RawData.h:5
GLbitfield flags
Definition glcorearb.h:1570
AliHLTTPCRawCluster fClusters[0]
int32_t GetCharge() const
void SetPadRow(int16_t padrow)
void SetTime(float time)
void SetFlags(uint16_t flags)
AliHLTTPCRawCluster(const AliHLTTPCRawCluster &other)
AliHLTTPCRawCluster(int16_t PadRow, float Pad, float Time, float SigmaPad2, float SigmaTime2, uint16_t Charge, uint16_t QMax, uint16_t Flags)
uint16_t GetFlags() const
void SetQMax(uint16_t qmax)
void SetCharge(uint16_t charge)
int32_t GetPadRow() const
bool GetFlagSplitAnyOrEdge() const
AliHLTTPCRawCluster & operator=(const AliHLTTPCRawCluster &other)
void SetSigmaTime2(float sigmaTime2)
void SetSigmaPad2(float sigmaPad2)
VectorOfTObjectPtrs other