]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliCaloRawAnalyzerFitter.h
remove leg eff protection
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerFitter.h
1 // -*- mode: c++ -*-
2
3 #ifndef ALICALORAWANALYZERFITTER_H
4 #define ALICALORAWANALYZERFITTER_H
5
6 /**************************************************************************
7  * This file is property of and copyright by the Experimental Nuclear     *
8  * Physics Group, Yale University, US 2011                                *
9  *                                                                        *
10  * Author: Per Thomas Hille <perthomas.hille@yale.edu> for the ALICE      *
11  * experiment. Contributors are mentioned in the code where appropriate.  *
12  * Please report bugs to  perthomas.hille@yale.edu                        *
13  *                                                                        *
14  * Permission to use, copy, modify and distribute this software and its   *
15  * documentation strictly for non-commercial purposes is hereby granted   *
16  * without fee, provided that the above copyright notice appears in all   *
17  * copies and that both the copyright notice and this permission notice   *
18  * appear in the supporting documentation. The authors make no claims     *
19  * about the suitability of this software for any purpose. It is          *
20  * provided "as is" without express or implied warranty.                  *
21  **************************************************************************/
22
23 #include "AliCaloRawAnalyzer.h"
24 #include "AliCaloConstants.h"
25
26 using namespace ALTRO;
27 using namespace EMCAL;
28
29 class  TF1;
30 class  TGraph;
31
32 class  AliCaloRawAnalyzerFitter : public AliCaloRawAnalyzer
33 {
34 public:
35   AliCaloRawAnalyzerFitter( const char *name, const char *nameshort );
36   virtual ~AliCaloRawAnalyzerFitter();
37   
38   //Bool_t GetFixTau() const { return fFixTau; }; 
39   Bool_t GetFixTau() const; 
40   void SetFixTau(Bool_t b) { fFixTau = b; };
41   TF1 * GetFit() const { return fTf1; };
42   
43   void PrintFitResult(const TF1 *f) const;
44
45 protected: 
46   const double fkEulerSquared; //e^2 = 7.389056098930650227
47   TF1 *fTf1;  // Analytical formula of the Semi Gaussian to be fitted 
48   double fXaxis[ALTROMAXSAMPLES]; //Axis if time bins, ( used by TGraph )
49   Bool_t fFixTau; // flag if tau should be fix
50
51 private:
52   AliCaloRawAnalyzerFitter(const AliCaloRawAnalyzerFitter & );
53   AliCaloRawAnalyzerFitter  & operator = (const AliCaloRawAnalyzerFitter  &);
54   AliCaloRawAnalyzerFitter();
55 };
56
57 #endif