1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#ifndef TPNFit_H
#define TPNFit_H
#include "TObject.h"
class TPNFit : public TObject {
public:
static constexpr int NMAXSAMP2 = 50;
private:
int fNsamples;
int fNum_samp_bef_max;
int fNum_samp_after_max;
int firstsample, lastsample;
double t[NMAXSAMP2], val[NMAXSAMP2];
double fv1[NMAXSAMP2], fv2[NMAXSAMP2], fv3[NMAXSAMP2];
double ampl;
double timeatmax;
public:
// Default Constructor, mainly for Root
TPNFit();
// Destructor: Does nothing
~TPNFit() override;
// Initialize
void init(int, int, int);
double doFit(int, double *);
double getAmpl() { return ampl; }
double getTimax() { return timeatmax; }
ClassDefOverride(TPNFit, 0)
};
#endif
|