Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TpcPrototypeTrack.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TpcPrototypeTrack.h
1 // $Id: $
2 
11 #ifndef TPCPROTOTYPETRACK_H_
12 #define TPCPROTOTYPETRACK_H_
13 
14 
15 #include <phool/PHObject.h>
16 
17 #include <cstdint>
18 
23 {
24  public:
26  virtual ~TpcPrototypeTrack();
27 
28  //max number of layer under consideration
29  static const int nLayer = 16;
30 
31  unsigned int event;
32  unsigned int trackID;
33  float chisq;
34  unsigned int ndf;
35 
36  float px;
37  float py;
38  float pz;
39  float x;
40  float y;
41  float z;
42 
43  unsigned int nCluster;
44 
45  // class Cluster
46  // {
47  // public:
48  // Cluster()
49  // : layer(-1)
50  // , x(NAN)
51  // , y(NAN)
52  // , z(NAN)
53  // , e(NAN)
54  // , sizePhi(0)
55  // , residualIsolated(NAN){};
56  //
57  // virtual ~Cluster();
58  //
59  // int layer;
60  //
61  // float x;
62  // float y;
63  // float z;
64  //
65  // float e;
66  // int sizePhi;
67  //
68  // float residualIsolated;
69  //
70  // ClassDefOverride(TpcPrototypeTrack::Cluster, 1);
71  // };
72 
73  // Cluster clusters[nLayer];
74  uint64_t clusterKey[nLayer];
77  float clusterX[nLayer];
78  float clusterY[nLayer];
79  float clusterZ[nLayer];
80  float clusterE[nLayer];
85 
87 };
88 
89 #endif /* TPCPROTOTYPETRACK_H_ */