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"
23 virtual void makeSeed(
Seed_t seed, TVector3 &posSeed, TVector3 &momSeed,
int &q ) = 0;
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);
41 inline double determinant(
double a,
double b,
double c,
double d) {
48 double computeSignedCurvature(
const Point& p1,
const Point& p2,
const Point& p3) {
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));
55 double det = determinant(p2.x - p1.x, p2.y - p1.y, p3.x - p1.x, p3.y - p1.y);
57 double charge = det > 0 ? -1 : 1;
59 double area = std::abs(det) / 2.0;
62 std::cerr <<
"The points are collinear, curvature is undefined." << std::endl;
68 double radius = (A * B * C) / (4 * area);
71 return charge / radius;
74 double averageCurvature(
const Seed_t points ) {
76 int numPoints = points.size();
78 std::cerr <<
"Not enough points to form a circle." << std::endl;
82 double totalCurvature = 0.0;
83 int validCombinations = 0;
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) {
94 totalCurvature += curvature;
101 if (validCombinations == 0) {
102 std::cerr <<
"No valid curvature calculations possible." << std::endl;
106 return totalCurvature / validCombinations;
109 template <
typename T>
int sgn(T val) {
110 return (T(0) < val) - (val < T(0));
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);
117 const double BStrength = 0.5;
118 const double C = 0.3 * BStrength;
119 const double K = 0.00029979;
120 double pt = fabs((K*5)/qc);
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() );