StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
FitterUtils.h
1 #ifndef FITTERUTILS_H
2 #define FITTERUTILS_H
3 
4 #include "GenFit/KalmanFitter.h"
5 #include "GenFit/KalmanFitterInfo.h"
6 #include "GenFit/KalmanFitterRefTrack.h"
7 #include "GenFit/MaterialEffects.h"
8 #include "GenFit/PlanarMeasurement.h"
9 #include "GenFit/RKTrackRep.h"
10 #include "GenFit/SpacepointMeasurement.h"
11 #include "GenFit/StateOnPlane.h"
12 #include "GenFit/TGeoMaterialInterface.h"
13 #include "GenFit/Track.h"
14 #include "GenFit/TrackPoint.h"
15 
16 #include "TVector3.h"
17 
18 
19 class FitSeedMaker {
20  public:
21  FitSeedMaker() {}
22  virtual ~FitSeedMaker() {}
23  virtual void makeSeed(Seed_t seed, TVector3 &posSeed, TVector3 &momSeed, int &q ) = 0;
24 };
25 class ConstFitSeeder : public FitSeedMaker {
26  public:
27  ConstFitSeeder() {}
28  virtual ~ConstFitSeeder() {}
29  virtual void makeSeed(Seed_t seed, TVector3 &posSeed, TVector3 &momSeed, int &q ) {
30  posSeed.SetXYZ(0,0,0);
31  momSeed.SetXYZ(0,0,10);
32  q = 1;
33  }
34 };
36  bool isValid = false;
37  public:
38  GenericFitSeeder() {}
39  virtual ~GenericFitSeeder() {}
40  // Simple function to calculate the determinant of a 2x2 matrix
41  inline double determinant(double a, double b, double c, double d) {
42  return a * d - b * c;
43  }
44  struct Point {
45  double x, y;
46  };
47  // Function to compute the curvature of a circle given 3 points
48  double computeSignedCurvature(const Point& p1, const Point& p2, const Point& p3) {
49  // Calculate the lengths of the sides of the triangle
50  double A = std::sqrt(std::pow(p2.x - p1.x, 2) + std::pow(p2.y - p1.y, 2));
51  double B = std::sqrt(std::pow(p3.x - p2.x, 2) + std::pow(p3.y - p2.y, 2));
52  double C = std::sqrt(std::pow(p1.x - p3.x, 2) + std::pow(p1.y - p3.y, 2));
53 
54  // Calculate the determinant of the matrix formed by the points
55  double det = determinant(p2.x - p1.x, p2.y - p1.y, p3.x - p1.x, p3.y - p1.y);
56  // LOG_INFO << "Det: " << det << endm;
57  double charge = det > 0 ? -1 : 1;
58  // Area of the triangle formed by the three points
59  double area = std::abs(det) / 2.0;
60 
61  if (area == 0) {
62  std::cerr << "The points are collinear, curvature is undefined." << std::endl;
63  return -1; // Curvature is undefined for collinear points
64  }
65 
66  // Calculate the radius of the circumcircle using the formula:
67  // R = (A * B * C) / (4 * area)
68  double radius = (A * B * C) / (4 * area);
69  // LOG_INFO << "Radius: " << radius << endm;
70  // Curvature is the inverse of the radius
71  return charge / radius;
72  }
73  // Function to compute the average curvature for all combinations of 3 points
74  double averageCurvature( const Seed_t points ) {
75  // const std::vector<Point>& points;
76  int numPoints = points.size();
77  if (numPoints < 3) {
78  std::cerr << "Not enough points to form a circle." << std::endl;
79  return -1;
80  }
81 
82  double totalCurvature = 0.0;
83  int validCombinations = 0;
84 
85  // Iterate over all combinations of 3 points
86  for (int i = 0; i < numPoints - 2; ++i) {
87  for (int j = i + 1; j < numPoints - 1; ++j) {
88  for (int k = j + 1; k < numPoints; ++k) {
89  Point p0 = {points[i]->getX(), points[i]->getY()};
90  Point p1 = {points[j]->getX(), points[j]->getY()};
91  Point p2 = {points[k]->getX(), points[k]->getY()};
92  double curvature = computeSignedCurvature(p0, p1, p2);
93  if (curvature != -1) { // Exclude invalid (collinear) combinations
94  totalCurvature += curvature;
95  ++validCombinations;
96  }
97  }
98  }
99  }
100 
101  if (validCombinations == 0) {
102  std::cerr << "No valid curvature calculations possible." << std::endl;
103  return -1; // No valid triangles were found
104  }
105 
106  return totalCurvature / validCombinations;
107  }
108 
109  template <typename T> int sgn(T val) {
110  return (T(0) < val) - (val < T(0));
111  }
112  virtual void makeSeed(Seed_t seed, TVector3 &posSeed, TVector3 &momSeed, int &q ) {
113  const double qc = averageCurvature(seed);
114  posSeed.SetXYZ(0,0,0);
115  momSeed.SetXYZ(0,0,10);
116 
117  const double BStrength = 0.5; // 0.5 T
118  const double C = 0.3 * BStrength; //C depends on the units used for momentum and Bfield (here GeV and Tesla)
119  const double K = 0.00029979; // K depends on the units used for Bfield and momentum (here Gauss and GeV)
120  double pt = fabs((K*5)/qc); // pT from average measured curv
121 
122  // set the momentum seed's transverse momentum
123  momSeed.SetPerp(pt);
124  // compute the seed's eta from seed points
125  TVector3 p0 = TVector3(seed[0]->getX(), seed[0]->getY(), seed[0]->getZ());
126  TVector3 p1 = TVector3(seed[1]->getX(), seed[1]->getY(), seed[1]->getZ());
127  double dx = (p1.X() - p0.X());
128  double dy = (p1.Y() - p0.Y());
129  double dz = (p1.Z() - p0.Z());
130  double phi = TMath::ATan2(dy, dx);
131  double Rxy = sqrt(dx * dx + dy * dy);
132  double theta = TMath::ATan2(Rxy, dz);
133  if (abs(dx) < 1e-6 || abs(dy) < 1e-6){
134  phi = TMath::ATan2( p1.Y(), p1.X() );
135  }
136 
137  // momSeed.SetPhi(phi);
138  // momSeed.SetTheta(theta);
139 
140  // assign charge based on sign of curvature
141  q = sgn<double>(qc);
142  }
143 };
144 
145 #endif