File indexing completed on 2024-04-06 12:27:13
0001 #include "TObject.h"
0002 #include <vector>
0003 #include <stdio.h>
0004 #include <iostream>
0005 #include <string>
0006 #include <TMath.h>
0007
0008 class SeedPtFunction : public TObject {
0009
0010 private:
0011
0012
0013 public:
0014
0015 SeedPtFunction();
0016 ~SeedPtFunction();
0017
0018 static Double_t fitf( Double_t* x, Double_t* par);
0019 static Double_t fitf2( Double_t* x, Double_t* par);
0020 static Double_t linear( Double_t* x, Double_t* par);
0021 static Double_t fgaus( Double_t* x, Double_t* par);
0022 bool DataRejection(double sigmal, double deviation, int N_data ) ;
0023
0024 ClassDef(SeedPtFunction, 1);
0025
0026 };
0027
0028 #if !defined(__CINT__)
0029 ClassImp(SeedPtFunction);
0030 #endif
0031