]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliCaloRawAnalyzerKStandard.h
macro for testing geom matrices
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerKStandard.h
CommitLineData
4074cc41 1#ifndef ALICALORAWANALYZERKSTANDARD_H
2#define ALICALORAWANALYZERKSTANDARD_H
92d9f317 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 26class TGraph;
27
396baaf6 28class AliCaloRawAnalyzerKStandard : public AliCaloRawAnalyzerFitter
92d9f317 29{
4074cc41 30 friend class AliCaloRawAnalyzerFactory; // Factory for creation of raw analyzer (= shutting up the rule checker )
12543482 31
92d9f317 32 public:
92d9f317 33 virtual ~AliCaloRawAnalyzerKStandard();
34 virtual AliCaloFitResults Evaluate( const std::vector<AliCaloBunchInfo> &bunchvector, const UInt_t altrocfg1, const UInt_t altrocfg2 );
92d9f317 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
92d9f317 38 private:
39 AliCaloRawAnalyzerKStandard();
40 AliCaloRawAnalyzerKStandard(const AliCaloRawAnalyzerKStandard & );
41 AliCaloRawAnalyzerKStandard & operator = (const AliCaloRawAnalyzerKStandard &);
92d9f317 42 ClassDef(AliCaloRawAnalyzerKStandard, 2)
92d9f317 43};
44
45#endif