File indexing completed on 2025-12-19 09:24:45
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef TPCPROTOTYPETRACK_H_
0012 #define TPCPROTOTYPETRACK_H_
0013
0014
0015 #include <phool/PHObject.h>
0016
0017 #include <cstdint>
0018
0019
0020
0021
0022 class TpcPrototypeTrack : public PHObject
0023 {
0024 public:
0025 TpcPrototypeTrack();
0026 virtual ~TpcPrototypeTrack();
0027
0028
0029 static const int nLayer = 16;
0030
0031 unsigned int event;
0032 unsigned int trackID;
0033 float chisq;
0034 unsigned int ndf;
0035
0036 float px;
0037 float py;
0038 float pz;
0039 float x;
0040 float y;
0041 float z;
0042
0043 unsigned int nCluster;
0044
0045
0046
0047
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064
0065
0066
0067
0068
0069
0070
0071
0072
0073
0074 uint64_t clusterKey[nLayer];
0075 int clusterlayer[nLayer];
0076 int clusterid[nLayer];
0077 float clusterX[nLayer];
0078 float clusterY[nLayer];
0079 float clusterZ[nLayer];
0080 float clusterE[nLayer];
0081 float clusterSizePhi[nLayer];
0082 float clusterResidualPhi[nLayer];
0083 float clusterProjectionPhi[nLayer];
0084 float clusterResidualZ[nLayer];
0085
0086 ClassDefOverride(TpcPrototypeTrack, 5);
0087 };
0088
0089 #endif