]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSOnlineSPDfoAnalyzer.cxx
Bug fix concerning multiple found tracks (F. Prino)
[u/mrichter/AliRoot.git] / ITS / AliITSOnlineSPDfoAnalyzer.cxx
CommitLineData
286382a3 1/**************************************************************************
2 * Copyright(c) 2008-2010, 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/* $Id$ */
17
18////////////////////////////////////////////////////////////
19// Author: A. Mastroserio //
20// This class is used in the detector algorithm framework //
21// to process the data stored in special container files //
22// (see AliITSOnlineSPDfo). The "good" set of DAC values //
23// is extracted. //
24////////////////////////////////////////////////////////////
25
26#include <TFile.h>
27#include <TMath.h>
28#include <TString.h>
29#include <TStyle.h>
30#include <TF1.h>
31#include <TH1D.h>
32#include <TH2D.h>
33#include <TArrayI.h>
34#include <TCanvas.h>
35#include <THnSparse.h>
36#include <TKey.h>
37#include <iostream>
38#include <fstream>
39#include "AliITSOnlineSPDfoChipConfig.h"
40#include "AliITSOnlineSPDfoChip.h"
41#include "AliITSOnlineSPDfoInfo.h"
42#include "AliITSOnlineSPDfo.h"
43#include "AliITSOnlineSPDfoAnalyzer.h"
44#include "AliLog.h"
45
46AliITSOnlineSPDfoAnalyzer::AliITSOnlineSPDfoAnalyzer(const TString fileName, Bool_t readFromGridFile) :
47 fFileName(0),
48 fNdims(0),
49 fNbins(0x0),
50 fXmin(0x0),
51 fXmax(0x0),
52 fFOHandler(0x0),
53 fHighOccupancyCheck(kTRUE)
54{
55 // constructor
56 fFileName = fileName;
57 for(Int_t iqual =0; iqual<kNqualityFlags; iqual++) fGeneralThresholds[iqual]=0;
58
59 for (UInt_t chipNr=0; chipNr<10; chipNr++) {
60 for (UInt_t hs=0; hs<6; hs++) {
61 for(Int_t i =0; i< kNqualityFlags; i++) fNh[i][hs][chipNr]=NULL;
62 }
63 }
64
65 Init(readFromGridFile);
66}
67//-------------------------------------------------------------------
68AliITSOnlineSPDfoAnalyzer::AliITSOnlineSPDfoAnalyzer(const AliITSOnlineSPDfoAnalyzer& foan) :
69 fFileName(foan.fFileName),
70 fNdims(foan.fNdims),
71 fNbins(foan.fNbins),
72 fXmin(foan.fXmin),
73 fXmax(foan.fXmax),
74 fFOHandler(foan.fFOHandler),
75 fHighOccupancyCheck(foan.fHighOccupancyCheck)
76{
77 //
78 // copy constructor, only copies the filename and params (not the processed data
79 //
80
81 for(Int_t iqual =0; iqual<3; iqual++) fGeneralThresholds[iqual] =foan.fGeneralThresholds[iqual];
82 for (UInt_t chipNr=0; chipNr<11; chipNr++) {
83 for (UInt_t hs=0; hs<6; hs++) {
84 for(Int_t i=0; i<kNqualityFlags;i++) fNh[i][hs][chipNr]=NULL;
85 }
86 }
87
88 Init();
89}
90//-------------------------------------------------------------------
91AliITSOnlineSPDfoAnalyzer::~AliITSOnlineSPDfoAnalyzer()
92{
93 //
94 // destructor
95 //
96
97 for (UInt_t hs=0; hs<6; hs++) {
98 for (UInt_t chipNr=0; chipNr<11; chipNr++) {
99 for(Int_t i=0; i<kNqualityFlags ; i++ ) if(fNh[i][hs][chipNr]!=NULL) delete fNh[i][hs][chipNr];
100 }
101 }
102 delete fFOHandler;
103}
104//-------------------------------------------------------------------
105AliITSOnlineSPDfoAnalyzer& AliITSOnlineSPDfoAnalyzer::operator=(const AliITSOnlineSPDfoAnalyzer& foan)
106{
107 // assignment operator, only copies the filename and params (not the processed data)
108 if (this!=&foan) {
109 for (UInt_t hs=0; hs<6; hs++) {
110 for (UInt_t chipNr=0; chipNr<11; chipNr++) {
111 for(Int_t i=0; i<kNqualityFlags ; i++ ) if(fNh[i][hs][chipNr]!=NULL) delete fNh[i][hs][chipNr];
112 }
113 }
114
115 fFileName=foan.fFileName;
116 fHighOccupancyCheck=foan.fHighOccupancyCheck;
117 Init();
118 }
119 return *this;
120}
121//-------------------------------------------------------------------
122void AliITSOnlineSPDfoAnalyzer::Init(Bool_t readFromGridFile)
123{
124 //
125 // first checks type of container and then initializes container obj
126 //
127 if (!readFromGridFile) {
128 TFile* p0 = TFile::Open(fFileName.Data());
129 if (p0 == NULL) {
130 printf("no file open!");
131 return;
132 }
133 else {
134 fFOHandler = new AliITSOnlineSPDfo();
135 fFOHandler->SetFile(fFileName);
136 }
137 p0->Close();
138 }
139}
140//-------------------------------------------------------------------
141void AliITSOnlineSPDfoAnalyzer::SetGeneralThresholds(Float_t thre[3])
142{
143 // here the settings for the 3 quality flags are defined
144 for(Int_t i=0; i< 3; i++) fGeneralThresholds[i]=thre[i];
145}
146//-------------------------------------------------------------------
147void AliITSOnlineSPDfoAnalyzer::SetNdimensions()
148{
149 //
150 // here the axis of the N-dim histograms are setted
151 //
152 if(!fFOHandler) {
153 printf("no fo object. Exiting...\n");
154 return;
155 }
156
157 TArrayI array = fFOHandler->GetDACscanParams();
158 fNdims = array.GetSize()/3;
159 fNbins = new Int_t[fNdims];
160 fXmin = new Double_t[fNdims];
161 fXmax = new Double_t[fNdims];
162 for(Int_t i=0; i< fNdims; i++){
163 fXmin[i] = array.At(3*i)-0.25;
164 fXmax[i] = array.At(3*i+1)+0.25;
165 fNbins[i] = (Int_t)((fXmax[i]-fXmin[i])/0.5)+1;//to avoid Int->Double conversion problems when checking results.
166 }
167}
168//-------------------------------------------------------------------
169void AliITSOnlineSPDfoAnalyzer::BuildTHnSparse(Int_t ihs, Int_t ichip)
170{
171 //
172 // here the N-dim histogram is booked per chip in one HS
173 //
174
175 if(!fNdims) SetNdimensions();
176
177 for(Int_t iqual =0; iqual < 3; iqual++) fNh[iqual][ihs][ichip] = new THnSparseI(Form("h%i_HS%i_C%i",iqual,ihs,ichip), Form("h%i_HS%i_C%i",iqual,ihs,ichip), fNdims, fNbins, fXmin, fXmax);
178}
179//-------------------------------------------------------------------
180Int_t AliITSOnlineSPDfoAnalyzer::Select(const AliITSOnlineSPDfoChip *chip) const
181{
182 //
183 // Selects the DAC values if in the chip: the I configuration corresponds to
184 // 0% efficiency ( no FO response case). All the others shoud be within the
185 // predefined thresholds
186
187 if(!fFOHandler->GetFOscanInfo()) {
188 printf("no general information object in the file. Exiting...\n");
189 return -1;
190 }
191
192 Double_t npulses = (fFOHandler->GetFOscanInfo())->GetNumTriggers();
193
194 if(npulses == 0. ) {
195 Info("AliITSOnlineSPDfoAnalyzer::Select","no trigger pulses set. Exiting...");
196 return -999;
197 }
198
199 TObjArray *array = chip->GetChipConfigInfo();
200 if(!array) {
201 printf("No measurement array found in the chip!!\n");
202 return 0;
203 }
204
205 Int_t quality = -1;
206
207 Float_t counts = 0;
208
209 Int_t processedconfigurations = chip->GetNumberOfChipConfigs();
14374702 210
211
212
286382a3 213
214 for(Int_t isteps =0; isteps < processedconfigurations; isteps++){
215
216 Int_t matrixId = ((AliITSOnlineSPDfoChipConfig*)array->At(isteps))->GetChipConfigMatrixId();
217 counts = (Float_t)(((AliITSOnlineSPDfoChipConfig*)array->At(isteps))->GetChipConfigCounter());
286382a3 218 if(matrixId==0 && counts > 0) return -1;
14374702 219 if(fHighOccupancyCheck && matrixId ==6) continue;
286382a3 220
221 Float_t efficiency = counts/npulses;
222
14374702 223 if(matrixId > 0){
286382a3 224 Int_t response = IsSelected(efficiency);
225 if( response >=0) {
226 if(quality < response) quality = response;
227 }
228 else return -1;
229 }
230 }
231 return quality;
232}
233//-----------------------------------------------------
234Int_t AliITSOnlineSPDfoAnalyzer::IsSelected(Float_t eff) const
235{
236 //
237 // returns the quality of the selection
238 //
14374702 239
240 for(Int_t i=0; i<3; i++){
286382a3 241 if(eff <= 1.+ fGeneralThresholds[i] && eff >= 1. - fGeneralThresholds[i] ) return i;
242 }
243 return -1;
244}
245//----------------------------------------------------
246void AliITSOnlineSPDfoAnalyzer::Process()
247{
248 //
249 // The procedure is the following:
250 // - DAC 4-tuples are checked
251 // - if the 4-tuple survives the selection, the chip-related histograms are filled.
252 // (- Per each histogram the mean values of each axis are taken)
253 //
14374702 254
286382a3 255 if(!fFOHandler) {
256 Warning("AliITSOnlineSPDfoAnalyzer::Process","no fo object. Exiting.. \n");
257 return;
258 }
259
260 TKey *key;
261 Double_t *dacvalues;
286382a3 262 TIter iter((fFOHandler->GetFile())->GetListOfKeys());
263 while ((key = (TKey*)(iter.Next()))) {
264 TString classname = key->GetClassName();
265 if(classname.Contains("OnlineSPD")) break;
266
267 TObjArray *array = (TObjArray*)(fFOHandler->GetFile())->Get(key->GetName()); // array of chips corresponding to the DACS (size 1-60)
268 if(!array){
14374702 269 printf("no array found! Exiting...\n");
286382a3 270 break;
271 }
272
273 dacvalues = fFOHandler->GetDACvaluesD(key->GetName(), GetFOHandler()->GetFOscanInfo()->GetNumDACindex());
274
275 for(Int_t i=0; i< array->GetSize(); i++){
14374702 276 AliITSOnlineSPDfoChip *chip = (AliITSOnlineSPDfoChip *)array->At(i);
277
286382a3 278 if(!chip) continue;
279 Int_t hs = chip->GetActiveHS();
280 Int_t chipid = chip->GetChipId();
281 Int_t quality = Select(chip);
282 if(quality<0) continue;
283 if(!fNh[quality][hs][chipid]) BuildTHnSparse(hs,chipid);
284 fNh[quality][hs][chipid]->Fill(dacvalues);
285 }
286 }
287}
288//---------------------------------------------
289void AliITSOnlineSPDfoAnalyzer::WriteToFile(TString outputfile)
290{
291 //
292 // The 4-dim histograms are stored into a file
293 //
294
295 TFile * f = TFile::Open(outputfile.Data(),"recreate");
296 for(Int_t ihs =0; ihs < 6; ihs++) {
297 for(Int_t ichip =0; ichip < 10; ichip++){
14374702 298 for(Int_t i=0; i<kNqualityFlags ; i++ ) {
299 if(fNh[i][ihs][ichip]) f->WriteObjectAny(fNh[i][ihs][ichip],"THnSparse",Form("h%i_hs%i_chip%i",i,ihs,ichip));
300 }
301
286382a3 302 }
303 }
304 f->Close();
305}
306//---------------------------------------------
307void AliITSOnlineSPDfoAnalyzer::CheckResults(TString filename, Int_t hs, Int_t ichip, Int_t iqual) const
308{
309 //
310 //The chip related 4-dim histograms are produced and stored into eps files
311 //
312
313 TFile *f = TFile::Open(filename.Data());
314 if(!f) {
315 Info("AliITSOnlineSPDfoAnalyzer::CehckResults","no file open!. Exiting...\n");
316 return;
317 }
318
319 THnSparse *hn;
320 TObject *obj;
321
322 TIter iter(f->GetListOfKeys());
323 while((obj=iter.Next())){
324 TString name = obj->GetName();
325 hn=(THnSparse*)f->Get(name.Data());
326 if(name.Contains(Form("hs%i",hs)) && name.Contains(Form("chip%i",ichip)) && name.Contains(Form("h%i",iqual))) GetCanvases(hn,hs,ichip,iqual);
327 }
328}
329//-----------------------------------------------------------------------------------------------
330void AliITSOnlineSPDfoAnalyzer::GetCanvases(const THnSparse *hn,Int_t hs, Int_t chip, Int_t iqual) const
331{
332 //
333 // 1-Dim and 2 Dim Projections of 4-dim histograms are visualized in canvases per quality selection
334 //
335 //
336
14374702 337 if(!hn) {printf("no thnsparse...exiting!\n"); return;}
286382a3 338
339 gStyle->SetPalette(1);
340
341 TString dacname[4];
342
343 if( (fFOHandler->GetFOscanInfo())->GetDACindex(0) == 20 ) dacname[0] = "FOPOL";
344 else dacname[0] = "possible DAC-name/ DAC-register-number mismatch";
345 if( (fFOHandler->GetFOscanInfo())->GetDACindex(1) == 17 ) dacname[1] = "CONVPOL";
346 else dacname[1] = "possible DAC-name/ DAC-register-number mismatch";
347 if( (fFOHandler->GetFOscanInfo())->GetDACindex(2) == 16 ) dacname[2] = "COMPREF";
348 else dacname[2] = "possible DAC-name/ DAC-register-number mismatch";
349 if( (fFOHandler->GetFOscanInfo())->GetDACindex(3) == 39 ) dacname[3] = "pre_VTH";
350 else dacname[3] = "possible DAC-name/ DAC-register-number mismatch";
351
352 TString titles = Form("|eff-1| <= %f for CHIP %i in HS %i",fGeneralThresholds[iqual],hs,chip);
353 TCanvas *c[3];
354
355 for(Int_t i=0; i<2; i++) {
356 c[i] = new TCanvas(Form("c%i",i+1),Form(" %i DIM plots. %s ",i+1,titles.Data()),1200,800);
357 c[i]->Divide(2,2);
358 }
359
360
361 for(Int_t idim =0; idim<2; idim++){
362 for(Int_t k=1; k<5; k++){
363 c[idim]->cd(k);
364
365 TH1D *h1 =0x0;
366 TH2D *h2=0x0;
367 if(idim == 0) {
368 h1 = hn->Projection(k-1);
369 if(!h1) printf("no histogram!!...\n\n\n");
370 h1->SetXTitle(Form("DAC %i ( %s )",k-1,dacname[k-1].Data()));
371 h1->SetYTitle("entries (eff within thresholds)");
372 h1->Draw();
373 }
374
375 if(idim==1) {
376 if(k<4){
377 h2 = hn->Projection(k-1,k);
378 h2->SetXTitle(Form("DAC %i ( %s )",k,dacname[k].Data())); h2->SetYTitle(Form("DAC %i ( %s )",k-1,dacname[k-1].Data()));
379 h2->SetTitleOffset(2,"Y"); h2->SetTitleOffset(1.5,"X");
380 } else {
381 h2 = hn->Projection(0,3);
382 h2->SetXTitle(Form("DAC %i ( %s )",3,dacname[3].Data())); h2->SetYTitle(Form("DAC %i ( %s )",0, dacname[0].Data()));
383 h2->SetTitleOffset(2,"Y"); h2->SetTitleOffset(1.5,"X");
384 }
385
386 h2->Draw("lego2");
387 }
388 }// k loop
389
390 c[idim]->SaveAs(Form("c%iDIM_%i_%i_%i.eps",idim,iqual,hs,chip));
391 }// idim loop
392}
393//-----------------------------------------------------
394TArrayI AliITSOnlineSPDfoAnalyzer::ChooseDACValues(Int_t hs, Int_t chip) const
395{
396 //
397 // here the "best" 4 dacs are chosen. The most present are taken.
398 // If the n-tuple does not correspond to a meaningful entry, the
399 // closest value to the mean point in the n-dimensional histogram
400 // is taken.
401
14374702 402 TH1D *tmp[5];
403 if(fNdims > 5) printf("AliITSOnlineSPDfoAnalyzer::ChooseDACValues -> N. of dimensions are more than expected! Break! \n");
286382a3 404 TArrayI dacs(fNdims+1);
405
406 for(Int_t i=0; i<fNdims+1; i++) dacs.AddAt(-1,i);
407
408 for(Int_t iqual =0; iqual < kNqualityFlags; iqual++){
409 if(!fNh[iqual][hs][chip]) continue;
410 if(fNh[iqual][hs][chip]->GetEntries()==0) continue;
411 for(Int_t idim =0; idim<fNdims; idim++){
412 if(dacs.At(idim)>=0) continue;
14374702 413 tmp[idim] = fNh[iqual][hs][chip]->Projection(idim);
414 dacs.AddAt((Int_t)tmp[idim]->GetBinLowEdge(tmp[idim]->GetMaximumBin()+1),idim);
286382a3 415 Int_t bin=-1;
14374702 416 if(fFOHandler->GetFOscanInfo()->GetDACindex(idim)==fFOHandler->kIdPreVTH && CorrectPreVTHChioce(tmp[idim],bin)) {
417 dacs.AddAt((Int_t)tmp[idim]->GetBinLowEdge(bin+1),idim);
20e12a0a 418 }
286382a3 419 dacs.AddAt(iqual,fNdims);
420 }//idim
421 }//iqual
422
423 if(!IsExisting(dacs,hs,chip) && dacs.At(fNdims)>-1) {
14374702 424 TArrayI centraldacs = GetCentralDACS(dacs.At(fNdims),hs,chip,tmp);
286382a3 425 dacs = centraldacs;
426 }
427 return dacs;
428}
429//_____________________________________________________
430Bool_t AliITSOnlineSPDfoAnalyzer::IsExisting(TArrayI dacs,Int_t hs, Int_t chip) const
431{
432 //
433 // check the N-tuple corresponds to a real one
434 //
435
436 if(dacs.At(fNdims)<0) return kFALSE;
437 Bool_t isOk = kFALSE;
438
439 Int_t size = dacs.GetSize()-1;
440 Double_t *entry = new Double_t[size];
441 for(Int_t i=0; i<size; i++) entry[i] = dacs.At(i);
442 Int_t checkbin = fNh[dacs.At(dacs.GetSize()-1)][hs][chip]->GetBin(entry,kFALSE); // kFALSE does not allocate another bin
443 if(checkbin > -1) isOk = kTRUE;
444 delete entry;
445 return isOk;
446}
447//-----------------------------------------------------------
14374702 448TArrayI AliITSOnlineSPDfoAnalyzer::GetCentralDACS(Int_t qualityflag, Int_t hs, Int_t chip, TH1D **hd) const
286382a3 449{
450 //
451 // This method gets the DAC values which are closest to the mean point in the N-dim histogram
452 // It is called when the most probable DAC set does not correspond to a real entry in the N-dim
453 // histogram.
454 //
455
456 TArrayI dacs(fNdims+1);
457
458 Double_t *mean=new Double_t[fNdims];
459 Int_t *goodbins=new Int_t[fNdims];
14374702 460 Double_t distance = 9999999;
461 for(Int_t i=0; i<fNdims ;i++){
462 mean[i]=hd[i]->GetMean();
286382a3 463 goodbins[i]=0;
464 dacs.AddAt(-1,i);
465 }
466
467 Int_t *bins = new Int_t[fNdims];
468 Double_t *val=new Double_t[fNdims];
469
470 for(Int_t in=0; in< fNh[qualityflag][hs][chip]->GetNbins() ; in++){
471
472 fNh[qualityflag][hs][chip]->GetBinContent(in,bins);
473 Double_t r2 = 0;
474 for(Int_t j=0; j<fNdims; j++) {
14374702 475 val[j] = hd[j]->GetBinCenter(bins[j]);
286382a3 476 r2+=TMath::Power(val[j]-mean[j],2);
477 }
478
479 if(r2<distance) {
480 distance = r2;
481 fNh[qualityflag][hs][chip]->GetBinContent(in,goodbins);
482 }
483 }
484
14374702 485
486 for(Int_t k=0; k<fNdims; k++) {
487 dacs.AddAt((Int_t)(hd[k]->GetBinCenter(goodbins[k]) + 0.5*hd[k]->GetBinWidth(goodbins[k])),k);
286382a3 488 }
14374702 489
286382a3 490 dacs.AddAt(qualityflag,fNdims);
491
14374702 492
286382a3 493 delete mean;
494 delete goodbins;
495 delete bins;
496 delete val;
497 return dacs;
498}
499//-------------------------------------------------------
500void AliITSOnlineSPDfoAnalyzer::ReadParamsFromLocation(const Char_t *dirName)
501{
502 //
503 // opens file (default name) in dir dirName and reads parameters from it
504 // The file should be in database
505 //
506
507 TString paramsFileName = Form("./%s/focalib_params.txt",dirName);
508
509 ifstream paramsFile;
510 paramsFile.open(paramsFileName, ifstream::in);
511 if (paramsFile.fail()) {
512 printf("No config file (%s) present. Using default tuning parameters.\n",paramsFileName.Data());
513 }
514 else {
515 while(1) {
516 Char_t paramN[50];
517 Char_t paramV[50];
518 paramsFile >> paramN;
519 if (paramsFile.eof()) break;
520 paramsFile >> paramV;
521 SetParam(paramN,paramV);
522 if (paramsFile.eof()) break;
523 }
524 paramsFile.close();
525 }
526}
527//---------------------------------------------------------
528void AliITSOnlineSPDfoAnalyzer::SetParam(const Char_t *pname, const Char_t *pval)
529{
530 //
531 // sets a single parameter when reading from a file in the database
532 //
533
534 TString name = pname;
535 TString val = pval;
536
537
538 if (name.CompareTo("fGeneralThresholds0")==0) {
539 fGeneralThresholds[0] = val.Atof();
540 }
541 else if (name.CompareTo("fGeneralThresholds1")==0) {
542 fGeneralThresholds[1] = val.Atof();
543 }
544 else if (name.CompareTo("fGeneralThresholds2")==0) {
545 fGeneralThresholds[2] = val.Atof();
546 }
547 else {
548 Error("AliITSOnlineSPDscanAnalyzer::SetParam","Parameter %s in configuration file unknown.",name.Data());
549 }
550}
551//--------------------------------------------------------
552Bool_t AliITSOnlineSPDfoAnalyzer::CorrectPreVTHChioce(const TH1D *h,Int_t &bin) const
553{
554 //
555 // Checks if more maxima of the same height are present in the pre_VTH case
556 //
557
20e12a0a 558
14374702 559 Int_t maxbin = (Int_t)h->GetMaximumBin();
20e12a0a 560 Double_t maxentries = h->GetBinContent(maxbin);
561
14374702 562 Int_t binindex = -1;
286382a3 563 Bool_t check=kFALSE;
564
14374702 565 for(Int_t i=0; i< h->GetNbinsX(); i++){
20e12a0a 566 if(h->GetBinContent(i) == maxentries){
14374702 567 if(binindex <= i) binindex =i;
286382a3 568 }
569 }
570
14374702 571
572 if(binindex>-1) {
573 bin=binindex;
286382a3 574 check = kTRUE;
575 }
20e12a0a 576
577
286382a3 578 return check;
579}