simple-tof-analysis
 All Classes Namespaces Functions Variables Groups Pages
TSFunc1DExpPdf.h
1 /*
2  * TSFunc1DExpPdf.h
3  *
4  * Created on: Sep 21, 2014
5  * Author: Silvestro di Luise
6  * Silvestro.Di.Luise@cern.ch
7  *
8  */
9 
10 #ifndef TSFUNC1DEXPPDF_H_
11 #define TSFUNC1DEXPPDF_H_
12 
13 #include "TSFunction1D.h"
14 
15 /*
16  *
17  */
18 
19 
21 
22 public:
23 
24  TSFunc1DExpPdf(TString name, TString title
25  ,const TSVariable &var_x, const TSParameter &mean, const TSParameter &slope);
26 
27 
28  virtual ~TSFunc1DExpPdf();
29 
30  virtual double Evaluate() const;
31 
32  private:
33 
34  const TSParameter *fMean;
35  const TSParameter *fSlope;
36 
37 };
38 
39 #endif /* TSFUNC1DEXPPDF_H_ */
Definition: TSVariable.h:55
Definition: TSFunction1D.h:43
Definition: TSParameter.h:39
Definition: TSFunc1DExpPdf.h:20