]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALCell.cxx
effc++ warnings
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALCell.cxx
CommitLineData
16d3c94d 1/**************************************************************************
2 * Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
0fc11500 16/*
17$Log$
b217491f 18Revision 1.3 2007/09/12 17:44:22 pavlinov
19fixed compilation problem under SuSe Linux
20
b3bba5dc 21Revision 1.2 2007/09/11 19:38:15 pavlinov
22added pi0 calibration, linearity, shower profile
23
0fc11500 24*/
16d3c94d 25
26//_________________________________________________________________________
b217491f 27// Cell folder which will keep all information
28// about cell(tower) itself
29// Initial version was created with TDataSet staf
30// TObjectSet -> TFolder; Sep 6, 2007
16d3c94d 31//
32//*-- Author: Aleksei Pavlinov (WSU, Detroit, USA)
33
34#include "AliEMCALCell.h"
35#include "AliEMCALHistoUtilities.h"
36#include "AliEMCALGeometry.h"
37#include "AliEMCALFolder.h"
38#include "AliEMCALSuperModule.h"
39#include "AliEMCALCalibData.h"
0fc11500 40#include "AliEMCALRecPointsQaESDSelector.h"
16d3c94d 41#include "AliEMCALCalibCoefs.h"
42
b217491f 43#include <cassert>
b3bba5dc 44
16d3c94d 45#include <TROOT.h>
46#include <TStyle.h>
47#include <TList.h>
48#include <TH1.h>
49#include <TF1.h>
50#include <TNtuple.h>
16d3c94d 51
52typedef AliEMCALHistoUtilities u;
53
54ClassImp(AliEMCALCell)
55
16d3c94d 56AliEMCALCell::AliEMCALCell() :
0fc11500 57TFolder(),
58 fParent(0),fLh(0),
16d3c94d 59fAbsId(0),fSupMod(0),fModule(0),fPhi(0),fEta(0),fPhiCell(0),fEtaCell(0),fCcIn(0),fCcOut(0),
60fFun(0)
61{
62}
63
64AliEMCALCell::AliEMCALCell(const Int_t absId, const char* title) :
0fc11500 65 TFolder(Form("Cell%4.4i",absId),title),
66 fParent(0),fLh(0),
16d3c94d 67fAbsId(absId),fSupMod(0),fModule(0),fPhi(0),fEta(0),fPhiCell(0),fEtaCell(0),fCcIn(0),fCcOut(0),
68fFun(0)
69{
b217491f 70 // Oct 15, 2007
16d3c94d 71 AliEMCALGeometry *g = AliEMCALGeometry::GetInstance();
72 g->GetCellIndex(fAbsId, fSupMod, fModule, fPhi, fEta);
73 g->GetCellPhiEtaIndexInSModule(fSupMod, fModule, fPhi, fEta, fPhiCell, fEtaCell);
74
75}
76
77AliEMCALCell::~AliEMCALCell()
78{
79 // dtor
80}
0fc11500 81//-------------------------------------------------------------------------------------
16d3c94d 82
83void AliEMCALCell::SetCCfromDB(AliEMCALCalibData *ccDb)
84{
b217491f 85 // Oct 15, 2007
16d3c94d 86 if(ccDb == 0) return;
87 // fADCchannelEC = fCalibData->GetADCchannel(iSupMod,ieta,iphi);
88 // fetaCel-column; fPhiCell- row
89 fCcIn = ccDb->GetADCchannel(fSupMod, fEtaCell, fPhiCell); // in GeV
90
91 TH1* h = (TH1*)GetHists()->At(0);
92 u::AddToNameAndTitle(h, 0, Form(", cc %5.2f MeV", fCcIn*1.e+3));
93}
94
95void AliEMCALCell::SetCCfromCCTable(AliEMCALCalibCoefs *t)
96{
b217491f 97 // Oct 15, 2007
98 if(t == 0) return;
99
0fc11500 100 if(fLh == 0) {
101 fLh = BookHists();
102 Add(fLh);
103 }
16d3c94d 104
b217491f 105 AliEMCALCalibCoef *r = t->GetTable(fAbsId);
106 if(r && r->fAbsId == fAbsId) {
107 fCcIn = r->fCc;
16d3c94d 108 } else { // something wrong
b217491f 109 if(r) printf(" fAbsId %i : r->absId %i \n", fAbsId, r->fAbsId);
16d3c94d 110 assert(0);
111 }
112
113 TH1* h = (TH1*)GetHists()->At(0);
114 u::AddToNameAndTitle(h, 0, Form(", cc %5.2f MeV", fCcIn*1.e+3));
115}
116
117void AliEMCALCell::FillEffMass(const Double_t mgg)
118{
119 u::FillH1(GetHists(), 0, mgg);
120}
121
122void AliEMCALCell::FillCellNtuple(TNtuple *nt)
123{
124 if(nt==0) return;
125 nt->Fill(fAbsId,fSupMod,fModule,fPhi,fEta,fPhiCell,fEtaCell,fCcIn,fCcOut);
126}
127
128void AliEMCALCell::FitHist(TH1* h, const char* name, const char* opt)
129{
b217491f 130 // Oct 15, 2007
131 TString optFit(""), sopt(opt);
132 sopt.ToUpper();
16d3c94d 133 if(h==0) return;
0fc11500 134 printf("<I> AliEMCALCell::FitHist : |%s| is started : opt %s\n", h->GetName(), opt);
16d3c94d 135 TString tit(h->GetTitle());
136
b217491f 137 TF1 *gausPol2 = 0, *g=0, *bg=0;
0fc11500 138 if(h->GetListOfFunctions()->GetSize() == 0 || 1) {
16d3c94d 139 g = u::Gausi(name, 0.0, 0.4, h); // gaus estimation
140
141 g->SetParLimits(0, h->Integral()/20., h->Integral());
142 g->SetParLimits(1, 0.08, 0.20);
143 g->SetParLimits(2, 0.001, 0.02);
144
145 g->SetParameter(0, 1200.);
146 g->SetParameter(1, h->GetBinLowEdge(h->GetMaximumBin()));
147 g->SetParameter(2, 0.010);
148
149 g->SetLineColor(kRed);
150 g->SetLineWidth(2);
151
152 optFit = "0NQ";
153 h->Fit(g, optFit.Data(),"", 0.001, 0.3);
154
155 optFit = "0NQIME";
156 h->Fit(g, optFit.Data(),"", 0.001, 0.3);
157
158 bg = new TF1(Form("bg%s",name), "pol2", 0.0, 0.3);
159 optFit = "0NQ";
160 h->Fit(bg, optFit.Data(),"", 0.0, 0.3);
161
b217491f 162 gausPol2 = u::GausiPol2(name, 0.00, 0.3, g, bg);
16d3c94d 163 optFit = "0Q";
b217491f 164 h->Fit(gausPol2, optFit.Data(),"", 0.03, 0.28);
16d3c94d 165 // Clean up
166 delete g;
167 delete bg;
168 optFit = "0IME+"; // no drwaing at all
b217491f 169 if(tit.Contains("SM") || sopt.Contains("DRAW")) optFit = "IME+";
16d3c94d 170 } else {
b217491f 171 gausPol2 = (TF1*)h->GetListOfFunctions()->At(0);
16d3c94d 172 optFit = "IME+";
b217491f 173 printf("<I> Function is defined alredy : %s optFit %s \n", gausPol2->GetTitle(), optFit.Data());
16d3c94d 174 }
175 // optFit = "IME+";
b217491f 176 h->Fit(gausPol2, optFit.Data(),"", 0.01, 0.28);
16d3c94d 177
178 if(optFit.Contains("0") == 0) {
179 gStyle->SetOptFit(111);
180 u::DrawHist(h,2);
181 }
0fc11500 182 printf("<I> AliEMCALCell::FitHist : |%s| is ended \n\n", h->GetName());
16d3c94d 183}
184
185void AliEMCALCell::FitEffMassHist(const char* opt)
186{
b217491f 187 // Oct 15, 2007
188 static Double_t mPI0 = 0.13498; // mass of pi0
189 static Double_t mPI02 = mPI0*mPI0; // mass**2
190
191 AliEMCALFolder* emcal = AliEMCALRecPointsQaESDSelector::GetEmcalFolder();
192 Int_t it = emcal->GetIterationNumber();
16d3c94d 193
194 TH1* h = (TH1*)GetHists()->At(0);
195
196 FitHist(h, GetName(), opt);
197
198 fFun = (TF1*)h->GetListOfFunctions()->At(0);
199 if(fFun) {
200 Double_t mpi = fFun->GetParameter(1), mpi2 = mpi*mpi;
b217491f 201 Double_t ccTmp = fCcIn * mPI02 / mpi2;
0fc11500 202 if(it<=1) { // Jul 16, 2007
16d3c94d 203 fCcOut = ccTmp;
204 } else {
205 fCcOut = (ccTmp + fCcIn)/2.;
206 }
207 printf(" fFun %s | %s : iet %i\n", fFun->GetName(), fFun->GetTitle(), it);
208 }
209 printf(" %s | fCcIn %6.5f -> % 6.5f <- fCcOut \n", GetTitle(), fCcIn , fCcOut);
210}
211
0fc11500 212void AliEMCALCell::PrintInfo()
16d3c94d 213{
b217491f 214 // Oct 15, 2007
0fc11500 215 printf(" %s %s \n", GetName(), GetTitle());
216 if(fLh == 0 ) return;
16d3c94d 217 TH1* h = (TH1*)GetHists()->At(0);
218 TF1 *f = (TF1*)h->GetListOfFunctions()->At(0);
16d3c94d 219 if(fFun) printf(" fFun : %s | %s \n", fFun->GetName(), fFun->GetTitle());
220 else fFun = f;
0fc11500 221 // if(f) f->Dump();
16d3c94d 222}
223
224TList* AliEMCALCell::BookHists()
225{
b217491f 226 // Oct 15, 2007
16d3c94d 227 gROOT->cd();
228 TH1::AddDirectory(1);
229
b217491f 230 AliEMCALFolder* emcal = AliEMCALRecPointsQaESDSelector::GetEmcalFolder();
231 Int_t it = emcal->GetIterationNumber();
16d3c94d 232
233 new TH1F("01_EffMass", "effective mass of #gamma,#gamma(m_{#pi^{0}}=134.98 MeV) ", 60,0.0,0.3);
234
235 TList *l = AliEMCALHistoUtilities::MoveHistsToList(Form("HistsOfCell%4.4i",fAbsId), kFALSE);
236 AliEMCALHistoUtilities::AddToNameAndTitleToList(l, Form("4.4i_It%i",fAbsId,it),
237 Form(" Cell %4.4i, iter. %i",fAbsId, it));
238
239 TH1::AddDirectory(0);
240 return l;
241}