]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ITS/AliITSPlaneEffSPD.cxx
Protection against missing timestamps
[u/mrichter/AliRoot.git] / ITS / AliITSPlaneEffSPD.cxx
... / ...
CommitLineData
1/**************************************************************************
2 * Copyright(c) 2007-2009, 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///////////////////////////////////////////////////////////////////////////
16// Plane Efficiency class for ITS
17// It is used for chip by chip efficiency of the SPD,
18// evaluated by tracks
19// (Inherits from AliITSPlaneEff)
20// Author: G.E. Bruno
21// giuseppe.bruno@ba.infn.it
22//
23///////////////////////////////////////////////////////////////////////////
24
25/* $Id$ */
26
27#include <TMath.h>
28#include <TH1F.h>
29#include <TFile.h>
30#include <TTree.h>
31#include <TROOT.h>
32#include "AliITSPlaneEffSPD.h"
33#include "AliLog.h"
34#include "AliCDBStorage.h"
35#include "AliCDBEntry.h"
36#include "AliCDBManager.h"
37//#include "AliCDBRunRange.h"
38#include "AliITSsegmentationSPD.h"
39#include "AliITSCalibrationSPD.h"
40
41ClassImp(AliITSPlaneEffSPD)
42//______________________________________________________________________
43AliITSPlaneEffSPD::AliITSPlaneEffSPD():
44 AliITSPlaneEff(),
45 fHisResX(0),
46 fHisResZ(0),
47 fHisResXZ(0),
48 fHisClusterSize(0),
49 fHisResXclu(0),
50 fHisResZclu(0),
51 fHisResXchip(0),
52 fHisResZchip(0),
53 fProfResXvsPhi(0),
54 fProfResZvsDip(0),
55 fProfResXvsPhiclu(0),
56 fProfResZvsDipclu(0),
57 fHisTrackErrX(0),
58 fHisTrackErrZ(0),
59 fHisClusErrX(0),
60 fHisClusErrZ(0),
61 fHisTrackXFOtrue(0),
62 fHisTrackZFOtrue(0),
63 fHisTrackXFOfalse(0),
64 fHisTrackZFOfalse(0),
65 fHisTrackXZFOtrue(0),
66 fHisTrackXZFOfalse(0){
67 for (UInt_t i=0; i<kNModule*kNChip*(kNClockPhase+1); i++){
68 fFound[i]=0;
69 fTried[i]=0;
70 }
71 // default constructor
72 AliDebug(1,Form("Calling default constructor"));
73}
74//______________________________________________________________________
75AliITSPlaneEffSPD::~AliITSPlaneEffSPD(){
76 // destructor
77 // Inputs:
78 // none.
79 // Outputs:
80 // none.
81 // Return:
82 // none.
83 DeleteHistos();
84}
85//______________________________________________________________________
86AliITSPlaneEffSPD::AliITSPlaneEffSPD(const AliITSPlaneEffSPD &s) : AliITSPlaneEff(s),
87//fHis(s.fHis),
88fHisResX(0),
89fHisResZ(0),
90fHisResXZ(0),
91fHisClusterSize(0),
92fHisResXclu(0),
93fHisResZclu(0),
94fHisResXchip(0),
95fHisResZchip(0),
96fProfResXvsPhi(0),
97fProfResZvsDip(0),
98fProfResXvsPhiclu(0),
99fProfResZvsDipclu(0),
100fHisTrackErrX(0),
101fHisTrackErrZ(0),
102fHisClusErrX(0),
103fHisClusErrZ(0),
104fHisTrackXFOtrue(0),
105fHisTrackZFOtrue(0),
106fHisTrackXFOfalse(0),
107fHisTrackZFOfalse(0),
108fHisTrackXZFOtrue(0),
109fHisTrackXZFOfalse(0)
110{
111 // Copy Constructor
112 // Inputs:
113 // AliITSPlaneEffSPD &s The original class for which
114 // this class is a copy of
115 // Outputs:
116 // none.
117 // Return:
118
119 for (UInt_t i=0; i<kNModule*kNChip*(kNClockPhase+1); i++){
120 fFound[i]=s.fFound[i];
121 fTried[i]=s.fTried[i];
122 }
123 if(fHis) {
124 InitHistos();
125 for(Int_t i=0; i<kNHisto; i++) {
126 s.fHisResX[i]->Copy(*fHisResX[i]);
127 s.fHisResZ[i]->Copy(*fHisResZ[i]);
128 s.fHisResXZ[i]->Copy(*fHisResXZ[i]);
129 s.fHisClusterSize[i]->Copy(*fHisClusterSize[i]);
130 for(Int_t clu=0; clu<kNclu; clu++) { // clu=0 --> cluster size 1
131 s.fHisResXclu[i][clu]->Copy(*fHisResXclu[i][clu]);
132 s.fHisResZclu[i][clu]->Copy(*fHisResZclu[i][clu]);
133 s.fProfResXvsPhiclu[i][clu]->Copy(*fProfResXvsPhiclu[i][clu]);
134 s.fProfResZvsDipclu[i][clu]->Copy(*fProfResZvsDipclu[i][clu]);
135 }
136 for(Int_t chip=0; chip<kNChip; chip++) {
137 s.fHisResXchip[i][chip]->Copy(*fHisResXchip[i][chip]);
138 s.fHisResZchip[i][chip]->Copy(*fHisResZchip[i][chip]);
139 }
140 s.fProfResXvsPhi[i]->Copy(*fProfResXvsPhi[i]);
141 s.fProfResZvsDip[i]->Copy(*fProfResZvsDip[i]);
142 s.fHisTrackErrX[i]->Copy(*fHisTrackErrX[i]);
143 s.fHisTrackErrZ[i]->Copy(*fHisTrackErrZ[i]);
144 s.fHisClusErrX[i]->Copy(*fHisClusErrX[i]);
145 s.fHisClusErrZ[i]->Copy(*fHisClusErrZ[i]);
146 for(Int_t phas=0; phas<kNClockPhase;phas++){
147 s.fHisTrackXFOtrue[i][phas]->Copy(*fHisTrackXFOtrue[i][phas]);
148 s.fHisTrackZFOtrue[i][phas]->Copy(*fHisTrackXFOtrue[i][phas]);
149 s.fHisTrackXFOfalse[i][phas]->Copy(*fHisTrackXFOtrue[i][phas]);
150 s.fHisTrackZFOfalse[i][phas]->Copy(*fHisTrackXFOtrue[i][phas]);
151 s.fHisTrackXZFOtrue[i][phas]->Copy(*fHisTrackXFOtrue[i][phas]);
152 s.fHisTrackXZFOfalse[i][phas]->Copy(*fHisTrackXFOtrue[i][phas]);
153 }
154 }
155 }
156}
157//_________________________________________________________________________
158AliITSPlaneEffSPD& AliITSPlaneEffSPD::operator+=(const AliITSPlaneEffSPD &add){
159 // Add-to-me operator
160 // Inputs:
161 // const AliITSPlaneEffSPD &add simulation class to be added
162 // Outputs:
163 // none.
164 // Return:
165 // none
166 for (UInt_t i=0; i<kNModule*kNChip*(kNClockPhase+1); i++){
167 fFound[i] += add.fFound[i];
168 fTried[i] += add.fTried[i];
169 }
170 if(fHis && add.fHis) {
171 for(Int_t i=0; i<kNHisto; i++) {
172 fHisResX[i]->Add(add.fHisResX[i]);
173 fHisResZ[i]->Add(add.fHisResZ[i]);
174 fHisResXZ[i]->Add(add.fHisResXZ[i]);
175 fHisClusterSize[i]->Add(add.fHisClusterSize[i]);
176 for(Int_t clu=0; clu<kNclu; clu++) { // clu=0 --> cluster size 1
177 fHisResXclu[i][clu]->Add(add.fHisResXclu[i][clu]);
178 fHisResZclu[i][clu]->Add(add.fHisResZclu[i][clu]);
179 fProfResXvsPhiclu[i][clu]->Add(add.fProfResXvsPhiclu[i][clu]);
180 fProfResZvsDipclu[i][clu]->Add(add.fProfResZvsDipclu[i][clu]);
181 }
182 for(Int_t chip=0; chip<kNChip; chip++) {
183 fHisResXchip[i][chip]->Add(add.fHisResXchip[i][chip]);
184 fHisResZchip[i][chip]->Add(add.fHisResZchip[i][chip]);
185 }
186 fProfResXvsPhi[i]->Add(add.fProfResXvsPhi[i]);
187 fProfResZvsDip[i]->Add(add.fProfResZvsDip[i]);
188 fHisTrackErrX[i]->Add(add.fHisTrackErrX[i]);
189 fHisTrackErrZ[i]->Add(add.fHisTrackErrZ[i]);
190 fHisClusErrX[i]->Add(add.fHisClusErrX[i]);
191 fHisClusErrZ[i]->Add(add.fHisClusErrZ[i]);
192 for(Int_t phas=0; phas<kNClockPhase;phas++){
193 fHisTrackXFOtrue[i][phas]->Add(add.fHisTrackXFOtrue[i][phas]);
194 fHisTrackZFOtrue[i][phas]->Add(add.fHisTrackXFOtrue[i][phas]);
195 fHisTrackXFOfalse[i][phas]->Add(add.fHisTrackXFOtrue[i][phas]);
196 fHisTrackZFOfalse[i][phas]->Add(add.fHisTrackXFOtrue[i][phas]);
197 fHisTrackXZFOtrue[i][phas]->Add(add.fHisTrackXFOtrue[i][phas]);
198 fHisTrackXZFOfalse[i][phas]->Add(add.fHisTrackXFOtrue[i][phas]);
199 }
200 }
201 }
202 return *this;
203}
204//______________________________________________________________________
205AliITSPlaneEffSPD& AliITSPlaneEffSPD::operator=(const
206 AliITSPlaneEffSPD &s){
207 // Assignment operator
208 // Inputs:
209 // AliITSPlaneEffSPD &s The original class for which
210 // this class is a copy of
211 // Outputs:
212 // none.
213 // Return:
214
215 if(this==&s) return *this;
216 this->~AliITSPlaneEffSPD();
217 new(this) AliITSPlaneEffSPD();
218 s.Copy(*this);
219 return *this;
220}
221//______________________________________________________________________
222void AliITSPlaneEffSPD::Copy(TObject &obj) const {
223 // protected method. copy this to obj
224 AliITSPlaneEff::Copy(obj);
225 AliITSPlaneEffSPD& target = (AliITSPlaneEffSPD &) obj;
226 for(Int_t i=0;i<kNModule*kNChip*(kNClockPhase+1);i++) {
227 target.fFound[i] = fFound[i];
228 target.fTried[i] = fTried[i];
229 }
230 CopyHistos(target);
231 return;
232}
233//_______________________________________________________________________
234void AliITSPlaneEffSPD::CopyHistos(AliITSPlaneEffSPD &target) const {
235 // protected method: copy histos from this to target
236 target.fHis = fHis; // this is redundant only in some cases. Leave as it is.
237 if(fHis) {
238 target.fHisResX=new TH1F*[kNHisto];
239 target.fHisResZ=new TH1F*[kNHisto];
240 target.fHisResXZ=new TH2F*[kNHisto];
241 target.fHisClusterSize=new TH2I*[kNHisto];
242 target.fHisResXclu=new TH1F**[kNHisto];
243 target.fHisResZclu=new TH1F**[kNHisto];
244 target.fHisResXchip=new TH1F**[kNHisto];
245 target.fHisResZchip=new TH1F**[kNHisto];
246 target.fProfResXvsPhi=new TProfile*[kNHisto];
247 target.fProfResZvsDip=new TProfile*[kNHisto];
248 target.fProfResXvsPhiclu=new TProfile**[kNHisto];
249 target.fProfResZvsDipclu=new TProfile**[kNHisto];
250 target.fHisTrackErrX=new TH1F*[kNHisto];
251 target.fHisTrackErrZ=new TH1F*[kNHisto];
252 target.fHisClusErrX=new TH1F*[kNHisto];
253 target.fHisClusErrZ=new TH1F*[kNHisto];
254 target.fHisTrackXFOtrue=new TH1F**[kNHisto];
255 target.fHisTrackZFOtrue=new TH1F**[kNHisto];
256 target.fHisTrackXFOfalse=new TH1F**[kNHisto];
257 target.fHisTrackZFOfalse=new TH1F**[kNHisto];
258 target.fHisTrackXZFOtrue=new TH2F**[kNHisto];
259 target.fHisTrackXZFOfalse=new TH2F**[kNHisto];
260 for(Int_t i=0; i<kNHisto; i++) {
261 target.fHisResX[i] = new TH1F(*fHisResX[i]);
262 target.fHisResZ[i] = new TH1F(*fHisResZ[i]);
263 target.fHisResXZ[i] = new TH2F(*fHisResXZ[i]);
264 target.fHisClusterSize[i] = new TH2I(*fHisClusterSize[i]);
265 target.fHisResXclu[i]=new TH1F*[kNclu];
266 target.fHisResZclu[i]=new TH1F*[kNclu];
267 target.fProfResXvsPhiclu[i]=new TProfile*[kNclu];
268 target.fProfResZvsDipclu[i]=new TProfile*[kNclu];
269 for(Int_t clu=0; clu<kNclu; clu++) { // clu=0 --> cluster size 1
270 target.fHisResXclu[i][clu] = new TH1F(*fHisResXclu[i][clu]);
271 target.fHisResZclu[i][clu] = new TH1F(*fHisResZclu[i][clu]);
272 target.fProfResXvsPhiclu[i][clu] = new TProfile(*fProfResXvsPhiclu[i][clu]);
273 target.fProfResZvsDipclu[i][clu] = new TProfile(*fProfResZvsDipclu[i][clu]);
274 }
275 target.fHisResXchip[i]=new TH1F*[kNChip];
276 target.fHisResZchip[i]=new TH1F*[kNChip];
277 for(Int_t chip=0; chip<kNChip; chip++) {
278 target.fHisResXchip[i][chip] = new TH1F(*fHisResXchip[i][chip]);
279 target.fHisResZchip[i][chip] = new TH1F(*fHisResZchip[i][chip]);
280 }
281 target.fProfResXvsPhi[i] = new TProfile(*fProfResXvsPhi[i]);
282 target.fProfResZvsDip[i] = new TProfile(*fProfResZvsDip[i]);
283 target.fHisTrackErrX[i] = new TH1F(*fHisTrackErrX[i]);
284 target.fHisTrackErrZ[i] = new TH1F(*fHisTrackErrZ[i]);
285 target.fHisClusErrX[i] = new TH1F(*fHisClusErrX[i]);
286 target.fHisClusErrZ[i] = new TH1F(*fHisClusErrZ[i]);
287
288 target.fHisTrackXFOtrue[i]=new TH1F*[kNClockPhase];
289 target.fHisTrackZFOtrue[i]=new TH1F*[kNClockPhase];
290 target.fHisTrackXFOfalse[i]=new TH1F*[kNClockPhase];
291 target.fHisTrackZFOfalse[i]=new TH1F*[kNClockPhase];
292 target.fHisTrackXZFOtrue[i]=new TH2F*[kNClockPhase];
293 target.fHisTrackXZFOfalse[i]=new TH2F*[kNClockPhase];
294 for(Int_t phas=0; phas<kNClockPhase;phas++){
295 target.fHisTrackXFOtrue[i][phas]=new TH1F(*fHisTrackXFOtrue[i][phas]);
296 target.fHisTrackZFOtrue[i][phas]=new TH1F(*fHisTrackZFOtrue[i][phas]);
297 target.fHisTrackXFOfalse[i][phas]=new TH1F(*fHisTrackXFOfalse[i][phas]);
298 target.fHisTrackZFOfalse[i][phas]=new TH1F(*fHisTrackZFOfalse[i][phas]);
299 target.fHisTrackXZFOtrue[i][phas]=new TH2F(*fHisTrackXZFOtrue[i][phas]);
300 target.fHisTrackXZFOfalse[i][phas]=new TH2F(*fHisTrackXZFOfalse[i][phas]);
301 }
302 }
303 }
304return;
305}
306
307//_______________________________________________________________________
308Int_t AliITSPlaneEffSPD::GetMissingTracksForGivenEff(Double_t eff, Double_t RelErr,
309 UInt_t im, UInt_t ic) const {
310
311 // Estimate the number of tracks still to be collected to attain a
312 // given efficiency eff, with relative error RelErr
313 // Inputs:
314 // eff -> Expected efficiency (e.g. those from actual estimate)
315 // RelErr -> tollerance [0,1]
316 // im -> module number [0,239]
317 // ic -> chip number [0,4]
318 // Outputs: none
319 // Return: the estimated n. of tracks
320 //
321if (im>=kNModule || ic>=kNChip)
322 {AliError("GetMissingTracksForGivenEff: you asked for a non existing chip");
323 return -1;}
324else {
325 UInt_t key=GetKey(im,ic);
326 if(key<kNModule*kNChip) return GetNTracksForGivenEff(eff,RelErr)-fTried[key];
327 else return -1;
328}
329}
330//_________________________________________________________________________
331Double_t AliITSPlaneEffSPD::PlaneEff(const UInt_t im,const UInt_t ic, const Bool_t fo, const UInt_t bcm4) const {
332// Compute the efficiency for a basic block,
333// Inputs:
334// im -> module number [0,239]
335// ic -> chip number [0,4]
336// fo -> boolean, true in case of Fast Or studies
337// bcm4 -> for Fast Or: bunch crossing % 4
338if (im>=kNModule || ic>=kNChip)
339 {AliError("PlaneEff(Uint_t,Uint_t): you asked for a non existing chip"); return -1.;}
340if(fo && bcm4>=kNClockPhase)
341 {AliError("PlaneEff(Uint_t,Uint_t): you asked for Fast Or in a wrong phase"); return -1.;}
342Int_t nf=-1;
343Int_t nt=-1;
344if(fo) {
345 AliWarning("PlaneEff: you asked for FO efficiency");
346 UInt_t key=GetKey(im,ic,fo,bcm4);
347 if(key<kNModule*kNChip*(kNClockPhase+1)) {
348 nf=fFound[key];
349 nt=fTried[key];
350 }
351} else {
352 UInt_t key=GetKey(im,ic);
353 if (key<kNModule*kNChip) {
354 nf=fFound[key];
355 nt=fTried[key];
356 }
357}
358return AliITSPlaneEff::PlaneEff(nf,nt);
359}
360//_________________________________________________________________________
361Double_t AliITSPlaneEffSPD::ErrPlaneEff(const UInt_t im,const UInt_t ic, const Bool_t fo, const UInt_t bcm4) const {
362 // Compute the statistical error on efficiency for a basic block,
363 // using binomial statistics
364 // Inputs:
365 // im -> module number [0,239]
366 // ic -> chip number [0,4]
367// fo -> boolean, true in case of Fast Or studies
368// bcm4 -> for Fast Or: bunch crossing % 4
369if (im>=kNModule || ic>=kNChip)
370 {AliError("ErrPlaneEff(Uint_t,Uint_t): you asked for a non existing chip"); return -1.;}
371if(fo && bcm4>=kNClockPhase)
372 {AliError("PlaneEff(Uint_t,Uint_t): you asked for Fast Or in a wrong phase"); return -1.;}
373Int_t nf=-1;
374Int_t nt=-1;
375if(fo) {
376 AliWarning("ErrPlaneEff: you asked for FO efficiency");
377 UInt_t key=GetKey(im,ic,fo,bcm4);
378 if(key<kNModule*kNChip*(kNClockPhase+1)) {
379 nf=fFound[key];
380 nt=fTried[key];
381 }
382} else {
383 UInt_t key=GetKey(im,ic);
384 if (key<kNModule*kNChip) {
385 nf=fFound[key];
386 nt=fTried[key];
387 }
388}
389return AliITSPlaneEff::ErrPlaneEff(nf,nt);
390}
391//_________________________________________________________________________
392Bool_t AliITSPlaneEffSPD::UpDatePlaneEff(const Bool_t Kfound,
393 const UInt_t im, const UInt_t ic, const Bool_t fo, const UInt_t bcm4) {
394 // Update efficiency for a basic block
395if (im>=kNModule || ic>=kNChip)
396 {AliError("UpDatePlaneEff: you asked for a non existing chip"); return kFALSE;}
397if(fo && bcm4>=kNClockPhase)
398 {AliError("UpDatePlaneEff: you asked for Fast Or in a wrong phase"); return kFALSE;}
399if (!fo) {
400 UInt_t key=GetKey(im,ic);
401 if(key<kNModule*kNChip) {
402 fTried[key]++;
403 if(Kfound) fFound[key]++;
404 return kTRUE;
405 }
406}
407else {
408 UInt_t key=GetKey(im,ic,fo,bcm4);
409 if(key<kNModule*kNChip*(kNClockPhase+1)) {
410 fTried[key]++;
411 if(Kfound) fFound[key]++;
412 return kTRUE;
413 }
414}
415return kFALSE;
416}
417//_________________________________________________________________________
418UInt_t AliITSPlaneEffSPD::GetChipFromCol(const UInt_t col) const {
419 // get chip given the column
420if(col>=kNCol*kNChip)
421 {AliDebug(1,Form("GetChipFromCol: you asked for a non existing column %d",col)); return 10;}
422return col/kNCol;
423}
424//__________________________________________________________________________
425UInt_t AliITSPlaneEffSPD::GetKey(const UInt_t mod, const UInt_t chip, const Bool_t FO, const UInt_t BCm4) const {
426 // get key given a basic block
427UInt_t key=99999;
428if(mod>=kNModule || chip>=kNChip)
429 {AliDebug(1,"GetKey: you asked for a non existing block"); return 99999;}
430key = mod*kNChip+chip;
431if(FO) {
432 if(BCm4>= kNClockPhase) {AliDebug(1,"GetKey: you have asked Fast OR and a non exisiting BC modulo 4"); return 99999;}
433 key += kNModule*kNChip*(BCm4+1);
434}
435return key;
436}
437//__________________________________________________________________________
438UInt_t AliITSPlaneEffSPD::SwitchChipKeyNumbering(UInt_t key) const {
439
440// methods to switch from offline chip key numbering
441// to online Raw Stream chip numbering and viceversa.
442// Used for Fast-Or studies.
443// Implemented by valerio.altini@ba.infn.it
444
445if(key>=kNModule*kNChip*(kNClockPhase+1))
446 {AliDebug(1,"SwitchChipKeyNumbering: you asked for a non existing key"); return 99999;}
447UInt_t mod=9999,chip=9999,phase=9999;
448GetModAndChipFromKey(key,mod,chip);
449if(mod<kNModuleLy1) chip = kNChip-(chip+1);
450if(IsForFO(key))phase = GetBCm4FromKey(key);
451
452return GetKey(mod,chip,IsForFO(key),phase);
453
454}
455//__________________________________________________________________________
456UInt_t AliITSPlaneEffSPD::GetModFromKey(const UInt_t key) const {
457 // get mod. from key
458if(key>=kNModule*kNChip*(kNClockPhase+1))
459 {AliError("GetModFromKey: you asked for a non existing key"); return 9999;}
460return (key%(kNModule*kNChip))/kNChip;
461}
462//__________________________________________________________________________
463UInt_t AliITSPlaneEffSPD::GetChipFromKey(const UInt_t key) const {
464 // retrieves chip from key
465if(key>=kNModule*kNChip*(kNClockPhase+1))
466 {AliError("GetChipFromKey: you asked for a non existing key"); return 999;}
467return ((key%(kNModule*kNChip))%(kNModule*kNChip))%kNChip;
468}
469//__________________________________________________________________________
470UInt_t AliITSPlaneEffSPD::GetBCm4FromKey(const UInt_t key) const {
471 // retrieves the "Bunch Crossing modulo 4" (for Fast Or studies)
472if(key>=kNModule*kNChip*(kNClockPhase+1))
473 {AliError("GetBCm4FromKey: you asked for a non existing key"); return 999;}
474if(key<kNModule*kNChip)
475 {AliDebug(1,"GetBCm4FromKey: key is below 1200, why are you asking for FO related stuff"); return 999;}
476
477return key/(kNModule*kNChip) - 1 ;
478}
479//__________________________________________________________________________
480Bool_t AliITSPlaneEffSPD::IsForFO(const UInt_t key) const {
481if(key>=kNModule*kNChip) return kTRUE;
482else return kFALSE;
483}
484//__________________________________________________________________________
485void AliITSPlaneEffSPD::GetModAndChipFromKey(const UInt_t key,UInt_t& mod,UInt_t& chip) const {
486 // get module and chip from a key
487if(key>=kNModule*kNChip*(kNClockPhase+1))
488 {AliError("GetModAndChipFromKey: you asked for a non existing key");
489 mod=9999;
490 chip=999;
491 return;}
492mod=GetModFromKey(key);
493chip=GetChipFromKey(key);
494return;
495}
496//____________________________________________________________________________
497Double_t AliITSPlaneEffSPD::LivePlaneEff(UInt_t key) const {
498 // returns plane efficieny after adding the fraction of sensor which is bad
499if(key>=kNModule*kNChip)
500 {AliError("LivePlaneEff: you asked for a non existing key");
501 return -1.;}
502Double_t leff=AliITSPlaneEff::LivePlaneEff(0); // this just for the Warning
503leff=PlaneEff(key)+GetFracBad(key);
504return leff>1?1:leff;
505}
506//____________________________________________________________________________
507Double_t AliITSPlaneEffSPD::ErrLivePlaneEff(UInt_t key) const {
508 // returns error on live plane efficiency
509if(key>=kNModule*kNChip)
510 {AliError("ErrLivePlaneEff: you asked for a non existing key");
511 return -1.;}
512Int_t nf=fFound[key];
513Double_t triedInLive=GetFracLive(key)*fTried[key];
514Int_t nt=TMath::Max(nf,TMath::Nint(triedInLive));
515return AliITSPlaneEff::ErrPlaneEff(nf,nt); // for the time being: to be checked
516}
517//_____________________________________________________________________________
518Double_t AliITSPlaneEffSPD::GetFracLive(const UInt_t key) const {
519 // returns the fraction of the sensor which is OK
520if(key>=kNModule*kNChip)
521 {AliError("GetFracLive: you asked for a non existing key");
522 return -1.;}
523 // Compute the fraction of bad (dead+noisy) detector
524UInt_t dead=0,noisy=0;
525GetDeadAndNoisyInChip(key,dead,noisy);
526Double_t live=dead+noisy;
527live/=(kNRow*kNCol);
528return 1.-live;
529}
530//_____________________________________________________________________________
531void AliITSPlaneEffSPD::GetDeadAndNoisyInChip(const UInt_t key,
532 UInt_t& nrDeadInChip, UInt_t& nrNoisyInChip) const {
533 // returns the number of dead and noisy pixels
534nrDeadInChip=0;
535nrNoisyInChip=0;
536if(key>=kNModule*kNChip)
537 {AliError("GetDeadAndNoisyInChip: you asked for a non existing key");
538 return;}
539 // Compute the number of bad (dead+noisy) pixel in a chip
540//
541if(!fInitCDBCalled)
542 {AliError("GetDeadAndNoisyInChip: CDB not inizialized: call InitCDB first");
543 return;};
544AliCDBManager* man = AliCDBManager::Instance();
545// retrieve map of dead Pixel
546AliCDBEntry *cdbSPDDead = man->Get("ITS/Calib/SPDDead", fRunNumber);
547TObjArray* spdDead;
548if(cdbSPDDead) {
549 spdDead = (TObjArray*)cdbSPDDead->GetObject();
550 if(!spdDead)
551 {AliError("GetDeadAndNoisyInChip: SPDDead not found in CDB");
552 return;}
553} else {
554 AliError("GetDeadAndNoisyInChip: did not find Calib/SPDDead.");
555 return;
556}
557// retrieve map of sparse dead Pixel
558AliCDBEntry *cdbSPDSparseDead = man->Get("ITS/Calib/SPDSparseDead", fRunNumber);
559TObjArray* spdSparseDead;
560if(cdbSPDSparseDead) {
561 spdSparseDead = (TObjArray*)cdbSPDSparseDead->GetObject();
562 if(!spdSparseDead)
563 {AliError("GetDeadAndNoisyInChip: SPDSparseDead not found in CDB");
564 return;}
565} else {
566 AliError("GetDeadAndNoisyInChip: did not find Calib/SPDSparseDead.");
567 return;
568}
569
570// retrieve map of noisy Pixel
571AliCDBEntry *cdbSPDNoisy = man->Get("ITS/Calib/SPDNoisy", fRunNumber);
572TObjArray* spdNoisy;
573if(cdbSPDNoisy) {
574 spdNoisy = (TObjArray*)cdbSPDNoisy->GetObject();
575 if(!spdNoisy)
576 {AliError("GetDeadAndNoisyInChip: SPDNoisy not found in CDB");
577 return;}
578} else {
579 AliError("GetDeadAndNoisyInChip: did not find Calib/SPDNoisy.");
580 return;
581}
582//
583UInt_t mod=GetModFromKey(key);
584UInt_t chip=GetChipFromKey(key);
585// count number of dead
586AliITSCalibrationSPD* calibSPD=(AliITSCalibrationSPD*) spdDead->At(mod);
587UInt_t nrDead = calibSPD->GetNrBad();
588for (UInt_t index=0; index<nrDead; index++) {
589 if(GetChipFromCol(calibSPD->GetBadColAt(index))==chip) nrDeadInChip++;
590}
591// add the number of sparse dead to the previous dead
592calibSPD=(AliITSCalibrationSPD*) spdSparseDead->At(mod);
593UInt_t nrSparseDead = calibSPD->GetNrBad();
594for (UInt_t index=0; index<nrSparseDead; index++) {
595 if(GetChipFromCol(calibSPD->GetBadColAt(index))==chip) nrDeadInChip++;
596}
597calibSPD=(AliITSCalibrationSPD*) spdNoisy->At(mod);
598UInt_t nrNoisy = calibSPD->GetNrBad();
599for (UInt_t index=0; index<nrNoisy; index++) {
600 if(GetChipFromCol(calibSPD->GetBadColAt(index))==chip) nrNoisyInChip++;
601}
602return;
603}
604//_____________________________________________________________________________
605Double_t AliITSPlaneEffSPD::GetFracBad(const UInt_t key) const {
606 // returns 1-fractional live
607if(key>=kNModule*kNChip)
608 {AliError("GetFracBad: you asked for a non existing key");
609 return -1.;}
610return 1.-GetFracLive(key);
611}
612//_____________________________________________________________________________
613Bool_t AliITSPlaneEffSPD::WriteIntoCDB() const {
614// write onto CDB
615if(!fInitCDBCalled)
616 {AliError("WriteIntoCDB: CDB not inizialized. Call InitCDB first");
617 return kFALSE;}
618// to be written properly: now only for debugging
619 AliCDBMetaData *md= new AliCDBMetaData(); // metaData describing the object
620 //md->SetObjectClassName("AliITSPlaneEff");
621 md->SetResponsible("Giuseppe Eugenio Bruno");
622 md->SetBeamPeriod(0);
623 md->SetAliRootVersion("head 19/11/07"); //root version
624 AliCDBId id("ITS/PlaneEff/PlaneEffSPD",0,AliCDBRunRange::Infinity());
625 AliITSPlaneEffSPD eff;
626 eff=*this;
627 Bool_t r=AliCDBManager::Instance()->GetDefaultStorage()->Put(&eff,id,md);
628 delete md;
629 return r;
630}
631//_____________________________________________________________________________
632Bool_t AliITSPlaneEffSPD::ReadFromCDB() {
633// read from CDB
634if(!fInitCDBCalled)
635 {AliError("ReadFromCDB: CDB not inizialized. Call InitCDB first");
636 return kFALSE;}
637AliCDBEntry *cdbEntry = AliCDBManager::Instance()->Get("ITS/PlaneEff/PlaneEffSPD",fRunNumber);
638if(!cdbEntry) return kFALSE;
639AliITSPlaneEffSPD* eff= (AliITSPlaneEffSPD*)cdbEntry->GetObject();
640if(this==eff) return kFALSE;
641if(fHis) CopyHistos(*eff); // If histos already exist then copy them to eff
642eff->Copy(*this); // copy everything (statistics and histos) from eff to this
643return kTRUE;
644}
645//_____________________________________________________________________________
646Bool_t AliITSPlaneEffSPD::AddFromCDB(AliCDBId *cdbId) {
647AliCDBEntry *cdbEntry=0;
648if (!cdbId) {
649 if(!fInitCDBCalled)
650 {AliError("ReadFromCDB: CDB not inizialized. Call InitCDB first"); return kFALSE;}
651 cdbEntry = AliCDBManager::Instance()->Get("ITS/PlaneEff/PlaneEffSPD",fRunNumber);
652} else {
653 cdbEntry = AliCDBManager::Instance()->Get(*cdbId);
654}
655if(!cdbEntry) return kFALSE;
656AliITSPlaneEffSPD* eff= (AliITSPlaneEffSPD*)cdbEntry->GetObject();
657*this+=*eff;
658return kTRUE;
659}
660//_____________________________________________________________________________
661UInt_t AliITSPlaneEffSPD::GetKeyFromDetLocCoord(Int_t ilay, Int_t idet,
662 Float_t, Float_t locz) const {
663// method to locate a basic block from Detector Local coordinate (to be used in tracking)
664UInt_t key=999999;
665if(ilay<0 || ilay>1)
666 {AliError("GetKeyFromDetLocCoord: you asked for a non existing layer");
667 return key;}
668if(ilay==0 && (idet<0 || idet>79))
669 {AliError("GetKeyFromDetLocCoord: you asked for a non existing detector");
670 return key;}
671if(ilay==1 && (idet<0 || idet>159))
672 {AliError("GetKeyFromDetLocCoord: you asked for a non existing detector");
673 return key;}
674
675UInt_t mod=idet;
676if(ilay==1) mod+=80;
677key=GetKey(mod,GetChipFromCol(GetColFromLocZ(locz)));
678return key;
679}
680//_____________________________________________________________________________
681UInt_t AliITSPlaneEffSPD::GetColFromLocZ(Float_t zloc) const {
682// method to retrieve column number from the local z coordinate
683 UInt_t col=0;
684 AliITSsegmentationSPD spd;
685 Int_t ix,iz;
686 if(spd.LocalToDet(0,zloc,ix,iz)) col+=iz;
687 else {
688 AliDebug(1,Form("cannot compute column number from local z=%f",zloc));
689 col=99999;}
690 return col;
691/*
692const Float_t kconv = 1.0E-04; // converts microns to cm.
693Float_t bz[160];
694for(Int_t i=000;i<160;i++) bz[i] = 425.0; // most are 425 microns except below
695bz[ 31] = bz[ 32] = 625.0; // first chip boundry
696bz[ 63] = bz[ 64] = 625.0; // first chip boundry
697bz[ 95] = bz[ 96] = 625.0; // first chip boundry
698bz[127] = bz[128] = 625.0; // first chip boundry
699//
700Int_t j=-1;
701Float_t dz=0;
702for(Int_t i=000;i<160;i++) dz+=bz[i];
703dz = -0.5*kconv*dz;
704if(zloc<dz || zloc>-1*dz) { // outside z range
705 AliDebug(1,Form("GetColFromLocZ: cannot compute column number from local z=%f",zloc));
706 return 99999;}
707for(j=0;j<160;j++){
708 dz += kconv*bz[j];
709 if(zloc<dz) break;
710} // end for j
711col+=j;
712//
713return col;
714*/
715}
716//________________________________________________________
717Bool_t AliITSPlaneEffSPD::GetBlockBoundaries(const UInt_t key, Float_t& xmn,Float_t& xmx,
718 Float_t& zmn,Float_t& zmx) const {
719//
720// This method return the geometrical boundaries of the active volume of a given
721// basic block, in the detector reference system.
722// Input: unique key to locate a basic block.
723//
724// Output: Ymin, Ymax, Zmin, Zmax of a basic block (chip for SPD)
725// Return: kTRUE if computation was succesfully, kFALSE otherwise
726//
727if(key>=kNModule*kNChip)
728 {AliDebug(1,"GetBlockBoundaries: you asked for a non existing key"); return kFALSE;}
729UInt_t chip=GetChipFromKey(key);
730zmn=GetLocZFromCol(chip*kNCol);
731zmx=GetLocZFromCol((chip+1)*kNCol);
732xmn=GetLocXFromRow(0);
733xmx=GetLocXFromRow(kNRow);
734//
735Float_t tmp=zmn;
736if(zmx<zmn) {zmn=zmx; zmx=tmp;}
737tmp=xmn;
738if(xmx<xmn) {xmn=xmx; xmx=tmp;}
739return kTRUE;
740}
741//________________________________________________________
742Float_t AliITSPlaneEffSPD::GetLocXFromRow(const UInt_t row) const {
743//
744// This method return the local (i.e. detector reference system) lower x coordinate
745// of the row. To get the central value of a given row, you can do
746// 1/2*[LocXFromRow(row)+LocXFromRow(row+1)].
747//
748// Input: row number in the range [0,kNRow]
749// Output: lower local X coordinate of this row.
750//
751if(row>kNRow) // not >= ! allow also computation of upper limit of the last row.
752 {AliError("LocYFromRow: you asked for a non existing row"); return 9999999.;}
753// Use only AliITSsegmentationSPD
754AliITSsegmentationSPD spd;
755Double_t dummy,x;
756if(row==kNRow) spd.CellBoundries((Int_t)row-1,0,dummy,x,dummy,dummy);
757else spd.CellBoundries((Int_t)row,0,x,dummy,dummy,dummy);
758return (Float_t)x;
759
760}
761//________________________________________________________
762Float_t AliITSPlaneEffSPD::GetLocZFromCol(const UInt_t col) const {
763//
764// This method return the local (i.e. detector reference system) lower Z coordinate
765// of the column. To get the central value of a given column, you can do
766// 1/2*[LocZFromCol(col)+LocZFromCol(col+1)].
767//
768// Input: col number in the range [0,kNChip*kNCol]
769// Output: lower local Y coordinate of this row.
770//
771if(col>kNChip*kNCol) // not >= ! allow also computation of upper limit of the last column
772 {AliError("LocZFromCol: you asked for a non existing column"); return 9999999.;}
773// Use only AliITSsegmentationSPD
774AliITSsegmentationSPD spd;
775Double_t dummy,y;
776if(col==kNChip*kNCol) spd.CellBoundries(0,(Int_t)col-1,dummy,dummy,dummy,y);
777else spd.CellBoundries(0,(Int_t)col,dummy,dummy,y,dummy);
778return (Float_t)y;
779
780}
781//__________________________________________________________
782void AliITSPlaneEffSPD::InitHistos() {
783 // for the moment let's create the histograms
784 // module by module
785 TString histnameResX="HistResX_mod_",aux;
786 TString histnameResZ="HistResZ_mod_";
787 TString histnameResXZ="HistResXZ_mod_";
788 TString histnameClusterType="HistClusterType_mod_";
789 TString histnameResXclu="HistResX_mod_";
790 TString histnameResZclu="HistResZ_mod_";
791 TString histnameResXchip="HistResX_mod_";
792 TString histnameResZchip="HistResZ_mod_";
793 TString profnameResXvsPhi="ProfResXvsPhi_mod_";
794 TString profnameResZvsDip="ProfResZvsDip_mod_";
795 TString profnameResXvsPhiclu="ProfResXvsPhi_mod_";
796 TString profnameResZvsDipclu="ProfResZvsDip_mod_";
797 TString histnameTrackErrX="HistTrackErrX_mod_";
798 TString histnameTrackErrZ="HistTrackErrZ_mod_";
799 TString histnameClusErrX="HistClusErrX_mod_";
800 TString histnameClusErrZ="HistClusErrZ_mod_";
801 TString histnameTrackXFOtrue="HistTrackXFOok_mod_";
802 TString histnameTrackZFOtrue="HistTrackZFOok_mod_";
803 TString histnameTrackXFOfalse="HistTrackXFOko_mod_";
804 TString histnameTrackZFOfalse="HistTrackZFOko_mod_";
805 TString histnameTrackXZFOtrue="HistTrackZvsXFOok_mod_";
806 TString histnameTrackXZFOfalse="HistTrackZvsXFOko_mod_";
807//
808
809 TH1::AddDirectory(kFALSE);
810
811 fHisResX=new TH1F*[kNHisto];
812 fHisResZ=new TH1F*[kNHisto];
813 fHisResXZ=new TH2F*[kNHisto];
814 fHisClusterSize=new TH2I*[kNHisto];
815 fHisResXclu=new TH1F**[kNHisto];
816 fHisResZclu=new TH1F**[kNHisto];
817 fHisResXchip=new TH1F**[kNHisto];
818 fHisResZchip=new TH1F**[kNHisto];
819 fProfResXvsPhi=new TProfile*[kNHisto];
820 fProfResZvsDip=new TProfile*[kNHisto];
821 fProfResXvsPhiclu=new TProfile**[kNHisto];
822 fProfResZvsDipclu=new TProfile**[kNHisto];
823 fHisTrackErrX=new TH1F*[kNHisto];
824 fHisTrackErrZ=new TH1F*[kNHisto];
825 fHisClusErrX=new TH1F*[kNHisto];
826 fHisClusErrZ=new TH1F*[kNHisto];
827 fHisTrackXFOtrue=new TH1F**[kNHisto];
828 fHisTrackZFOtrue=new TH1F**[kNHisto];
829 fHisTrackXFOfalse=new TH1F**[kNHisto];
830 fHisTrackZFOfalse=new TH1F**[kNHisto];
831 fHisTrackXZFOtrue=new TH2F**[kNHisto];
832 fHisTrackXZFOfalse=new TH2F**[kNHisto];
833
834 for (Int_t nhist=0;nhist<kNHisto;nhist++){
835 aux=histnameResX;
836 aux+=nhist;
837 fHisResX[nhist]=new TH1F("histname","histname",1600,-0.32,0.32); // +- 3200 micron; 1 bin=4 micron
838 fHisResX[nhist]->SetName(aux.Data());
839 fHisResX[nhist]->SetTitle(aux.Data());
840
841 aux=histnameResZ;
842 aux+=nhist;
843 fHisResZ[nhist]=new TH1F("histname","histname",1200,-0.48,0.48); // +-4800 micron; 1 bin=8 micron
844 fHisResZ[nhist]->SetName(aux.Data());
845 fHisResZ[nhist]->SetTitle(aux.Data());
846
847 aux=histnameResXZ;
848 aux+=nhist;
849 fHisResXZ[nhist]=new TH2F("histname","histname",80,-0.16,0.16,80,-0.32,0.32); // binning:
850 fHisResXZ[nhist]->SetName(aux.Data()); // 40 micron in x;
851 fHisResXZ[nhist]->SetTitle(aux.Data()); // 80 micron in z;
852
853 aux=histnameClusterType;
854 aux+=nhist;
855 fHisClusterSize[nhist]=new TH2I("histname","histname",10,0.5,10.5,10,0.5,10.5);
856 fHisClusterSize[nhist]->SetName(aux.Data());
857 fHisClusterSize[nhist]->SetTitle(aux.Data());
858
859 fHisResXclu[nhist]=new TH1F*[kNclu];
860 fHisResZclu[nhist]=new TH1F*[kNclu];
861 fHisTrackXFOtrue[nhist]=new TH1F*[kNClockPhase];
862 fHisTrackZFOtrue[nhist]=new TH1F*[kNClockPhase];
863 fHisTrackXFOfalse[nhist]=new TH1F*[kNClockPhase];
864 fHisTrackZFOfalse[nhist]=new TH1F*[kNClockPhase];
865 fHisTrackXZFOtrue[nhist]=new TH2F*[kNClockPhase];
866 fHisTrackXZFOfalse[nhist]=new TH2F*[kNClockPhase];
867
868 for(Int_t clu=0; clu<kNclu; clu++) { // clu=0 --> cluster size 1
869 aux=histnameResXclu;
870 aux+=nhist;
871 aux+="_clu_";
872 aux+=clu+1; // clu=0 --> cluster size 1
873 fHisResXclu[nhist][clu]=new TH1F("histname","histname",1600,-0.32,0.32); // +- 3200 micron; 1 bin=4 micron
874 fHisResXclu[nhist][clu]->SetName(aux.Data());
875 fHisResXclu[nhist][clu]->SetTitle(aux.Data());
876
877 aux=histnameResZclu;
878 aux+=nhist;
879 aux+="_clu_";
880 aux+=clu+1; // clu=0 --> cluster size 1
881 fHisResZclu[nhist][clu]=new TH1F("histname","histname",1200,-0.48,0.48); // +-4800 micron; 1 bin=8 micron
882 fHisResZclu[nhist][clu]->SetName(aux.Data());
883 fHisResZclu[nhist][clu]->SetTitle(aux.Data());
884 }
885
886 fHisResXchip[nhist]=new TH1F*[kNChip];
887 fHisResZchip[nhist]=new TH1F*[kNChip];
888 for(Int_t chip=0; chip<kNChip; chip++) {
889 aux=histnameResXchip;
890 aux+=nhist;
891 aux+="_chip_";
892 aux+=chip;
893 fHisResXchip[nhist][chip]=new TH1F("histname","histname",800,-0.32,0.32); // +- 3200 micron; 1 bin=8 micron
894 fHisResXchip[nhist][chip]->SetName(aux.Data());
895 fHisResXchip[nhist][chip]->SetTitle(aux.Data());
896
897 aux=histnameResZchip;
898 aux+=nhist;
899 aux+="_chip_";
900 aux+=chip;
901 fHisResZchip[nhist][chip]=new TH1F("histname","histname",300,-0.48,0.48); // +-4800 micron; 1 bin=32 micron
902 fHisResZchip[nhist][chip]->SetName(aux.Data());
903 fHisResZchip[nhist][chip]->SetTitle(aux.Data());
904 }
905
906 aux=histnameTrackErrX;
907 aux+=nhist;
908 fHisTrackErrX[nhist]=new TH1F("histname","histname",400,0.,0.32); // 0-3200 micron; 1 bin=8 micron
909 fHisTrackErrX[nhist]->SetName(aux.Data());
910 fHisTrackErrX[nhist]->SetTitle(aux.Data());
911
912 aux=histnameTrackErrZ;
913 aux+=nhist;
914 fHisTrackErrZ[nhist]=new TH1F("histname","histname",200,0.,0.32); // 0-3200 micron; 1 bin=16 micron
915 fHisTrackErrZ[nhist]->SetName(aux.Data());
916 fHisTrackErrZ[nhist]->SetTitle(aux.Data());
917
918 aux=histnameClusErrX;
919 aux+=nhist;
920 fHisClusErrX[nhist]=new TH1F("histname","histname",400,0.,0.08); // 0-800 micron; 1 bin=2 micron
921 fHisClusErrX[nhist]->SetName(aux.Data());
922 fHisClusErrX[nhist]->SetTitle(aux.Data());
923
924 aux=histnameClusErrZ;
925 aux+=nhist;
926 fHisClusErrZ[nhist]=new TH1F("histname","histname",400,0.,0.32); // 0-3200 micron; 1 bin=8 micron
927 fHisClusErrZ[nhist]->SetName(aux.Data());
928 fHisClusErrZ[nhist]->SetTitle(aux.Data());
929
930 aux=profnameResXvsPhi;
931 aux+=nhist;
932 fProfResXvsPhi[nhist]=new TProfile("histname","histname",40,-40.,40.0); // binning: range: -40°- 40°
933 fProfResXvsPhi[nhist]->SetName(aux.Data()); // bin width: 2°
934 fProfResXvsPhi[nhist]->SetTitle(aux.Data());
935
936 aux=profnameResZvsDip;
937 aux+=nhist;
938 fProfResZvsDip[nhist]=new TProfile("histname","histname",48,-72.,72.0); // binning: range: -70°-4°
939 fProfResZvsDip[nhist]->SetName(aux.Data()); // bin width: 3°
940 fProfResZvsDip[nhist]->SetTitle(aux.Data());
941
942 fProfResXvsPhiclu[nhist]=new TProfile*[kNclu];
943 fProfResZvsDipclu[nhist]=new TProfile*[kNclu];
944 for(Int_t clu=0; clu<kNclu; clu++) { // clu=0 --> cluster size 1
945 aux=profnameResXvsPhiclu;
946 aux+=nhist;
947 aux+="_clu_";
948 aux+=clu+1; // clu=0 --> cluster size 1
949 fProfResXvsPhiclu[nhist][clu]=new TProfile("histname","histname",40,-40.,40.0); // binning: range: -40°- 40
950 fProfResXvsPhiclu[nhist][clu]->SetName(aux.Data()); // bin width: 2°
951 fProfResXvsPhiclu[nhist][clu]->SetTitle(aux.Data());
952
953 aux=profnameResZvsDipclu;
954 aux+=nhist;
955 aux+="_clu_";
956 aux+=clu+1; // clu=0 --> cluster size 1
957 fProfResZvsDipclu[nhist][clu]= new TProfile("histname","histname",48,-72.,72.0); // binning: range: -70°-7°
958 fProfResZvsDipclu[nhist][clu]->SetName(aux.Data()); // bin width: 3°
959 fProfResZvsDipclu[nhist][clu]->SetTitle(aux.Data());
960 }
961
962 fHisTrackXFOtrue[nhist]=new TH1F*[kNClockPhase];
963 fHisTrackZFOtrue[nhist]=new TH1F*[kNClockPhase];
964 fHisTrackXFOfalse[nhist]=new TH1F*[kNClockPhase];
965 fHisTrackZFOfalse[nhist]=new TH1F*[kNClockPhase];
966 fHisTrackXZFOtrue[nhist]=new TH2F*[kNClockPhase];
967 fHisTrackXZFOfalse[nhist]=new TH2F*[kNClockPhase];
968 for(Int_t phas=0; phas<kNClockPhase;phas++){
969 aux=histnameTrackXFOtrue;
970 aux+=nhist;
971 aux+="_BCmod4_";
972 aux+=phas;
973 fHisTrackXFOtrue[nhist][phas]=new TH1F("histname","histname",128,-0.64,0.64); // +- 6.4 mm; 1 bin=0.1 mm
974 fHisTrackXFOtrue[nhist][phas]->SetName(aux.Data());
975 fHisTrackXFOtrue[nhist][phas]->SetTitle(aux.Data());
976
977 aux=histnameTrackZFOtrue;
978 aux+=nhist;
979 aux+="_BCmod4_";
980 aux+=phas;
981 fHisTrackZFOtrue[nhist][phas]=new TH1F("histname","histname",350,-3.5,3.5); // +- 35. mm; 1 bin=0.2 mm
982 fHisTrackZFOtrue[nhist][phas]->SetName(aux.Data());
983 fHisTrackZFOtrue[nhist][phas]->SetTitle(aux.Data());
984
985 aux=histnameTrackXFOfalse;
986 aux+=nhist;
987 aux+="_BCmod4_";
988 aux+=phas;
989 fHisTrackXFOfalse[nhist][phas]=new TH1F("histname","histname",128,-0.64,0.64); // +- 6.4 mm; 1 bin=0.1 mm
990 fHisTrackXFOfalse[nhist][phas]->SetName(aux.Data());
991 fHisTrackXFOfalse[nhist][phas]->SetTitle(aux.Data());
992
993 aux=histnameTrackZFOfalse;
994 aux+=nhist;
995 aux+="_BCmod4_";
996 aux+=phas;
997 fHisTrackZFOfalse[nhist][phas]=new TH1F("histname","histname",350,-3.5,3.5); // +- 35. mm; 1 bin=0.2 mm
998 fHisTrackZFOfalse[nhist][phas]->SetName(aux.Data());
999 fHisTrackZFOfalse[nhist][phas]->SetTitle(aux.Data());
1000
1001 aux=histnameTrackXZFOtrue;
1002 aux+=nhist;
1003 aux+="_BCmod4_";
1004 aux+=phas;
1005 fHisTrackXZFOtrue[nhist][phas]=new TH2F("histname","histname",22,-3.5,3.5,32,-0.64,0.64); // localZ +- 35. mm; 1 bin=3.2 mm
1006 fHisTrackXZFOtrue[nhist][phas]->SetName(aux.Data()); // localX +- 6.4 mm; 1 bin=0.4 mm
1007 fHisTrackXZFOtrue[nhist][phas]->SetTitle(aux.Data());
1008
1009 aux=histnameTrackXZFOfalse;
1010 aux+=nhist;
1011 aux+="_BCmod4_";
1012 aux+=phas;
1013 fHisTrackXZFOfalse[nhist][phas]=new TH2F("histname","histname",22,-3.5,3.5,32,-0.64,0.64); // localZ +- 35. mm; 1 bin=3.2 mm
1014 fHisTrackXZFOfalse[nhist][phas]->SetName(aux.Data()); // localX +- 6.4 mm; 1 bin=0.4 mm
1015 fHisTrackXZFOfalse[nhist][phas]->SetTitle(aux.Data());
1016 }
1017 } // end loop on module
1018
1019 TH1::AddDirectory(kTRUE);
1020
1021return;
1022}
1023//__________________________________________________________
1024void AliITSPlaneEffSPD::DeleteHistos() {
1025 if(fHisResX) {
1026 for (Int_t i=0; i<kNHisto; i++ ) delete fHisResX[i];
1027 delete [] fHisResX; fHisResX=0;
1028 }
1029 if(fHisResZ) {
1030 for (Int_t i=0; i<kNHisto; i++ ) delete fHisResZ[i];
1031 delete [] fHisResZ; fHisResZ=0;
1032 }
1033 if(fHisResXZ) {
1034 for (Int_t i=0; i<kNHisto; i++ ) delete fHisResXZ[i];
1035 delete [] fHisResXZ; fHisResXZ=0;
1036 }
1037 if(fHisClusterSize) {
1038 for (Int_t i=0; i<kNHisto; i++ ) delete fHisClusterSize[i];
1039 delete [] fHisClusterSize; fHisClusterSize=0;
1040 }
1041 if(fHisResXclu) {
1042 for (Int_t i=0; i<kNHisto; i++ ) {
1043 for (Int_t clu=0; clu<kNclu; clu++) if (fHisResXclu[i][clu]) delete fHisResXclu[i][clu];
1044 delete [] fHisResXclu[i];
1045 }
1046 delete [] fHisResXclu;
1047 fHisResXclu = 0;
1048 }
1049 if(fHisResZclu) {
1050 for (Int_t i=0; i<kNHisto; i++ ) {
1051 for (Int_t clu=0; clu<kNclu; clu++) if (fHisResZclu[i][clu]) delete fHisResZclu[i][clu];
1052 delete [] fHisResZclu[i];
1053 }
1054 delete [] fHisResZclu;
1055 fHisResZclu = 0;
1056 }
1057 if(fHisResXchip) {
1058 for (Int_t i=0; i<kNHisto; i++ ) {
1059 for (Int_t chip=0; chip<kNChip; chip++) if (fHisResXchip[i][chip]) delete fHisResXchip[i][chip];
1060 delete [] fHisResXchip[i];
1061 }
1062 delete [] fHisResXchip;
1063 fHisResXchip = 0;
1064 }
1065 if(fHisResZchip) {
1066 for (Int_t i=0; i<kNHisto; i++ ) {
1067 for (Int_t chip=0; chip<kNChip; chip++) if (fHisResZchip[i][chip]) delete fHisResZchip[i][chip];
1068 delete [] fHisResZchip[i];
1069 }
1070 delete [] fHisResZchip;
1071 fHisResZchip = 0;
1072 }
1073 if(fHisTrackErrX) {
1074 for (Int_t i=0; i<kNHisto; i++ ) delete fHisTrackErrX[i];
1075 delete [] fHisTrackErrX; fHisTrackErrX=0;
1076 }
1077 if(fHisTrackErrZ) {
1078 for (Int_t i=0; i<kNHisto; i++ ) delete fHisTrackErrZ[i];
1079 delete [] fHisTrackErrZ; fHisTrackErrZ=0;
1080 }
1081 if(fHisClusErrX) {
1082 for (Int_t i=0; i<kNHisto; i++ ) delete fHisClusErrX[i];
1083 delete [] fHisClusErrX; fHisClusErrX=0;
1084 }
1085 if(fHisClusErrZ) {
1086 for (Int_t i=0; i<kNHisto; i++ ) delete fHisClusErrZ[i];
1087 delete [] fHisClusErrZ; fHisClusErrZ=0;
1088 }
1089 if(fProfResXvsPhi) {
1090 for (Int_t i=0; i<kNHisto; i++ ) delete fProfResXvsPhi[i];
1091 delete [] fProfResXvsPhi; fProfResXvsPhi=0;
1092 }
1093 if(fProfResZvsDip) {
1094 for (Int_t i=0; i<kNHisto; i++ ) delete fProfResZvsDip[i];
1095 delete [] fProfResZvsDip; fProfResZvsDip=0;
1096 }
1097 if(fProfResXvsPhiclu) {
1098 for (Int_t i=0; i<kNHisto; i++ ) {
1099 for (Int_t clu=0; clu<kNclu; clu++) if (fProfResXvsPhiclu[i][clu]) delete fProfResXvsPhiclu[i][clu];
1100 delete [] fProfResXvsPhiclu[i];
1101 }
1102 delete [] fProfResXvsPhiclu;
1103 fProfResXvsPhiclu = 0;
1104 }
1105 if(fProfResZvsDipclu) {
1106 for (Int_t i=0; i<kNHisto; i++ ) {
1107 for (Int_t clu=0; clu<kNclu; clu++) if (fProfResZvsDipclu[i][clu]) delete fProfResZvsDipclu[i][clu];
1108 delete [] fProfResZvsDipclu[i];
1109 }
1110 delete [] fProfResZvsDipclu;
1111 fProfResZvsDipclu = 0;
1112 }
1113 if(fHisTrackXFOtrue) {
1114 for (Int_t i=0; i<kNHisto; i++ ) {
1115 for (Int_t phas=0; phas<kNClockPhase; phas++) if (fHisTrackXFOtrue[i][phas]) delete fHisTrackXFOtrue[i][phas];
1116 delete [] fHisTrackXFOtrue[i];
1117 }
1118 delete [] fHisTrackXFOtrue;
1119 fHisTrackXFOtrue = 0;
1120 }
1121 if(fHisTrackZFOtrue) {
1122 for (Int_t i=0; i<kNHisto; i++ ) {
1123 for (Int_t phas=0; phas<kNClockPhase; phas++) if (fHisTrackZFOtrue[i][phas]) delete fHisTrackZFOtrue[i][phas];
1124 delete [] fHisTrackZFOtrue[i];
1125 }
1126 delete [] fHisTrackZFOtrue;
1127 fHisTrackZFOtrue = 0;
1128 }
1129 if(fHisTrackXFOfalse) {
1130 for (Int_t i=0; i<kNHisto; i++ ) {
1131 for (Int_t phas=0; phas<kNClockPhase; phas++) if (fHisTrackXFOfalse[i][phas]) delete fHisTrackXFOfalse[i][phas];
1132 delete [] fHisTrackXFOfalse[i];
1133 }
1134 delete [] fHisTrackXFOfalse;
1135 fHisTrackXFOfalse = 0;
1136 }
1137 if(fHisTrackZFOfalse) {
1138 for (Int_t i=0; i<kNHisto; i++ ) {
1139 for (Int_t phas=0; phas<kNClockPhase; phas++) if (fHisTrackZFOfalse[i][phas]) delete fHisTrackZFOfalse[i][phas];
1140 delete [] fHisTrackZFOfalse[i];
1141 }
1142 delete [] fHisTrackZFOfalse;
1143 fHisTrackZFOfalse = 0;
1144 }
1145return;
1146}
1147//__________________________________________________________
1148Bool_t AliITSPlaneEffSPD::FillHistos(UInt_t key, Bool_t found,
1149 Float_t *tr, Float_t *clu, Int_t *csize, Float_t *angtrkmod) {
1150//
1151// depending on the value of key this method
1152// either call the standard one for clusters
1153// or the one for FO studies
1154// if key < 1200 --> call FillHistosST
1155// if key >= 1200 --> call FillHistosFO
1156if(key>=kNModule*kNChip*(kNClockPhase+1))
1157 {AliError("GetChipFromKey: you asked for a non existing key"); return kFALSE;}
1158if(key<kNModule*kNChip) return FillHistosStd(key,found,tr,clu,csize,angtrkmod);
1159else return FillHistosFO(key,found,tr);
1160return kFALSE;
1161}
1162//__________________________________________________________
1163Bool_t AliITSPlaneEffSPD::FillHistosFO(UInt_t key, Bool_t found, Float_t *tr) {
1164// this method fill the histograms for FastOr studies
1165// input: - key: unique key of the basic block
1166// - found: Boolean to asses whether a FastOr bit has been associated to the track or not
1167// - tr[0],tr[1] local X and Z coordinates of the track prediction, respectively
1168// - tr[2],tr[3] error on local X and Z coordinates of the track prediction, respectively
1169// output: kTRUE if filling was succesfull kFALSE otherwise
1170// side effects: updating of the histograms.
1171 if (!fHis) {
1172 AliWarning("FillHistos: histograms do not exist! Call SetCreateHistos(kTRUE) first");
1173 return kFALSE;
1174 }
1175 if(key>=kNModule*kNChip*(kNClockPhase+1))
1176 {AliWarning("FillHistos: you asked for a non existing key"); return kFALSE;}
1177 if(key<kNModule*kNChip)
1178 {AliWarning("FillHistos: you asked for a key which is not for FO studies"); return kFALSE;}
1179 Int_t id=GetModFromKey(key);
1180 Int_t BCm4=GetBCm4FromKey(key);
1181 if(id>=kNHisto)
1182 {AliWarning("FillHistos: you want to fill a non-existing histos"); return kFALSE;}
1183 if(found) {
1184 fHisTrackXFOtrue[id][BCm4]->Fill(tr[0]);
1185 fHisTrackZFOtrue[id][BCm4]->Fill(tr[1]);
1186 fHisTrackXZFOtrue[id][BCm4]->Fill(tr[1],tr[0]);
1187 }
1188 else {
1189 fHisTrackXFOfalse[id][BCm4]->Fill(tr[0]);
1190 fHisTrackZFOfalse[id][BCm4]->Fill(tr[1]);
1191 fHisTrackXZFOfalse[id][BCm4]->Fill(tr[1],tr[0]);
1192 }
1193return kTRUE;
1194}
1195//__________________________________________________________
1196Bool_t AliITSPlaneEffSPD::FillHistosStd(UInt_t key, Bool_t found,
1197 Float_t *tr, Float_t *clu, Int_t *csize, Float_t *angtrkmod) {
1198// this method fill the histograms
1199// input: - key: unique key of the basic block
1200// - found: Boolean to asses whether a cluster has been associated to the track or not
1201// - tr[0],tr[1] local X and Z coordinates of the track prediction, respectively
1202// - tr[2],tr[3] error on local X and Z coordinates of the track prediction, respectively
1203// - clu[0],clu[1] local X and Z coordinates of the cluster associated to the track, respectively
1204// - clu[2],clu[3] error on local X and Z coordinates of the cluster associated to the track, respectively
1205// - csize[0][1] cluster size in X and Z, respectively
1206// - angtrkmod[0],angtrkmod[1]
1207// output: kTRUE if filling was succesfull kFALSE otherwise
1208// side effects: updating of the histograms.
1209//
1210 if (!fHis) {
1211 AliWarning("FillHistos: histograms do not exist! Call SetCreateHistos(kTRUE) first");
1212 return kFALSE;
1213 }
1214 if(key>=kNModule*kNChip)
1215 {AliWarning("FillHistos: you asked for a non existing key"); return kFALSE;}
1216 Int_t id=GetModFromKey(key);
1217 Int_t chip=GetChipFromKey(key);
1218 if(id>=kNHisto)
1219 {AliWarning("FillHistos: you want to fill a non-existing histos"); return kFALSE;}
1220 if(found) {
1221 Float_t resx=tr[0]-clu[0];
1222 Float_t resz=tr[1]-clu[1];
1223 fHisResX[id]->Fill(resx);
1224 fHisResZ[id]->Fill(resz);
1225 fHisResXZ[id]->Fill(resx,resz);
1226 fHisClusterSize[id]->Fill((Double_t)csize[0],(Double_t)csize[1]);
1227 if(csize[0]>0 && csize[0]<=kNclu) fHisResXclu[id][csize[0]-1]->Fill(resx);
1228 if(csize[1]>0 && csize[1]<=kNclu) fHisResZclu[id][csize[1]-1]->Fill(resz);
1229 fHisResXchip[id][chip]->Fill(resx);
1230 fHisResZchip[id][chip]->Fill(resz);
1231 fProfResXvsPhi[id]->Fill(angtrkmod[0],resx);
1232 fProfResZvsDip[id]->Fill(angtrkmod[1],resz);
1233 if(csize[0]>0 && csize[0]<=kNclu) fProfResXvsPhiclu[id][csize[0]-1]->Fill(angtrkmod[0],resx);
1234 if(csize[1]>0 && csize[1]<=kNclu) fProfResZvsDipclu[id][csize[1]-1]->Fill(angtrkmod[1],resz);
1235 }
1236 fHisTrackErrX[id]->Fill(tr[2]);
1237 fHisTrackErrZ[id]->Fill(tr[3]);
1238 fHisClusErrX[id]->Fill(clu[2]);
1239 fHisClusErrZ[id]->Fill(clu[3]);
1240 return kTRUE;
1241}
1242//__________________________________________________________
1243Bool_t AliITSPlaneEffSPD::WriteHistosToFile(TString filename, Option_t* option) {
1244 //
1245 // Saves the histograms into a tree and saves the trees into a file
1246 //
1247 if (!fHis) return kFALSE;
1248 if (filename.IsNull() || filename.IsWhitespace()) {
1249 AliWarning("WriteHistosToFile: null output filename!");
1250 return kFALSE;
1251 }
1252 char branchname[51];
1253 TFile *hFile=new TFile(filename.Data(),option,
1254 "The File containing the TREEs with ITS PlaneEff Histos");
1255 TTree *SPDTree=new TTree("SPDTree","Tree whith Residuals and Cluster Type distributions for SPD");
1256 TH1F *histZ,*histX;
1257 TH2F *histXZ;
1258 TH2I *histClusterType;
1259 TH1F *histXclu[kNclu];
1260 TH1F *histZclu[kNclu];
1261 TH1F *histXchip[kNChip];
1262 TH1F *histZchip[kNChip];
1263 TH1F *histTrErrZ,*histTrErrX;
1264 TH1F *histClErrZ,*histClErrX;
1265 TProfile *profXvsPhi,*profZvsDip;
1266 TProfile *profXvsPhiclu[kNclu],*profZvsDipclu[kNclu];
1267 TH1F *histXtrkFOtrue[kNClockPhase];
1268 TH1F *histZtrkFOtrue[kNClockPhase];
1269 TH1F *histXtrkFOfalse[kNClockPhase];
1270 TH1F *histZtrkFOfalse[kNClockPhase];
1271 TH2F *histXZtrkFOtrue[kNClockPhase];
1272 TH2F *histXZtrkFOfalse[kNClockPhase];
1273
1274 histZ=new TH1F();
1275 histX=new TH1F();
1276 histXZ=new TH2F();
1277 histClusterType=new TH2I();
1278 for(Int_t clu=0;clu<kNclu;clu++) {
1279 histXclu[clu]=new TH1F();
1280 histZclu[clu]=new TH1F();
1281 }
1282 for(Int_t chip=0;chip<kNChip;chip++) {
1283 histXchip[chip]=new TH1F();
1284 histZchip[chip]=new TH1F();
1285 }
1286
1287 histTrErrX=new TH1F();
1288 histTrErrZ=new TH1F();
1289 histClErrX=new TH1F();
1290 histClErrZ=new TH1F();
1291 profXvsPhi=new TProfile();
1292 profZvsDip=new TProfile();
1293 for(Int_t clu=0;clu<kNclu;clu++) {
1294 profXvsPhiclu[clu]=new TProfile();
1295 profZvsDipclu[clu]=new TProfile();
1296 }
1297
1298 for(Int_t phas=0; phas<kNClockPhase;phas++){
1299 histXtrkFOtrue[phas]=new TH1F();
1300 histZtrkFOtrue[phas]=new TH1F();
1301 histXtrkFOfalse[phas]=new TH1F();
1302 histZtrkFOfalse[phas]=new TH1F();
1303 histXZtrkFOtrue[phas]=new TH2F();
1304 histXZtrkFOfalse[phas]=new TH2F();
1305 }
1306
1307 SPDTree->Branch("histX","TH1F",&histX,128000,0);
1308 SPDTree->Branch("histZ","TH1F",&histZ,128000,0);
1309 SPDTree->Branch("histXZ","TH2F",&histXZ,128000,0);
1310 SPDTree->Branch("histClusterType","TH2I",&histClusterType,128000,0);
1311 for(Int_t clu=0;clu<kNclu;clu++) {
1312 snprintf(branchname,50,"histXclu_%d",clu+1);
1313 SPDTree->Branch(branchname,"TH1F",&histXclu[clu],128000,0);
1314 snprintf(branchname,50,"histZclu_%d",clu+1);
1315 SPDTree->Branch(branchname,"TH1F",&histZclu[clu],128000,0);
1316 }
1317 for(Int_t chip=0;chip<kNChip;chip++) {
1318 snprintf(branchname,50,"histXchip_%d",chip);
1319 SPDTree->Branch(branchname,"TH1F",&histXchip[chip],128000,0);
1320 snprintf(branchname,50,"histZchip_%d",chip);
1321 SPDTree->Branch(branchname,"TH1F",&histZchip[chip],128000,0);
1322 }
1323 SPDTree->Branch("histTrErrX","TH1F",&histTrErrX,128000,0);
1324 SPDTree->Branch("histTrErrZ","TH1F",&histTrErrZ,128000,0);
1325 SPDTree->Branch("histClErrX","TH1F",&histClErrX,128000,0);
1326 SPDTree->Branch("histClErrZ","TH1F",&histClErrZ,128000,0);
1327 SPDTree->Branch("profXvsPhi","TProfile",&profXvsPhi,128000,0);
1328 SPDTree->Branch("profZvsDip","TProfile",&profZvsDip,128000,0);
1329 for(Int_t clu=0;clu<kNclu;clu++) {
1330 snprintf(branchname,50,"profXvsPhiclu_%d",clu+1);
1331 SPDTree->Branch(branchname,"TProfile",&profXvsPhiclu[clu],128000,0);
1332 snprintf(branchname,50,"profZvsDipclu_%d",clu+1);
1333 SPDTree->Branch(branchname,"TProfile",&profZvsDipclu[clu],128000,0);
1334 }
1335 for(Int_t phas=0; phas<kNClockPhase;phas++){
1336 snprintf(branchname,50,"histTrXFOokBCmod4_%d",phas);
1337 SPDTree->Branch(branchname,"TH1F",&histXtrkFOtrue[phas],128000,0);
1338 snprintf(branchname,50,"histTrZFOokBCmod4_%d",phas);
1339 SPDTree->Branch(branchname,"TH1F",&histZtrkFOtrue[phas],128000,0);
1340 snprintf(branchname,50,"histTrXFOkoBCmod4_%d",phas);
1341 SPDTree->Branch(branchname,"TH1F",&histXtrkFOfalse[phas],128000,0);
1342 snprintf(branchname,50,"histTrZFOkoBCmod4_%d",phas);
1343 SPDTree->Branch(branchname,"TH1F",&histZtrkFOfalse[phas],128000,0);
1344 snprintf(branchname,50,"histTrXZFOokBCmod4_%d",phas);
1345 SPDTree->Branch(branchname,"TH2F",&histXZtrkFOtrue[phas],128000,0);
1346 snprintf(branchname,50,"histTrXZFOkoBCmod4_%d",phas);
1347 SPDTree->Branch(branchname,"TH2F",&histXZtrkFOfalse[phas],128000,0);
1348 }
1349
1350 for(Int_t j=0;j<kNHisto;j++){
1351 histX=fHisResX[j];
1352 histZ=fHisResZ[j];
1353 histXZ=fHisResXZ[j];
1354 histClusterType=fHisClusterSize[j];
1355 for(Int_t clu=0;clu<kNclu;clu++) {
1356 histXclu[clu]=fHisResXclu[j][clu];
1357 histZclu[clu]=fHisResZclu[j][clu];
1358 }
1359 for(Int_t chip=0;chip<kNChip;chip++) {
1360 histXchip[chip]=fHisResXchip[j][chip];
1361 histZchip[chip]=fHisResZchip[j][chip];
1362 }
1363 histTrErrX=fHisTrackErrX[j];
1364 histTrErrZ=fHisTrackErrZ[j];
1365 histClErrX=fHisClusErrX[j];
1366 histClErrZ=fHisClusErrZ[j];
1367 profXvsPhi=fProfResXvsPhi[j];
1368 profZvsDip=fProfResZvsDip[j];
1369 for(Int_t clu=0;clu<kNclu;clu++) {
1370 profXvsPhiclu[clu]=fProfResXvsPhiclu[j][clu];
1371 profZvsDipclu[clu]=fProfResZvsDipclu[j][clu];
1372 }
1373 for(Int_t phas=0; phas<kNClockPhase;phas++){
1374 histXtrkFOtrue[phas]=fHisTrackXFOtrue[j][phas];
1375 histZtrkFOtrue[phas]=fHisTrackZFOtrue[j][phas];
1376 histXtrkFOfalse[phas]=fHisTrackXFOfalse[j][phas];
1377 histZtrkFOfalse[phas]=fHisTrackZFOfalse[j][phas];
1378 histXZtrkFOtrue[phas]=fHisTrackXZFOtrue[j][phas];
1379 histXZtrkFOfalse[phas]=fHisTrackXZFOfalse[j][phas];
1380 }
1381
1382 SPDTree->Fill();
1383 }
1384 hFile->Write();
1385 hFile->Close();
1386return kTRUE;
1387}
1388//__________________________________________________________
1389Bool_t AliITSPlaneEffSPD::ReadHistosFromFile(TString filename) {
1390 //
1391 // Read histograms from an already existing file
1392 //
1393 if (!fHis) return kFALSE;
1394 if (filename.IsNull() || filename.IsWhitespace()) {
1395 AliWarning("ReadHistosFromFile: incorrect output filename!");
1396 return kFALSE;
1397 }
1398 char branchname[51];
1399
1400 TH1F *h = 0;
1401 TH2F *h2 = 0;
1402 TH2I *h2i= 0;
1403 TProfile *p = 0;
1404
1405 TFile *file=TFile::Open(filename.Data(),"READONLY");
1406
1407 if (!file || file->IsZombie()) {
1408 AliWarning(Form("Can't open %s !",filename.Data()));
1409 delete file;
1410 return kFALSE;
1411 }
1412 TTree *tree = (TTree*) file->Get("SPDTree");
1413
1414 TBranch *histX = (TBranch*) tree->GetBranch("histX");
1415 TBranch *histZ = (TBranch*) tree->GetBranch("histZ");
1416 TBranch *histXZ = (TBranch*) tree->GetBranch("histXZ");
1417 TBranch *histClusterType = (TBranch*) tree->GetBranch("histClusterType");
1418
1419 TBranch *histXclu[kNclu], *histZclu[kNclu];
1420 for(Int_t clu=0; clu<kNclu; clu++) {
1421 snprintf(branchname,50,"histXclu_%d",clu+1);
1422 histXclu[clu]= (TBranch*) tree->GetBranch(branchname);
1423 snprintf(branchname,50,"histZclu_%d",clu+1);
1424 histZclu[clu]= (TBranch*) tree->GetBranch(branchname);
1425 }
1426
1427 TBranch *histXchip[kNChip], *histZchip[kNChip];
1428 for(Int_t chip=0; chip<kNChip; chip++) {
1429 snprintf(branchname,50,"histXchip_%d",chip);
1430 histXchip[chip]= (TBranch*) tree->GetBranch(branchname);
1431 snprintf(branchname,50,"histZchip_%d",chip);
1432 histZchip[chip]= (TBranch*) tree->GetBranch(branchname);
1433 }
1434
1435 TBranch *histTrErrX = (TBranch*) tree->GetBranch("histTrErrX");
1436 TBranch *histTrErrZ = (TBranch*) tree->GetBranch("histTrErrZ");
1437 TBranch *histClErrX = (TBranch*) tree->GetBranch("histClErrX");
1438 TBranch *histClErrZ = (TBranch*) tree->GetBranch("histClErrZ");
1439 TBranch *profXvsPhi = (TBranch*) tree->GetBranch("profXvsPhi");
1440 TBranch *profZvsDip = (TBranch*) tree->GetBranch("profZvsDip");
1441
1442 TBranch *profXvsPhiclu[kNclu], *profZvsDipclu[kNclu];
1443 for(Int_t clu=0; clu<kNclu; clu++) {
1444 snprintf(branchname,50,"profXvsPhiclu_%d",clu+1);
1445 profXvsPhiclu[clu]= (TBranch*) tree->GetBranch(branchname);
1446 snprintf(branchname,50,"profZvsDipclu_%d",clu+1);
1447 profZvsDipclu[clu]= (TBranch*) tree->GetBranch(branchname);
1448 }
1449
1450 TBranch *histXtrkFOtrue[kNClockPhase], *histZtrkFOtrue[kNClockPhase],
1451 *histXtrkFOfalse[kNClockPhase], *histZtrkFOfalse[kNClockPhase],
1452 *histXZtrkFOtrue[kNClockPhase], *histXZtrkFOfalse[kNClockPhase];
1453 for(Int_t phas=0; phas<kNClockPhase;phas++){
1454 snprintf(branchname,50,"histTrXFOokBCmod4_%d",phas);
1455 histXtrkFOtrue[phas] = (TBranch*) tree->GetBranch(branchname);
1456 snprintf(branchname,50,"histTrZFOokBCmod4_%d",phas);
1457 histZtrkFOtrue[phas] = (TBranch*) tree->GetBranch(branchname);
1458 snprintf(branchname,50,"histTrXFOkoBCmod4_%d",phas);
1459 histXtrkFOfalse[phas] = (TBranch*) tree->GetBranch(branchname);
1460 snprintf(branchname,50,"histTrZFOkoBCmod4_%d",phas);
1461 histZtrkFOfalse[phas] = (TBranch*) tree->GetBranch(branchname);
1462 snprintf(branchname,50,"histTrXZFOokBCmod4_%d",phas);
1463 histXZtrkFOtrue[phas] = (TBranch*) tree->GetBranch(branchname);
1464 snprintf(branchname,50,"histTrXZFOkoBCmod4_%d",phas);
1465 histXZtrkFOfalse[phas] = (TBranch*) tree->GetBranch(branchname);
1466 }
1467
1468 gROOT->cd();
1469
1470 Int_t nevent = (Int_t)histX->GetEntries();
1471 if(nevent!=kNHisto)
1472 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1473 histX->SetAddress(&h);
1474 for(Int_t j=0;j<kNHisto;j++){
1475 histX->GetEntry(j);
1476 fHisResX[j]->Add(h);
1477 }
1478
1479 nevent = (Int_t)histZ->GetEntries();
1480 if(nevent!=kNHisto)
1481 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1482 histZ->SetAddress(&h);
1483 for(Int_t j=0;j<kNHisto;j++){
1484 histZ->GetEntry(j);
1485 fHisResZ[j]->Add(h);
1486 }
1487
1488 nevent = (Int_t)histXZ->GetEntries();
1489 if(nevent!=kNHisto)
1490 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1491 histXZ->SetAddress(&h2);
1492 for(Int_t j=0;j<kNHisto;j++){
1493 histXZ->GetEntry(j);
1494 fHisResXZ[j]->Add(h2);
1495 }
1496
1497 nevent = (Int_t)histClusterType->GetEntries();
1498 if(nevent!=kNHisto)
1499 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1500 histClusterType->SetAddress(&h2i);
1501 for(Int_t j=0;j<kNHisto;j++){
1502 histClusterType->GetEntry(j);
1503 fHisClusterSize[j]->Add(h2i);
1504 }
1505
1506 for(Int_t clu=0; clu<kNclu; clu++) {
1507
1508 nevent = (Int_t)histXclu[clu]->GetEntries();
1509 if(nevent!=kNHisto)
1510 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1511 histXclu[clu]->SetAddress(&h);
1512 for(Int_t j=0;j<kNHisto;j++){
1513 histXclu[clu]->GetEntry(j);
1514 fHisResXclu[j][clu]->Add(h);
1515 }
1516
1517 nevent = (Int_t)histZclu[clu]->GetEntries();
1518 if(nevent!=kNHisto)
1519 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1520 histZclu[clu]->SetAddress(&h);
1521 for(Int_t j=0;j<kNHisto;j++){
1522 histZclu[clu]->GetEntry(j);
1523 fHisResZclu[j][clu]->Add(h);
1524 }
1525 }
1526
1527
1528 for(Int_t chip=0; chip<kNChip; chip++) {
1529
1530 nevent = (Int_t)histXchip[chip]->GetEntries();
1531 if(nevent!=kNHisto)
1532 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1533 histXchip[chip]->SetAddress(&h);
1534 for(Int_t j=0;j<kNHisto;j++){
1535 histXchip[chip]->GetEntry(j);
1536 fHisResXchip[j][chip]->Add(h);
1537 }
1538
1539 nevent = (Int_t)histZchip[chip]->GetEntries();
1540 if(nevent!=kNHisto)
1541 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1542 histZchip[chip]->SetAddress(&h);
1543 for(Int_t j=0;j<kNHisto;j++){
1544 histZchip[chip]->GetEntry(j);
1545 fHisResZchip[j][chip]->Add(h);
1546 }
1547 }
1548
1549 nevent = (Int_t)histTrErrX->GetEntries();
1550 if(nevent!=kNHisto)
1551 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1552 histTrErrX->SetAddress(&h);
1553 for(Int_t j=0;j<kNHisto;j++){
1554 histTrErrX->GetEntry(j);
1555 fHisTrackErrX[j]->Add(h);
1556 }
1557
1558 nevent = (Int_t)histTrErrZ->GetEntries();
1559 if(nevent!=kNHisto)
1560 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1561 histTrErrZ->SetAddress(&h);
1562 for(Int_t j=0;j<kNHisto;j++){
1563 histTrErrZ->GetEntry(j);
1564 fHisTrackErrZ[j]->Add(h);
1565 }
1566
1567 nevent = (Int_t)histClErrX->GetEntries();
1568 if(nevent!=kNHisto)
1569 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1570 histClErrX->SetAddress(&h);
1571 for(Int_t j=0;j<kNHisto;j++){
1572 histClErrX->GetEntry(j);
1573 fHisClusErrX[j]->Add(h);
1574 }
1575
1576 nevent = (Int_t)histClErrZ->GetEntries();
1577 if(nevent!=kNHisto)
1578 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1579 histClErrZ->SetAddress(&h);
1580 for(Int_t j=0;j<kNHisto;j++){
1581 histClErrZ->GetEntry(j);
1582 fHisClusErrZ[j]->Add(h);
1583 }
1584 nevent = (Int_t)profXvsPhi->GetEntries();
1585 if(nevent!=kNHisto)
1586 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1587 profXvsPhi->SetAddress(&p);
1588 for(Int_t j=0;j<kNHisto;j++){
1589 profXvsPhi->GetEntry(j);
1590 fProfResXvsPhi[j]->Add(p);
1591 }
1592
1593 nevent = (Int_t)profZvsDip->GetEntries();
1594 if(nevent!=kNHisto)
1595 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1596 profZvsDip->SetAddress(&p);
1597 for(Int_t j=0;j<kNHisto;j++){
1598 profZvsDip->GetEntry(j);
1599 fProfResZvsDip[j]->Add(p);
1600 }
1601
1602 for(Int_t clu=0; clu<kNclu; clu++) {
1603
1604 nevent = (Int_t)profXvsPhiclu[clu]->GetEntries();
1605 if(nevent!=kNHisto)
1606 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1607 profXvsPhiclu[clu]->SetAddress(&p);
1608 for(Int_t j=0;j<kNHisto;j++){
1609 profXvsPhiclu[clu]->GetEntry(j);
1610 fProfResXvsPhiclu[j][clu]->Add(p);
1611 }
1612
1613 nevent = (Int_t)profZvsDipclu[clu]->GetEntries();
1614 if(nevent!=kNHisto)
1615 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1616 profZvsDipclu[clu]->SetAddress(&p);
1617 for(Int_t j=0;j<kNHisto;j++){
1618 profZvsDipclu[clu]->GetEntry(j);
1619 fProfResZvsDipclu[j][clu]->Add(p);
1620 }
1621 }
1622
1623 for(Int_t phas=0; phas<kNClockPhase;phas++){
1624
1625 nevent = (Int_t)histXtrkFOtrue[phas]->GetEntries();
1626 if(nevent!=kNHisto)
1627 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1628 histXtrkFOtrue[phas]->SetAddress(&h);
1629 for(Int_t j=0;j<kNHisto;j++){
1630 histXtrkFOtrue[phas]->GetEntry(j);
1631 fHisTrackXFOtrue[j][phas]->Add(h);
1632 }
1633
1634 nevent = (Int_t)histZtrkFOtrue[phas]->GetEntries();
1635 if(nevent!=kNHisto)
1636 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1637 histZtrkFOtrue[phas]->SetAddress(&h);
1638 for(Int_t j=0;j<kNHisto;j++){
1639 histZtrkFOtrue[phas]->GetEntry(j);
1640 fHisTrackZFOtrue[j][phas]->Add(h);
1641 }
1642
1643 nevent = (Int_t)histXtrkFOfalse[phas]->GetEntries();
1644 if(nevent!=kNHisto)
1645 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1646 histXtrkFOfalse[phas]->SetAddress(&h);
1647 for(Int_t j=0;j<kNHisto;j++){
1648 histXtrkFOfalse[phas]->GetEntry(j);
1649 fHisTrackXFOfalse[j][phas]->Add(h);
1650 }
1651
1652 nevent = (Int_t)histZtrkFOfalse[phas]->GetEntries();
1653 if(nevent!=kNHisto)
1654 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1655 histZtrkFOfalse[phas]->SetAddress(&h);
1656 for(Int_t j=0;j<kNHisto;j++){
1657 histZtrkFOfalse[phas]->GetEntry(j);
1658 fHisTrackZFOfalse[j][phas]->Add(h);
1659 }
1660
1661 nevent = (Int_t)histXZtrkFOtrue[phas]->GetEntries();
1662 if(nevent!=kNHisto)
1663 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1664 histXZtrkFOtrue[phas]->SetAddress(&h2);
1665 for(Int_t j=0;j<kNHisto;j++){
1666 histXZtrkFOtrue[phas]->GetEntry(j);
1667 fHisTrackXZFOtrue[j][phas]->Add(h2);
1668 }
1669
1670 nevent = (Int_t)histXZtrkFOfalse[phas]->GetEntries();
1671 if(nevent!=kNHisto)
1672 {AliWarning("ReadHistosFromFile: trying to read too many or too few histos!"); return kFALSE;}
1673 histXZtrkFOfalse[phas]->SetAddress(&h2);
1674 for(Int_t j=0;j<kNHisto;j++){
1675 histXZtrkFOfalse[phas]->GetEntry(j);
1676 fHisTrackXZFOfalse[j][phas]->Add(h2);
1677 }
1678
1679 }
1680
1681 delete h;
1682 delete h2;
1683 delete h2i;
1684 delete p;
1685
1686 if (file) {
1687 file->Close();
1688 delete file;
1689 }
1690return kTRUE;
1691}
1692