]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliCaloRawAnalyzerKStandard.h
-- remove obsolate classes
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerKStandard.h
CommitLineData
92d9f317 1#ifndef ALICALORAWANALYZERSTANDARD_H
2#define ALICALORAWANALYZERSTANDARD_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
92d9f317 21// Extraction of amplitude and peak position
22// FRom CALO raw data using
23// Chi square fit
24
396baaf6 25#include "AliCaloRawAnalyzerFitter.h"
92d9f317 26#include "AliCaloConstants.h"
92d9f317 27class TGraph;
28
396baaf6 29class AliCaloRawAnalyzerKStandard : public AliCaloRawAnalyzerFitter
92d9f317 30{
31 friend class AliCaloRawAnalyzerFactory;
32
12543482 33
34
35
92d9f317 36 public:
92d9f317 37 virtual ~AliCaloRawAnalyzerKStandard();
38 virtual AliCaloFitResults Evaluate( const std::vector<AliCaloBunchInfo> &bunchvector, const UInt_t altrocfg1, const UInt_t altrocfg2 );
92d9f317 39 static Double_t RawResponseFunction(Double_t *x, Double_t *par);
40 void FitRaw(const Int_t firstTimeBin, const Int_t lastTimeBin, Float_t & amp, Float_t & time,
41 Float_t & chi2, Bool_t & fitDone) const ;
42
43 void FitParabola(const TGraph *gSig, Float_t & amp) const ;
d44019b7 44
92d9f317 45 private:
46 AliCaloRawAnalyzerKStandard();
47 AliCaloRawAnalyzerKStandard(const AliCaloRawAnalyzerKStandard & );
48 AliCaloRawAnalyzerKStandard & operator = (const AliCaloRawAnalyzerKStandard &);
92d9f317 49 ClassDef(AliCaloRawAnalyzerKStandard, 2)
92d9f317 50};
51
52#endif