Line data Source code
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 (rule checker request)
31 :
32 : public:
33 :
34 : virtual ~AliCaloRawAnalyzerKStandard();
35 :
36 : virtual AliCaloFitResults Evaluate( const std::vector<AliCaloBunchInfo> &bunchvector,
37 : UInt_t altrocfg1,
38 : UInt_t altrocfg2 );
39 :
40 : void FitRaw( Int_t firstTimeBin, Int_t lastTimeBin,
41 : Float_t & amp, Float_t & time,
42 : Float_t & chi2, Bool_t & fitDone) const ;
43 :
44 : private:
45 :
46 : AliCaloRawAnalyzerKStandard();
47 : AliCaloRawAnalyzerKStandard( const AliCaloRawAnalyzerKStandard & );
48 : AliCaloRawAnalyzerKStandard & operator = (const AliCaloRawAnalyzerKStandard & );
49 :
50 42 : ClassDef(AliCaloRawAnalyzerKStandard, 2)
51 : };
52 :
53 : #endif
|