]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliCaloRawAnalyzerCrude.cxx
Factorization of the different raw fitting algorithms in EMCAL (Per Thomas)
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerCrude.cxx
CommitLineData
d655d7dd 1/**************************************************************************
2 * This file is property of and copyright by the Experimental Nuclear *
3 * Physics Group, Dep. of Physics *
4 * University of Oslo, Norway, 2007 *
5 * *
6 * Author: Per Thomas Hille <perthi@fys.uio.no> for the ALICE HLT Project.*
7 * Contributors are mentioned in the code where appropriate. *
8 * Please report bugs to perthi@fys.uio.no *
9 * *
10 * Permission to use, copy, modify and distribute this software and its *
11 * documentation strictly for non-commercial purposes is hereby granted *
12 * without fee, provided that the above copyright notice appears in all *
13 * copies and that both the copyright notice and this permission notice *
14 * appear in the supporting documentation. The authors make no claims *
15 * about the suitability of this software for any purpose. It is *
16 * provided "as is" without express or implied warranty. *
17 **************************************************************************/
e37e3c84 18
19// Evaluation of amplitude
20// as max sample value - pedestal
21// Not veru accurate, but very robust
22// --------------
23// --------------
24
57839add 25#include "AliCaloRawAnalyzerCrude.h"
26#include "AliCaloFitResults.h"
27#include "AliCaloBunchInfo.h"
2cd0ffda 28#include "TMath.h"
ce95bae9 29using namespace std;
57839add 30
92d9f317 31//#include "AliCaloConstants.h"
168c7b3c 32
e37e3c84 33ClassImp(AliCaloRawAnalyzerCrude)
34
35
48a2e3eb 36AliCaloRawAnalyzerCrude::AliCaloRawAnalyzerCrude() : AliCaloRawAnalyzer("Crude", "Crude")
57839add 37{
168c7b3c 38 fAlgo=Algo::kCrude;
57839add 39}
d655d7dd 40
41
57839add 42AliCaloRawAnalyzerCrude::~AliCaloRawAnalyzerCrude()
43{
d655d7dd 44
57839add 45}
d655d7dd 46
d655d7dd 47
57839add 48AliCaloFitResults
2cd0ffda 49AliCaloRawAnalyzerCrude::Evaluate(const vector<AliCaloBunchInfo> &bunchvector, const UInt_t altrocfg1, const UInt_t altrocfg2)
d655d7dd 50{
e37e3c84 51 // Evaluation of signal parameters
2cd0ffda 52 short maxampindex; //index of maximum amplitude
53 short maxamp; //Maximum amplitude
54 int index = SelectBunch( bunchvector, &maxampindex, &maxamp );
55
56 if( index >= 0)
57839add 57 {
2cd0ffda 58 Float_t ped = ReverseAndSubtractPed( &(bunchvector.at(index)) , altrocfg1, altrocfg2, fReversed );
59 Float_t maxf = TMath::MaxElement( bunchvector.at(index).GetLength(), fReversed );
60 short timebinOffset = maxampindex - (bunchvector.at(index).GetLength()-1);
61
62 if( maxf < fAmpCut || ( maxamp - ped) > fOverflowCut ) // (maxamp - ped) > fOverflowCut = Close to saturation (use low gain then)
63 {
168c7b3c 64 return AliCaloFitResults( maxamp, ped, Ret::kCrude, maxf, timebinOffset);
2cd0ffda 65 }
66 else if ( maxf >= fAmpCut ) // no if statement needed really; keep for readability
67 {
68 int first = 0;
69 int last = 0;
70 int maxrev = maxampindex - bunchvector.at(index).GetStartBin();
92d9f317 71 SelectSubarray( fReversed, bunchvector.at(index).GetLength(), maxrev , &first, &last, fFitArrayCut );
2cd0ffda 72
73 Float_t chi2 = CalculateChi2(maxf, maxrev, first, last);
74 Int_t ndf = last - first - 1; // nsamples - 2
168c7b3c 75 return AliCaloFitResults( maxamp, ped, Ret::kCrude, maxf, timebinOffset,
76 timebinOffset, chi2, ndf, Ret::kDummy, AliCaloFitSubarray(index, maxrev, first, last) );
2cd0ffda 77 } // ampcut
78 } // bunch index
79
168c7b3c 80 return AliCaloFitResults( Ret::kInvalid , Ret::kInvalid);
57839add 81
57839add 82} //end Crude
d655d7dd 83
d655d7dd 84