]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliCaloRawAnalyzerKStandard.h
add option to compare the online reference stored in OADB and OCDB
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerKStandard.h
1 #ifndef ALICALORAWANALYZERKSTANDARD_H
2 #define ALICALORAWANALYZERKSTANDARD_H
3 /**************************************************************************
4  * This file is property of and copyright by                              *
5  * the Relativistic Heavy Ion Group (RHIG), Yale University, US, 2009     *
6  *                                                                        *
7  * Primary Author: Per Thomas Hille <p.t.hille@fys.uio.no>                *
8  *                                                                        *
9  * Contributors are mentioned in the code where appropriate.              *
10  * Please report bugs to p.t.hille@fys.uio.no                             *
11  *                                                                        *
12  * Permission to use, copy, modify and distribute this software and its   *
13  * documentation strictly for non-commercial purposes is hereby granted   *
14  * without fee, provided that the above copyright notice appears in all   *
15  * copies and that both the copyright notice and this permission notice   *
16  * appear in the supporting documentation. The authors make no claims     *
17  * about the suitability of this software for any purpose. It is          *
18  * provided "as is" without express or implied warranty.                  *
19  **************************************************************************/
20
21 // Extraction of amplitude and peak position
22 // FRom CALO raw data using
23 // Chi square fit
24
25 #include "AliCaloRawAnalyzerFitter.h"
26 class  TGraph;
27
28 class  AliCaloRawAnalyzerKStandard : public AliCaloRawAnalyzerFitter
29 {
30   friend class AliCaloRawAnalyzerFactory; // Factory for creation of raw analyzer (= shutting up the rule checker )
31   
32  public:
33   virtual ~AliCaloRawAnalyzerKStandard();
34   virtual AliCaloFitResults  Evaluate( const std::vector<AliCaloBunchInfo> &bunchvector, const UInt_t altrocfg1,  const UInt_t altrocfg2 );
35   void FitRaw(const Int_t firstTimeBin, const Int_t lastTimeBin, Float_t & amp, Float_t & time, 
36               Float_t & chi2, Bool_t & fitDone) const ;
37  
38  private:
39   AliCaloRawAnalyzerKStandard();
40   AliCaloRawAnalyzerKStandard(const AliCaloRawAnalyzerKStandard & );
41   AliCaloRawAnalyzerKStandard  & operator = (const AliCaloRawAnalyzerKStandard  &);
42   ClassDef(AliCaloRawAnalyzerKStandard, 2)
43 };
44
45 #endif