FairRoot/PandaRoot
PndEmcPSAFPGALinFitter.h
Go to the documentation of this file.
1 #ifndef PNDEMCFPGALINFITTER_HH
2 #define PNDEMCFPGALINFITTER_HH
3 
5  public:
8  void reset();
9  void putPoint(double ix, double iy);
10  void fit();
11  double offset();
12  double slope();
13  double average();
14  double averageX();
15  private:
16  double x;
17  double xx;
18  double xy;
19  double y;
20  double a,k;
21  unsigned int Np;
22 };
23 
24 #endif
void putPoint(double ix, double iy)