MarlinTPC  1.2.0
curlerGenerator.h
1 #ifndef CURLER_GENERATOR_H
2 #define CURLER_GENERATOR_H
3 
5 {
6  double a,b; // centre of curler
7  double M2; // M^2=a^2+b^2
8 
9  double r; // radius of the curler
10 
11  public:
12  std::pair<double,double> calculateIntersectionAngles(double R);
13  curlerGenerator(double _a, double _b, double _r);
14 
15  double getM();
16  double getr();
17  double geta();
18  double getb();
19 };
20 
21 #endif //CURLER_GENERATOR_H
Definition: curlerGenerator.h:4