Class Reference for E1039 Core & Analysis Software
UtilHodo.h
Go to the documentation of this file.
1 #ifndef _UTIL_HODO__H_
2 #define _UTIL_HODO__H_
3 #include <string>
4 #include <vector>
5 #include <TGraph.h>
6 #include <TVector3.h>
7 class SQHit;
8 
9 namespace UtilHodo {
10  bool IsHodoX(const std::string det_name);
11  bool IsHodoY(const std::string det_name);
12  bool IsHodoX(const int det_id);
13  bool IsHodoY(const int det_id);
14  int GetPlanePos (const int det, double& x, double& y, double& z);
15  int GetElementPos(const int det, const int ele, double& x, double& y, double& z);
16 
17  struct Track1D {
18  typedef enum { X, Y } XY_t;
19  typedef std::vector<SQHit*> HitList_t;
22  TGraph graph;
23  int ndf;
24  double chi2;
25  double pos; //< Track position at z = 0.
26  double slope; //< Track slope, i.e. dx/dz or dy/dz.
27  Track1D(const XY_t xy);
28  ~Track1D() {;}
29  int DoTracking();
30  };
31 
32  struct Track2D {
35 
36  Track2D();
37  ~Track2D() {;}
38  void AddHit(SQHit* hit);
39  int DoTracking();
40  TGraph* GetGraphX();
41  TGraph* GetGraphY();
42  int GetNDF ();
43  double GetChi2 ();
44  TVector3 GetPos0 ();
45  TVector3 GetSlope ();
46  TVector3 GetPos (const double z);
47  };
48 }; // namespace UtilHodo
49 
50 #endif /* _UTIL_HODO__H_ */
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
int GetPlanePos(const int det, double &x, double &y, double &z)
Definition: UtilHodo.cc:29
bool IsHodoY(const std::string det_name)
Definition: UtilHodo.cc:14
bool IsHodoX(const std::string det_name)
Definition: UtilHodo.cc:9
int GetElementPos(const int det, const int ele, double &x, double &y, double &z)
Definition: UtilHodo.cc:38
HitList_t list_hit
Definition: UtilHodo.h:21
std::vector< SQHit * > HitList_t
Definition: UtilHodo.h:19
Track1D(const XY_t xy)
Definition: UtilHodo.cc:50
void AddHit(SQHit *hit)
Definition: UtilHodo.cc:82
Track1D trk_x
Definition: UtilHodo.h:33
double GetChi2()
Definition: UtilHodo.cc:110
TGraph * GetGraphX()
Definition: UtilHodo.cc:95
TGraph * GetGraphY()
Definition: UtilHodo.cc:100
TVector3 GetPos(const double z)
Definition: UtilHodo.cc:125
Track1D trk_y
Definition: UtilHodo.h:34
TVector3 GetSlope()
Definition: UtilHodo.cc:120
TVector3 GetPos0()
Definition: UtilHodo.cc:115