]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliCaloRawAnalyzerCrude.cxx
remove cout
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerCrude.cxx
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  **************************************************************************/
18
19 // Evaluation of amplitude
20 // as max sample value - pedestal
21 // Not veru accurate, but very robust
22 // --------------
23 // --------------
24
25 #include "AliCaloRawAnalyzerCrude.h"
26 #include "AliCaloFitResults.h"
27 #include "AliCaloBunchInfo.h"
28 #include "TMath.h"
29 using namespace std;
30
31 #include "AliCaloConstants.h"
32
33 ClassImp(AliCaloRawAnalyzerCrude)  
34
35
36 AliCaloRawAnalyzerCrude::AliCaloRawAnalyzerCrude() : AliCaloRawAnalyzer("Crude", "Crude")
37 {
38   fAlgo=Algo::kCrude;
39 }
40
41
42 AliCaloRawAnalyzerCrude::~AliCaloRawAnalyzerCrude()
43 {
44
45 }
46
47
48 AliCaloFitResults
49 AliCaloRawAnalyzerCrude::Evaluate(const vector<AliCaloBunchInfo> &bunchvector, const UInt_t altrocfg1,  const UInt_t altrocfg2)
50 {
51   // Evaluation of signal parameters
52   short maxampindex; //index of maximum amplitude
53   short maxamp; //Maximum amplitude
54   int index = SelectBunch( bunchvector,  &maxampindex,  &maxamp );
55  
56   if( index >= 0)
57     {
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         {
64           return  AliCaloFitResults( maxamp, ped, Ret::kCrude, maxf, timebinOffset);
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();
71           SelectSubarray( fReversed,  bunchvector.at(index).GetLength(), maxrev , &first, &last);
72
73           Float_t chi2 = CalculateChi2(maxf, maxrev, first, last);
74           Int_t ndf = last - first - 1; // nsamples - 2
75           return AliCaloFitResults( maxamp, ped, Ret::kCrude, maxf, timebinOffset,
76                                     timebinOffset, chi2, ndf, Ret::kDummy, AliCaloFitSubarray(index, maxrev, first, last) ); 
77         } // ampcut
78     } // bunch index    
79
80   return AliCaloFitResults( Ret::kInvalid , Ret::kInvalid);
81
82 } //end Crude
83
84