]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliCaloRawAnalyzerLMS.cxx
This is a backward incompatible change in AliRoot. The following methods have been...
[u/mrichter/AliRoot.git] / EMCAL / AliCaloRawAnalyzerLMS.cxx
CommitLineData
d655d7dd 1/**************************************************************************
2 * This file is property of and copyright by *
3 * the Relativistic Heavy Ion Group (RHIG), Yale University, US, 2009 *
4 * *
5 * Primary Author: Per Thomas Hille <p.t.hille@fys.uio.no> *
6 * *
7 * Contributors are mentioned in the code where appropriate. *
8 * Please report bugs to p.t.hille@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
20// Extraction of amplitude and peak position
57839add 21// FRom CALO raw data using
d655d7dd 22// least square fit for the
23// Moment assuming identical and
24// independent errors (equivalent with chi square)
25//
26
57839add 27#include "AliCaloRawAnalyzerLMS.h"
28#include "AliCaloBunchInfo.h"
29#include "AliCaloFitResults.h"
d655d7dd 30#include "AliLog.h"
31#include "TMath.h"
507751ce 32#include <stdexcept>
d655d7dd 33#include <iostream>
34#include "TF1.h"
35#include "TGraph.h"
36
37using namespace std;
38
39
40#define BAD 4 //CRAP PTH
e37e3c84 41
42ClassImp( AliCaloRawAnalyzerLMS )
d655d7dd 43
44
48a2e3eb 45AliCaloRawAnalyzerLMS::AliCaloRawAnalyzerLMS() : AliCaloRawAnalyzer("Chi Square Fit", "LMS"),
57839add 46 fkEulerSquared(7.389056098930650227),
f57baa2d 47 fTf1(0),
48 fTau(2.35),
49 fFixTau(kTRUE)
d655d7dd 50{
51 //comment
52 for(int i=0; i < MAXSAMPLES; i++)
53 {
54 fXaxis[i] = i;
55 }
56
f57baa2d 57 fTf1 = new TF1( "myformula", "[0]*((x - [1])/[2])^2*exp(-2*(x -[1])/[2])", 0, 30 );
58 if (fFixTau) {
59 fTf1->FixParameter(2, fTau);
60 }
61 else {
62 fTf1->ReleaseParameter(2); // allow par. to vary
63 fTf1->SetParameter(2, fTau);
64 }
65
d655d7dd 66}
67
68
57839add 69AliCaloRawAnalyzerLMS::~AliCaloRawAnalyzerLMS()
d655d7dd 70{
71 delete fTf1;
72}
73
74
75
57839add 76AliCaloFitResults
77AliCaloRawAnalyzerLMS::Evaluate( const vector<AliCaloBunchInfo> &bunchvector, const UInt_t altrocfg1, const UInt_t altrocfg2 )
d655d7dd 78{
79 // Extracting signal parameters using fitting
80 short maxampindex; //index of maximum amplitude
81 short maxamp; //Maximum amplitude
82 int index = SelectBunch( bunchvector, &maxampindex, &maxamp );
83
84 if( index >= 0)
85 {
86 Float_t ped = ReverseAndSubtractPed( &(bunchvector.at(index)) , altrocfg1, altrocfg2, fReversed );
87 int first;
88 int last;
89 Float_t maxf = TMath::MaxElement( bunchvector.at(index).GetLength(), fReversed );
f57baa2d 90 short maxrev = maxampindex - bunchvector.at(index).GetStartBin();
507751ce 91 // timebinOffset is timebin value at maximum (maxrev)
f57baa2d 92 short timebinOffset = maxampindex - (bunchvector.at(index).GetLength()-1);
d655d7dd 93 if ( maxf > fAmpCut )
94 {
3b8fd9fe 95 SelectSubarray( fReversed, bunchvector.at(index).GetLength(), maxrev, &first, &last);
96 int nsamples = last - first + 1;
d655d7dd 97
f57baa2d 98 if( ( nsamples ) >= fNsampleCut )
d655d7dd 99 {
507751ce 100 Float_t tmax = (maxrev - first); // local tmax estimate
3b8fd9fe 101 TGraph *graph = new TGraph( nsamples, fXaxis, &fReversed[first] );
d655d7dd 102 fTf1->SetParameter(0, maxf*fkEulerSquared );
507751ce 103 fTf1->SetParameter(1, tmax - fTau);
104 // set rather loose parameter limits
105 fTf1->SetParLimits(0, 0.5*maxf*fkEulerSquared, 2*maxf*fkEulerSquared );
106 fTf1->SetParLimits(1, tmax - fTau - 4, tmax - fTau + 4);
f57baa2d 107
108 if (fFixTau) {
109 fTf1->FixParameter(2, fTau);
110 }
111 else {
112 fTf1->ReleaseParameter(2); // allow par. to vary
113 fTf1->SetParameter(2, fTau);
114 }
d655d7dd 115
507751ce 116 Short_t tmpStatus = 0;
117 try {
118 tmpStatus = graph->Fit(fTf1, "Q0RW");
119 }
120 catch (const std::exception & e) {
121 AliError( Form("TGraph Fit exception %s", e.what()) );
122 return AliCaloFitResults( maxamp, ped, AliCaloFitResults::kNoFit, maxf, timebinOffset);
123 }
124
d655d7dd 125 if( fVerbose == true )
126 {
57839add 127 AliCaloRawAnalyzer::PrintBunch( bunchvector.at(index) );
d655d7dd 128 PrintFitResult( fTf1 ) ;
129 }
507751ce 130 // global tmax
131 tmax = fTf1->GetParameter(1) + timebinOffset - (maxrev - first) // abs. t0
132 + fTf1->GetParameter(2); // +tau, makes sum tmax
d655d7dd 133
134 delete graph;
507751ce 135 return AliCaloFitResults( maxamp, ped , AliCaloFitResults::kFitPar,
f57baa2d 136 fTf1->GetParameter(0)/fkEulerSquared,
507751ce 137 tmax,
138 timebinOffset,
f57baa2d 139 fTf1->GetChisquare(),
140 fTf1->GetNDF(),
141 AliCaloFitResults::kDummy, AliCaloFitSubarray(index, maxrev, first, last) );
142
d655d7dd 143 // delete graph;
144
145 }
146 else
147 {
507751ce 148 return AliCaloFitResults( maxamp, ped, AliCaloFitResults::kCrude, maxf, timebinOffset);
d655d7dd 149 }
150 }
151 else
152 {
507751ce 153 return AliCaloFitResults( maxamp , ped, AliCaloFitResults::kCrude, maxf, timebinOffset);
d655d7dd 154 }
155 }
d655d7dd 156
f57baa2d 157 return AliCaloFitResults( AliCaloFitResults::kInvalid, AliCaloFitResults::kInvalid );
d655d7dd 158
159}
160
161
162void
57839add 163AliCaloRawAnalyzerLMS::PrintFitResult(const TF1 *f) const
d655d7dd 164{
165 //comment
166 cout << endl;
167 cout << __FILE__ << __LINE__ << "Using this samplerange we get" << endl;
168 cout << __FILE__ << __LINE__ << "AMPLITUDE = " << f->GetParameter(0)/fkEulerSquared << ",.. !!!!" << endl;
169 cout << __FILE__ << __LINE__ << "TOF = " << f->GetParameter(1) << ",.. !!!!" << endl;
170 cout << __FILE__ << __LINE__ << "NDF = " << f->GetNDF() << ",.. !!!!" << endl;
171 // cout << __FILE__ << __LINE__ << "STATUS = " << f->GetStatus() << ",.. !!!!" << endl << endl;
172 cout << endl << endl;
173}
f57baa2d 174