Class Reference for E1039 Core & Analysis Software
UtilHodo.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TF1.h>
3 #include <interface_main/SQHit.h>
4 #include <geom_svc/GeomSvc.h>
5 #include "UtilHodo.h"
6 using namespace std;
7 namespace UtilHodo {
8 
9 bool IsHodoX(const std::string det_name)
10 {
11  return det_name.length() >= 3 && (det_name[2] == 'T' || det_name[2] == 'B');
12 }
13 
14 bool IsHodoY(const std::string det_name)
15 {
16  return ! IsHodoX(det_name);
17 }
18 
19 bool IsHodoX(const int det_id)
20 {
21  return IsHodoX( GeomSvc::instance()->getDetectorName(det_id) );
22 }
23 
24 bool IsHodoY(const int det_id)
25 {
26  return ! IsHodoX(det_id);
27 }
28 
29 int GetPlanePos(const int det, double& x, double& y, double& z)
30 {
31  GeomSvc* geom = GeomSvc::instance();
32  x = geom->getPlaneCenterX(det);
33  y = geom->getPlaneCenterY(det);
34  z = geom->getPlaneCenterZ(det);
35  return 0;
36 }
37 
38 int GetElementPos(const int det, const int ele, double& x, double& y, double& z)
39 {
40  GeomSvc* geom = GeomSvc::instance();
41  GetPlanePos(det, x, y, z);
42  int n_ele = geom->getPlaneNElements(det);
43  double pos_ele = (ele - 0.5*(n_ele+1)) * geom->getPlaneSpacing(det);
44  if (IsHodoX(det)) x += pos_ele;
45  else y += pos_ele;
46  return 0;
47 }
48 
50 Track1D::Track1D(const XY_t xy) : type_xy(xy), chi2(0), pos(0), slope(0), ndf(0)
51 {
52  ;
53 }
54 
56 {
57  if (list_hit.size() < 2) return 1;
58 
59  for (unsigned int ih = 0; ih < list_hit.size(); ih++) {
60  short det = list_hit[ih]->get_detector_id();
61  short ele = list_hit[ih]->get_element_id();
62  double x_ele, y_ele, z_ele;
63  GetElementPos(det, ele, x_ele, y_ele, z_ele);
64  if (type_xy == X) graph.SetPoint(ih, z_ele, x_ele);
65  else graph.SetPoint(ih, z_ele, y_ele);
66  }
67  graph.Fit("pol1", "Q0");
68  TF1* f1 = graph.GetFunction("pol1");
69  chi2 = f1->GetChisquare();
70  ndf = f1->GetNDF();
71  pos = f1->GetParameter(0);
72  slope = f1->GetParameter(1);
73  return 0;
74 }
75 
77 Track2D::Track2D() : trk_x(Track1D::X), trk_y(Track1D::Y)
78 {
79  ;
80 }
81 
83 {
84  if (IsHodoX(hit->get_detector_id())) trk_x.list_hit.push_back(hit);
85  else trk_y.list_hit.push_back(hit);
86 }
87 
89 {
90  if (trk_x.DoTracking() != 0) return 1;
91  if (trk_y.DoTracking() != 0) return 2;
92  return 0;
93 }
94 
96 {
97  return &trk_x.graph;
98 }
99 
101 {
102  return &trk_y.graph;
103 }
104 
106 {
107  return trk_x.ndf + trk_y.ndf;
108 }
109 
111 {
112  return trk_x.chi2 + trk_y.chi2;
113 }
114 
116 {
117  return TVector3(trk_x.pos, trk_y.pos, 0);
118 }
119 
121 {
122  return TVector3(trk_x.slope, trk_y.slope, 1);
123 }
124 
125 TVector3 Track2D::GetPos(const double z)
126 {
127  TVector3 vec(GetPos0());
128  vec += z * GetSlope();
129  return vec;
130 }
131 
132 }; // End of "namespace UtilHodo"
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
double getPlaneCenterY(int detectorID) const
Definition: GeomSvc.h:248
double getPlaneCenterX(int detectorID) const
Definition: GeomSvc.h:247
double getPlaneCenterZ(int detectorID) const
Definition: GeomSvc.h:249
int getPlaneNElements(int detectorID) const
Definition: GeomSvc.h:260
double getPlaneSpacing(int detectorID) const
Definition: GeomSvc.h:236
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42
int GetPlanePos(const int det, double &x, double &y, double &z)
Definition: UtilHodo.cc:29
bool IsHodoX(const int det_id)
Definition: UtilHodo.cc:19
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
bool IsHodoY(const int det_id)
Definition: UtilHodo.cc:24
HitList_t list_hit
Definition: UtilHodo.h:21
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