Project
Loading...
Searching...
No Matches
Cluster.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.
15
16#ifndef O2_MFT_CLUSTER_H_
17#define O2_MFT_CLUSTER_H_
18
19#include <array>
21#include "GPUCommonDef.h"
22
23namespace o2
24{
25namespace mft
26{
27
28struct Cluster : public o2::BaseCluster<float> {
29 Cluster() = default;
30 Cluster(const Float_t x, const Float_t y, const Float_t z, const Float_t phi, const Float_t r, const Int_t id, const Int_t bin, const Float_t sigX2, const Float_t sigY2, const Int_t sensorID)
31 : BaseCluster(sensorID, x, y, z),
32 phiCoordinate{phi},
35 indexTableBin{bin},
36 sigmaX2{sigX2},
37 sigmaY2{sigY2},
38 isUsed{false} {};
39 Cluster(const Float_t x, const Float_t y, const Float_t z, const Int_t index);
40
41 void setUsed(Bool_t bval) { isUsed = bval; }
42 const Bool_t getUsed() { return isUsed; }
43
46 Int_t clusterId;
50 Bool_t isUsed;
51};
52
53} // namespace mft
54} // namespace o2
55
56#endif /* O2_MFT_CLUSTER_H_ */
GLint GLenum GLint x
Definition glcorearb.h:403
GLuint index
Definition glcorearb.h:781
GLboolean r
Definition glcorearb.h:1233
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 ...
Cluster(const Float_t x, const Float_t y, const Float_t z, const Float_t phi, const Float_t r, const Int_t id, const Int_t bin, const Float_t sigX2, const Float_t sigY2, const Int_t sensorID)
Definition Cluster.h:30
Float_t sigmaX2
Definition Cluster.h:48
Float_t rCoordinate
Definition Cluster.h:45
Float_t phiCoordinate
Definition Cluster.h:44
const Bool_t getUsed()
Definition Cluster.h:42
Int_t indexTableBin
Definition Cluster.h:47
Bool_t isUsed
Definition Cluster.h:50
Int_t clusterId
Definition Cluster.h:46
Float_t sigmaY2
Definition Cluster.h:49
void setUsed(Bool_t bval)
Definition Cluster.h:41
Cluster()=default