]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSQASDDDataMakerRec.cxx
Use for PID in ITS the Bethe Bloch from AliExternalTrackParam
[u/mrichter/AliRoot.git] / ITS / AliITSQASDDDataMakerRec.cxx
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 /* $Id$ */
17
18 //  *************************************************************
19 //  Checks the quality assurance 
20 //  by comparing with reference data
21 //  contained in a DB
22 //  -------------------------------------------------------------
23 //  W. Ferrarese + P. Cerello Feb 2008
24 //  M.Siciliano Aug 2008 QA RecPoints and HLT mode
25 //  INFN Torino
26
27 // --- ROOT system ---
28
29 #include <TProfile2D.h>
30 #include <TH2D.h>
31 #include <TBranch.h>
32 #include <TTree.h>
33 #include <TGaxis.h>
34 #include <TMath.h>
35 #include <TDirectory.h>
36 #include <TSystem.h>
37 // --- Standard library ---
38
39 // --- AliRoot header files ---
40 #include "AliITSQASDDDataMakerRec.h"
41 #include "AliLog.h"
42 #include "AliQAv1.h"
43 #include "AliQAChecker.h"
44 #include "AliRawReader.h"
45 #include "AliITSRawStream.h"
46 #include "AliITSRawStreamSDD.h"
47 #include "AliITSRawStreamSDDCompressed.h"
48 #include "AliITSDetTypeRec.h"
49 #include "AliITSdigit.h"
50 #include "AliITSRecPoint.h"
51 #include "AliITSgeomTGeo.h"
52 #include "AliITSHLTforSDD.h"
53 #include "AliCDBManager.h"
54 #include "AliCDBStorage.h"
55 #include "AliCDBEntry.h"
56 #include "Riostream.h"
57 #include "AliITSdigitSDD.h"
58 #include "AliITS.h"
59 #include "AliRunLoader.h"
60 #include "AliITSLoader.h"
61 #include "AliITSDetTypeRec.h"
62
63
64
65 ClassImp(AliITSQASDDDataMakerRec)
66
67 //____________________________________________________________________________ 
68 AliITSQASDDDataMakerRec::AliITSQASDDDataMakerRec(AliITSQADataMakerRec *aliITSQADataMakerRec, Bool_t kMode, Short_t ldc) :
69 TObject(),
70 fAliITSQADataMakerRec(aliITSQADataMakerRec),
71 fkOnline(kMode),
72 fLDC(ldc),
73 fSDDhRawsTask(0),
74 fSDDhDigitsTask(0),
75 fSDDhRecPointsTask(0),
76 fGenRawsOffset(0),
77 fGenDigitsOffset(0),
78 fGenRecPointsOffset(0),
79 fTimeBinSize(1),
80 fDDLModuleMap(0),
81 fHLTMode(0),
82 fHLTSDD(0)
83 {
84   //ctor used to discriminate OnLine-Offline analysis
85   if(fLDC < 0 || fLDC > 4) {
86         AliError("Error: LDC number out of range; return\n");
87   }
88   if(!fkOnline){AliInfo("Offline mode: HLT set from AliITSDetTypeRec for SDD\n");}
89   else
90     if(fkOnline){
91       AliInfo("Online mode: HLT set from environment for SDD\n");
92       SetHLTModeFromEnvironment();
93     }
94   //fDDLModuleMap=NULL;
95 }
96
97 //____________________________________________________________________________ 
98 AliITSQASDDDataMakerRec::AliITSQASDDDataMakerRec(const AliITSQASDDDataMakerRec& qadm) :
99 TObject(),
100 fAliITSQADataMakerRec(qadm.fAliITSQADataMakerRec),
101 fkOnline(qadm.fkOnline),
102 fLDC(qadm.fLDC),
103 fSDDhRawsTask(qadm.fSDDhRawsTask),
104 fSDDhDigitsTask(qadm.fSDDhDigitsTask),
105 fSDDhRecPointsTask(qadm.fSDDhRecPointsTask),
106 fGenRawsOffset(qadm.fGenRawsOffset),
107 fGenDigitsOffset(qadm.fGenDigitsOffset),
108 fGenRecPointsOffset(qadm.fGenRecPointsOffset),
109 fTimeBinSize(1),
110 fDDLModuleMap(0),
111 fHLTMode(qadm.fHLTMode),
112 fHLTSDD( qadm.fHLTSDD)
113 {
114   //copy ctor 
115   fAliITSQADataMakerRec->SetName((const char*)qadm.fAliITSQADataMakerRec->GetName()) ; 
116   fAliITSQADataMakerRec->SetTitle((const char*)qadm.fAliITSQADataMakerRec->GetTitle());
117   fDDLModuleMap=NULL;
118 }
119
120 //____________________________________________________________________________ 
121 AliITSQASDDDataMakerRec::~AliITSQASDDDataMakerRec(){
122   // destructor
123   //    if(fDDLModuleMap) delete fDDLModuleMap;
124 }
125 //__________________________________________________________________
126 AliITSQASDDDataMakerRec& AliITSQASDDDataMakerRec::operator = (const AliITSQASDDDataMakerRec& qac )
127 {
128   // Equal operator.
129   this->~AliITSQASDDDataMakerRec();
130   new(this) AliITSQASDDDataMakerRec(qac);
131   return *this;
132 }
133
134 //____________________________________________________________________________ 
135 void AliITSQASDDDataMakerRec::StartOfDetectorCycle()
136 {
137   //Detector specific actions at start of cycle
138   AliDebug(AliQAv1::GetQADebugLevel(),"AliITSQADM::Start of SDD Cycle\n");
139 }
140
141 //____________________________________________________________________________ 
142 void AliITSQASDDDataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t /*task*/, TObjArray* /*list*/)
143 {
144   // launch the QA checking
145   AliDebug(AliQAv1::GetQADebugLevel(),"AliITSDM instantiates checker with Run(AliQAv1::kITS, task, list)\n"); 
146 }
147
148 //____________________________________________________________________________ 
149 Int_t AliITSQASDDDataMakerRec::InitRaws()
150
151   // Initialization for RAW data - SDD -
152   const Bool_t expert   = kTRUE ; 
153   const Bool_t saveCorr = kTRUE ; 
154   const Bool_t image    = kTRUE ; 
155   Int_t rv = 0 ; 
156   //fGenRawsOffset = (fAliITSQADataMakerRec->fRawsQAList[AliRecoParam::kDefault])->GetEntries();
157   AliCDBEntry *ddlMapSDD = AliCDBManager::Instance()->Get("ITS/Calib/DDLMapSDD");
158   Bool_t cacheStatus = AliCDBManager::Instance()->GetCacheFlag();
159   if(!ddlMapSDD)
160     {
161       AliError("Calibration object retrieval failed! SDD will not be processed");
162       fDDLModuleMap = NULL;
163       return rv;
164     }
165   fDDLModuleMap = (AliITSDDLModuleMapSDD*)ddlMapSDD->GetObject();
166   if(!cacheStatus)ddlMapSDD->SetObject(NULL);
167   ddlMapSDD->SetOwner(kTRUE);
168   if(!cacheStatus)
169     {
170       delete ddlMapSDD;
171     }
172   
173   if(fkOnline==kFALSE){
174     AliInfo("Offline mode: HLTforSDDobject used \n");
175     AliCDBEntry *hltforSDD = AliCDBManager::Instance()->Get("ITS/Calib/HLTforSDD");
176     if(!hltforSDD){
177       AliError("Calibration object retrieval failed! SDD will not be processed");    
178       fHLTSDD=NULL;
179       return rv;
180     }  
181     fHLTSDD = (AliITSHLTforSDD*)hltforSDD->GetObject();
182     if(!cacheStatus)hltforSDD->SetObject(NULL);
183     hltforSDD->SetOwner(kTRUE);
184     if(!cacheStatus)
185       {
186         delete hltforSDD;
187       }
188   }
189   Int_t lay, lad, det;
190   Int_t indexlast = 0;
191   Int_t index1 = 0;
192
193   if(fkOnline) 
194     {
195       AliInfo("Book Online Histograms for SDD\n");
196     }
197   else 
198     {
199       AliInfo("Book Offline Histograms for SDD\n ");
200     }
201   TH1D *h0 = new TH1D("SDDModPattern","HW Modules pattern",fgknSDDmodules,239.5,499.5); //0
202   h0->GetXaxis()->SetTitle("Module Number");
203   h0->GetYaxis()->SetTitle("Counts");
204    rv = fAliITSQADataMakerRec->Add2RawsList((new TH1D(*h0)),0+fGenRawsOffset, expert, !image, !saveCorr);
205   delete h0;
206   fSDDhRawsTask++;
207   
208   //zPhi distribution using ladder and modules numbers
209   TH2D *hphil3 = new TH2D("SDDphizL3","SDD #varphiz Layer3 ",6,0.5,6.5,14,0.5,14.5);
210   hphil3->GetXaxis()->SetTitle("z[#Module L3 ]");
211   hphil3->GetYaxis()->SetTitle("#varphi[#Ladder L3]");
212    rv = fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hphil3)),1+fGenRawsOffset, !expert, image, saveCorr); 
213   delete hphil3;
214   fSDDhRawsTask++;
215   
216   TH2D *hphil4 = new TH2D("SDDphizL4","SDD #varphiz Layer4 ",8,0.5,8.5,22,0.5,22.5); 
217   hphil4->GetXaxis()->SetTitle("z[#Module L4]");
218   hphil4->GetYaxis()->SetTitle("#varphi[#Ladder L4]");
219    rv = fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hphil4)),2+fGenRawsOffset, !expert, image, saveCorr); 
220   delete hphil4;
221   fSDDhRawsTask++;
222   
223
224   if(fkOnline) 
225     {
226
227       //DDL Pattern 
228       TH2D *hddl = new TH2D("SDDDDLPattern","SDD DDL Pattern ",24,-0.5,23.5,24,-0.5,23.5); 
229       hddl->GetXaxis()->SetTitle("Channel");
230       hddl->GetYaxis()->SetTitle("#DDL");
231       rv = fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hddl)),3+fGenRawsOffset, expert, !image, !saveCorr);
232       delete hddl;
233       fSDDhRawsTask++;
234       Int_t indexlast1 = 0;
235   
236       fTimeBinSize = 4;
237       indexlast = 0;
238       index1 = 0;
239       indexlast1 = fSDDhRawsTask;
240       char *hname[3];
241       for(Int_t i=0; i<3; i++) hname[i]= new char[50];
242       for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
243         for(Int_t iside=0;iside<fgknSide;iside++){
244           AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
245           sprintf(hname[0],"SDDchargeMapFSE_L%d_%d_%d_%d",lay,lad,det,iside);
246           sprintf(hname[1],"SDDChargeMapForSingleEvent_L%d_%d_%d_%d",lay,lad,det,iside);
247           //      sprintf(hname[2],"SDDhmonoDMap_L%d_%d_%d_%d",lay,lad,det,iside);
248           TProfile2D *fModuleChargeMapFSE = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
249           fModuleChargeMapFSE->GetXaxis()->SetTitle("Time Bin");
250           fModuleChargeMapFSE->GetYaxis()->SetTitle("Anode");
251            rv = fAliITSQADataMakerRec->Add2RawsList((new TProfile2D(*fModuleChargeMapFSE)),indexlast1 + index1 + fGenRawsOffset, expert, !image, !saveCorr);
252           delete fModuleChargeMapFSE;
253           
254           fSDDhRawsTask++;
255           index1++;      
256         }
257       }
258       
259       for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
260         for(Int_t iside=0;iside<fgknSide;iside++){
261           AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
262           sprintf(hname[0],"SDDchargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
263           sprintf(hname[1],"SDDChargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
264           TProfile2D *fModuleChargeMap = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
265           fModuleChargeMap->GetXaxis()->SetTitle("Time Bin");
266           fModuleChargeMap->GetYaxis()->SetTitle("Anode");
267            rv = fAliITSQADataMakerRec->Add2RawsList((new TProfile2D(*fModuleChargeMap)),indexlast1 + index1 + fGenRawsOffset, expert, !image, !saveCorr);
268           delete fModuleChargeMap;
269           
270           fSDDhRawsTask++;
271           index1++;      
272         }
273       }
274       
275     }  // kONLINE
276   
277   AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Raws histograms booked\n",fSDDhRawsTask));
278   return rv ; 
279 }
280
281
282 //____________________________________________________________________________
283 Int_t AliITSQASDDDataMakerRec::MakeRaws(AliRawReader* rawReader)
284
285   // Fill QA for RAW - SDD -
286   
287   Int_t rv = 0 ; 
288
289   if(!fDDLModuleMap){
290     AliError("SDD DDL module map not available - skipping SDD QA");
291     return rv;
292   }
293   if(rawReader->GetType() != 7) return rv;  // skips non physical triggers
294   AliDebug(AliQAv1::GetQADebugLevel(),"entering MakeRaws\n");                 
295   
296   // Check id histograms already created for this Event Specie
297   if ( ! fAliITSQADataMakerRec->GetRawsData(fGenRawsOffset) )
298     rv = InitRaws () ;
299   
300   rawReader->Reset();       
301   AliITSRawStream *stream;
302   
303   if(fkOnline==kTRUE)
304     {
305       if(GetHLTMode()==kTRUE)
306         {
307           //AliInfo("Online  mode: HLT C compressed mode used for SDD\n");
308           stream = new AliITSRawStreamSDDCompressed(rawReader); }
309       else{ 
310         //AliInfo("Online  mode: HLT A mode used for SDD\n");
311         stream = new AliITSRawStreamSDD(rawReader);}     
312     }
313   else 
314     {
315       if(fHLTSDD->IsHLTmodeC()==kTRUE){
316         //AliInfo("Offline  mode: HLT C compressed mode used for SDD\n");
317         stream = new AliITSRawStreamSDDCompressed(rawReader);
318       }else 
319         {
320           //AliInfo("Offline  mode: HLT A mode used for SDD\n");
321           stream = new AliITSRawStreamSDD(rawReader);
322         }
323     }
324   
325   //ckeck on HLT mode
326  
327   //  AliITSRawStreamSDD s(rawReader); 
328   stream->SetDDLModuleMap(fDDLModuleMap);
329   
330   Int_t lay, lad, det; 
331   
332   Int_t index=0;
333   if(fkOnline) {
334     for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
335       for(Int_t iside=0;iside<fgknSide;iside++) {
336         if(fSDDhRawsTask > 4 + index) fAliITSQADataMakerRec->GetRawsData(4 + index +fGenRawsOffset)->Reset();   
337         // 4  because the 2D histos for single events start after the fourth position
338         index++;
339       }
340     }
341   }
342   
343   Int_t cnt = 0;
344   Int_t ildcID = -1;
345   Int_t iddl = -1;
346   Int_t isddmod = -1;
347   Int_t coord1, coord2, signal, moduleSDD, activeModule, index1; 
348   
349   while(stream->Next()) {
350     ildcID = rawReader->GetLDCId();
351     iddl = rawReader->GetDDLID() - fgkDDLIDshift;
352     
353     isddmod = fDDLModuleMap->GetModuleNumber(iddl,stream->GetCarlosId());
354     if(isddmod==-1){
355       AliDebug(AliQAv1::GetQADebugLevel(),Form("Found module with iddl: %d, stream->GetCarlosId: %d \n",iddl,stream->GetCarlosId()));
356       continue;
357     }
358     if(stream->IsCompletedModule()) {
359       AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedModule == KTRUE\n"));
360       continue;
361     } 
362     if(stream->IsCompletedDDL()) {
363       AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedDDL == KTRUE\n"));
364       continue;
365     } 
366     
367     coord1 = stream->GetCoord1();
368     coord2 = stream->GetCoord2();
369     signal = stream->GetSignal();
370     
371     moduleSDD = isddmod - fgkmodoffset;
372     
373     if(isddmod <fgkmodoffset|| isddmod>fgknSDDmodules+fgkmodoffset-1) {
374       AliDebug(AliQAv1::GetQADebugLevel(),Form( "Module SDD = %d, resetting it to 1 \n",isddmod));
375       isddmod = 1;
376     }
377     
378     AliITSgeomTGeo::GetModuleId(isddmod, lay, lad, det);
379
380     
381     fAliITSQADataMakerRec->GetRawsData( 0 + fGenRawsOffset )->Fill(isddmod);   
382     
383     if(lay==3)    fAliITSQADataMakerRec->GetRawsData(1+fGenRawsOffset)->Fill(det,lad); 
384     if(lay==4) { 
385       fAliITSQADataMakerRec->GetRawsData(2+fGenRawsOffset)->Fill(det,lad);}  
386     
387     Short_t iside = stream->GetChannel();
388     
389
390     
391
392     if(fkOnline) {
393
394       fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset)->Fill(2*(stream->GetCarlosId())+iside,iddl);
395
396       activeModule = moduleSDD;
397       index1 = activeModule * 2 + iside;
398       
399       if(index1<0){
400         AliDebug(AliQAv1::GetQADebugLevel(),Form("Wrong index number %d - patched to 0\n",index1));
401         index1 = 0;
402       }      
403       fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset)->Fill(2*(stream->GetCarlosId())+iside,iddl);
404       if(fSDDhRawsTask > 4 + index1) {                                  
405         ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(4 + index1 +fGenRawsOffset)))->Fill(coord2, coord1, signal);     
406         ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(4 + index1 + 260*2 +fGenRawsOffset)))->Fill(coord2, coord1, signal); 
407       }
408     }
409     cnt++;
410     if(!(cnt%10000)) AliDebug(AliQAv1::GetQADebugLevel(),Form(" %d raw digits read",cnt));
411   }
412   AliDebug(AliQAv1::GetQADebugLevel(),Form("Event completed, %d raw digits read",cnt)); 
413   delete stream;
414   stream = NULL; 
415   return rv ; 
416 }
417
418 //____________________________________________________________________________ 
419 Int_t AliITSQASDDDataMakerRec::InitDigits()
420
421
422   //printf(" ======================================================> Init digits\n " );
423   // Initialization for DIGIT data - SDD -  
424   const Bool_t expert   = kTRUE ; 
425   const Bool_t image    = kTRUE ;
426   Int_t rv = 0 ; 
427 //  fGenDigitsOffset = (fAliITSQADataMakerRec->fDigitsQAList[AliRecoParam::kDefault])->GetEntries();
428   //fSDDhTask must be incremented by one unit every time a histogram is ADDED to the QA List
429   TH1F* h0=new TH1F("SDD DIGITS Module Pattern","SDD DIGITS Module Pattern",260,239.5,499.5);       //hmod
430   h0->GetXaxis()->SetTitle("SDD Module Number");
431   h0->GetYaxis()->SetTitle("# DIGITS");
432   rv = fAliITSQADataMakerRec->Add2DigitsList(h0,fGenDigitsOffset, !expert, image);
433   fSDDhDigitsTask ++;
434   TH1F* h1=new TH1F("SDD Anode Distribution","DIGITS Anode Distribution",512,-0.5,511.5);      //hanocc
435   h1->GetXaxis()->SetTitle("Anode Number");
436   h1->GetYaxis()->SetTitle("# DIGITS");
437   rv = fAliITSQADataMakerRec->Add2DigitsList(h1,1+fGenDigitsOffset, !expert, image);
438   fSDDhDigitsTask ++;
439   TH1F* h2=new TH1F("SDD Tbin Distribution","DIGITS Tbin Distribution",256,-0.5,255.5);      //htbocc
440   h2->GetXaxis()->SetTitle("Tbin Number");
441   h2->GetYaxis()->SetTitle("# DIGITS");
442   rv = fAliITSQADataMakerRec->Add2DigitsList(h2,2+fGenDigitsOffset, !expert, image);
443   fSDDhDigitsTask ++;
444   TH1F* h3=new TH1F("SDD ADC Counts Distribution","DIGITS ADC Counts Distribution",200,0.,1024.);          //hsig
445   h3->GetXaxis()->SetTitle("ADC Value");
446   h3->GetYaxis()->SetTitle("# DIGITS");
447   rv = fAliITSQADataMakerRec->Add2DigitsList(h3,3+fGenDigitsOffset, !expert, image);
448   fSDDhDigitsTask ++;
449   AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Digits histograms booked\n",fSDDhDigitsTask));
450   return rv ; 
451 }
452
453 //____________________________________________________________________________
454 Int_t AliITSQASDDDataMakerRec::MakeDigits(TTree * digits)
455
456   //printf(" ======================================================> make digits\n " );
457   // Fill QA for DIGIT - SDD -
458   //AliITS *fITS  = (AliITS*)gAlice->GetModule("ITS");
459   //fITS->SetTreeAddress();
460   //TClonesArray *iITSdigits  = fITS->DigitsAddress(1);
461
462
463   Int_t rv = 0 ; 
464
465   TBranch *branchD = digits->GetBranch("ITSDigitsSDD");
466
467   if (!branchD) {
468     AliError("can't get the branch with the ITS SDD digits !");
469     return rv ;
470   }
471   // Check id histograms already created for this Event Specie
472   if ( ! fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset) )
473     rv = InitDigits() ;
474   
475   static TClonesArray statDigits("AliITSdigitSDD");
476   TClonesArray *iITSdigits = &statDigits;
477   branchD->SetAddress(&iITSdigits);
478
479   for(Int_t i=0; i<260; i++){
480     Int_t nmod=i+240;
481     digits->GetEvent(nmod);
482     Int_t ndigits = iITSdigits->GetEntries();
483     fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset)->Fill(nmod,ndigits);
484     //printf(" Filled:  =======================================> %s \t %i \t %i \n",fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset)->GetName(), nmod, ndigits );
485     for (Int_t idig=0; idig<ndigits; idig++) {
486       AliITSdigit *dig=(AliITSdigit*)iITSdigits->UncheckedAt(idig);
487       Int_t iz=dig->GetCoord1();  // cell number z
488       Int_t ix=dig->GetCoord2();  // cell number x
489       Int_t sig=dig->GetSignal();
490       fAliITSQADataMakerRec->GetDigitsData(1+fGenDigitsOffset)->Fill(iz);
491       fAliITSQADataMakerRec->GetDigitsData(2+fGenDigitsOffset)->Fill(ix);
492       fAliITSQADataMakerRec->GetDigitsData(3+fGenDigitsOffset)->Fill(sig);
493     }
494   }
495   return rv ; 
496 }
497
498 //____________________________________________________________________________ 
499 Int_t AliITSQASDDDataMakerRec::InitRecPoints()
500 {
501   // Initialization for RECPOINTS - SDD -
502   const Bool_t expert   = kTRUE ; 
503   const Bool_t image    = kTRUE ; 
504   Int_t rv = 0 ; 
505 //  fGenRecPointsOffset = (fAliITSQADataMakerRec->fRecPointsQAList[AliRecoParam::kDefault])->GetEntries();
506
507   Int_t nOnline=1;
508   Int_t  nOnline2=1;
509   Int_t  nOnline3=1; 
510   Int_t  nOnline4=1;
511   if(fkOnline)
512     {
513       nOnline=4;
514       nOnline2=28;
515       nOnline3=64;
516       nOnline4=14;
517     }
518
519   
520   TH1F *h0 = new TH1F("SDDLay3TotCh","Layer 3 total charge",1000/nOnline,-0.5, 499.5); //position number 0
521   h0->GetXaxis()->SetTitle("ADC value");
522   h0->GetYaxis()->SetTitle("Entries");
523   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h0)), 0 +fGenRecPointsOffset, !expert, image);
524   delete h0;
525   fSDDhRecPointsTask++;
526  
527   TH1F *h1 = new TH1F("SDDLay4TotCh","Layer 4 total charge",1000/nOnline,-0.5, 499.5);//position number 1
528   h1->GetXaxis()->SetTitle("ADC value");
529   h1->GetYaxis()->SetTitle("Entries");
530   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h1)), 1 +fGenRecPointsOffset, !expert, image);
531   delete h1;
532   fSDDhRecPointsTask++;
533
534   char hisnam[50];
535   TH2F *h2 = new TH2F("SDDGlobalCoordDistribYX","YX Global Coord Distrib",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 2
536   h2->GetYaxis()->SetTitle("Y[cm]");
537   h2->GetXaxis()->SetTitle("X[cm]");
538   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h2)),2+fGenRecPointsOffset, expert, !image);
539   delete h2;
540   fSDDhRecPointsTask++;
541
542   TH2F *h3 = new TH2F("SDDGlobalCoordDistribRZ","RZ Global Coord Distrib",6400/nOnline3,-32,32,1400/nOnline4,12,26);//position number 3
543   h3->GetYaxis()->SetTitle("R[cm]");
544   h3->GetXaxis()->SetTitle("Z[cm]");
545   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h3)),3+fGenRecPointsOffset, expert, !image);
546   delete h3;
547   fSDDhRecPointsTask++;
548   
549   TH2F *h4 = new TH2F("SDDGlobalCoordDistribL3PHIZ","#varphi Z Global Coord Distrib L3",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 4
550   h4->GetYaxis()->SetTitle("#phi[rad]");
551   h4->GetXaxis()->SetTitle("Z[cm]");
552   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h4)),4+fGenRecPointsOffset, !expert, image);
553   delete h4;
554   fSDDhRecPointsTask++;
555
556   TH2F *h5 = new TH2F("SDDGlobalCoordDistribL4PHIZ","#varphi Z Global Coord Distrib L4",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 5
557   h5->GetYaxis()->SetTitle("#phi[rad]");
558   h5->GetXaxis()->SetTitle("Z[cm]");
559   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h5)),5+fGenRecPointsOffset, !expert, image);
560   delete h5;
561   fSDDhRecPointsTask++;
562   
563   TH1F *h6 = new TH1F("SDDModPatternRP","Modules pattern RP",fgknSDDmodules,239.5,499.5); //position number 6
564   h6->GetXaxis()->SetTitle("Module number"); //spd offset = 240
565   h6->GetYaxis()->SetTitle("Entries");
566   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h6)),6 +fGenRecPointsOffset, expert, !image);
567   delete h6;
568   fSDDhRecPointsTask++;
569   TH1F *h7 = new TH1F("SDDLadPatternL3RP","Ladder pattern L3 RP",14,0.5,14.5);  //position number 7
570   h7->GetXaxis()->SetTitle("Ladder #, Layer 3");
571   h7->GetYaxis()->SetTitle("Entries");
572   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h7)),7 +fGenRecPointsOffset, expert, !image);
573   delete h7;
574   fSDDhRecPointsTask++;
575   TH1F *h8 = new TH1F("SDDLadPatternL4RP","Ladder pattern L4 RP",22,0.5,22.5); //position number 8
576   h8->GetXaxis()->SetTitle("Ladder #, Layer 4");
577   h8->GetYaxis()->SetTitle("Entries");
578   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h8)),8 +fGenRecPointsOffset, expert, !image);
579   delete h8;
580   fSDDhRecPointsTask++;
581   TH2F *h9 = new TH2F("SDDLocalCoordDistrib","Local Coord Distrib",1000/nOnline,-4,4,1000/nOnline,-4,4);//position number 9
582   h9->GetXaxis()->SetTitle("X local coord, drift, cm");
583   h9->GetYaxis()->SetTitle("Z local coord, anode, cm");
584   rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h9)),9 +fGenRecPointsOffset, expert, !image);
585   delete h9;
586   fSDDhRecPointsTask++;
587
588
589     TH1F *h10 = new TH1F("SDDrdistrib_Layer3" ,"SDD r distribution Layer3" ,100,14.,18.);//position number 10 (L3)
590     h10->GetXaxis()->SetTitle("r[cm]");
591     h10->GetXaxis()->CenterTitle();
592     h10->GetYaxis()->SetTitle("Entries");
593     rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h10)),10 +fGenRecPointsOffset, expert, !image);
594     delete h10;
595     fSDDhRecPointsTask++;
596
597     TH1F *h11 = new TH1F("SDDrdistrib_Layer4" ,"SDD r distribution Layer4" ,100,22.,26.);// and position number 11 (L4)
598     h11->GetXaxis()->SetTitle("r[cm]");
599     h11->GetXaxis()->CenterTitle();
600     h11->GetYaxis()->SetTitle("Entries");
601     rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h11)),11 +fGenRecPointsOffset, expert, !image);
602     delete h11;
603     fSDDhRecPointsTask++;
604
605   for(Int_t iLay=0; iLay<=1; iLay++){
606     sprintf(hisnam,"SDDphidistrib_Layer%d",iLay+3);
607     TH1F *h12 = new TH1F(hisnam,hisnam,180,-TMath::Pi(),TMath::Pi());//position number 12 (L3) and position number 13 (L4)
608     h12->GetXaxis()->SetTitle("#varphi[rad]");
609     h12->GetXaxis()->CenterTitle();
610     h12->GetYaxis()->SetTitle("Entries");
611     rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h12)),iLay+12+fGenRecPointsOffset, expert, !image);
612     delete h12;
613     fSDDhRecPointsTask++;
614   }
615
616   if(fkOnline)
617     {
618       TH2F *h14 = new TH2F("SDDGlobalCoordDistribYXFSE","YX Global Coord Distrib FSE",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 14
619       h14->GetYaxis()->SetTitle("Y[cm]");
620       h14->GetXaxis()->SetTitle("X[cm]");
621       rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h14)),14+fGenRecPointsOffset, expert, !image);
622       delete h14;
623       fSDDhRecPointsTask++;
624       
625       TH2F *h15 = new TH2F("SDDGlobalCoordDistribRZFSE","RZ Global Coord Distrib FSE",Int_t(6400/nOnline3),-32,32,1400/nOnline4,12,26);//position number 15
626       h15->GetYaxis()->SetTitle("R[cm]");
627       h15->GetXaxis()->SetTitle("Z[cm]");
628       rv = fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h15)),15+fGenRecPointsOffset, expert, !image);
629       delete h15;
630       fSDDhRecPointsTask++;
631       
632     }//online
633
634   //printf("%d SDD Recs histograms booked\n",fSDDhRecPointsTask);
635
636
637   AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Recs histograms booked\n",fSDDhRecPointsTask));
638
639   return rv ; 
640 }
641
642 //____________________________________________________________________________ 
643 Int_t AliITSQASDDDataMakerRec::MakeRecPoints(TTree * clustersTree)
644 {
645  // Fill QA for RecPoints - SDD -
646   Int_t rv = 0 ; 
647   Int_t lay, lad, det; 
648   TBranch *branchRecP = clustersTree->GetBranch("ITSRecPoints");
649   if (!branchRecP) {
650     AliError("can't get the branch with the ITS clusters !");
651     return rv ;
652   }
653   // Check id histograms already created for this Event Specie
654   if ( ! fAliITSQADataMakerRec->GetRecPointsData(fGenRecPointsOffset) )
655     rv = InitRecPoints() ;
656
657   static TClonesArray statRecpoints("AliITSRecPoint") ;
658   TClonesArray *recpoints = &statRecpoints;
659   branchRecP->SetAddress(&recpoints);
660   Int_t npoints = 0;      
661   Float_t cluglo[3]={0.,0.,0.}; 
662   if(fkOnline)
663     {
664       for(Int_t i=14;i<16;i++)
665         {
666           fAliITSQADataMakerRec->GetRecPointsData(i+fGenRecPointsOffset)->Reset();
667         }
668     }
669   for(Int_t module=0; module<clustersTree->GetEntries();module++){
670     branchRecP->GetEvent(module);
671     npoints += recpoints->GetEntries();
672     AliITSgeomTGeo::GetModuleId(module, lay, lad, det);
673     //printf("modnumb %d, lay %d, lad %d, det %d \n",module, lay, lad, det);
674     for(Int_t j=0;j<recpoints->GetEntries();j++){
675       AliITSRecPoint *recp = (AliITSRecPoint*)recpoints->At(j);    
676       fAliITSQADataMakerRec->GetRecPointsData(6 +fGenRecPointsOffset)->Fill(module);//modpatternrp
677       recp->GetGlobalXYZ(cluglo);
678       Float_t rad=TMath::Sqrt(cluglo[0]*cluglo[0]+cluglo[1]*cluglo[1]); 
679       Float_t phi=TMath::ATan2(cluglo[1],cluglo[0]);
680       fAliITSQADataMakerRec->GetRecPointsData(9 +fGenRecPointsOffset)->Fill(recp->GetDetLocalX(),recp->GetDetLocalZ());//local distribution
681       fAliITSQADataMakerRec->GetRecPointsData(2 +fGenRecPointsOffset)->Fill(cluglo[0],cluglo[1]);//global distribution YX
682       fAliITSQADataMakerRec->GetRecPointsData(3 +fGenRecPointsOffset)->Fill(cluglo[2],rad);//global distribution rz
683       if(fkOnline)
684         {
685           fAliITSQADataMakerRec->GetRecPointsData(14 +fGenRecPointsOffset)->Fill(cluglo[0],cluglo[1]);//global distribution YX FSE
686           fAliITSQADataMakerRec->GetRecPointsData(15 +fGenRecPointsOffset)->Fill(cluglo[2],rad);//global distribution rz FSE
687         }
688       if(recp->GetLayer() ==2) {
689         fAliITSQADataMakerRec->GetRecPointsData(0  +fGenRecPointsOffset)->Fill(recp->GetQ()) ;//total charge of layer 3
690         fAliITSQADataMakerRec->GetRecPointsData(7  +fGenRecPointsOffset)->Fill(lad);//lad pattern layer 3
691         fAliITSQADataMakerRec->GetRecPointsData(10 +fGenRecPointsOffset)->Fill(rad);//r distribution layer 3
692         fAliITSQADataMakerRec->GetRecPointsData(12 +fGenRecPointsOffset)->Fill(phi);// phi distribution layer 3
693         fAliITSQADataMakerRec->GetRecPointsData(4  +fGenRecPointsOffset)->Fill(cluglo[2],phi);// phi distribution layer 3
694       }
695       else if(recp->GetLayer() ==3) {
696         fAliITSQADataMakerRec->GetRecPointsData(1  +fGenRecPointsOffset)->Fill(recp->GetQ()) ;//total charge layer 4
697         fAliITSQADataMakerRec->GetRecPointsData(8  +fGenRecPointsOffset)->Fill(lad);//ladpatternlayer4
698         fAliITSQADataMakerRec->GetRecPointsData(11 +fGenRecPointsOffset)->Fill(rad);//r distribution
699         fAliITSQADataMakerRec->GetRecPointsData(13 +fGenRecPointsOffset)->Fill(phi);//phi distribution
700         fAliITSQADataMakerRec->GetRecPointsData(5  +fGenRecPointsOffset)->Fill(cluglo[2],phi);// phi distribution layer 4
701       }
702     }
703   }
704   statRecpoints.Clear();
705   return rv ; 
706 }
707
708 //_______________________________________________________________
709
710 void AliITSQASDDDataMakerRec::SetHLTModeFromEnvironment()
711 {
712
713    Int_t  hltmode= ::atoi(gSystem->Getenv("HLT_MODE"));
714
715    if(hltmode==1)
716      {
717        AliInfo("Online mode: HLT mode A selected from environment for SDD\n");
718        SetHLTMode(kFALSE);
719      }
720    else
721      if(hltmode==2)
722        {
723        AliInfo("Online mode: HLT mode C compressed selected from environment for SDD\n");
724        SetHLTMode(kTRUE);
725        }
726 }
727
728
729 //_______________________________________________________________
730
731 Int_t AliITSQASDDDataMakerRec::GetOffset(AliQAv1::TASKINDEX_t task)
732 {
733   Int_t offset=0;
734   if( task == AliQAv1::kRAWS )
735     {
736       offset=fGenRawsOffset;  
737     }
738   else if(task == AliQAv1::kDIGITSR )
739     {
740       offset=fGenDigitsOffset;
741     }
742   else if( task == AliQAv1::kRECPOINTS )
743     {
744       offset=fGenRecPointsOffset;   
745     }
746     else AliInfo("No task has been selected. Offset set to zero.\n");
747   return offset;
748 }
749
750 //_______________________________________________________________
751
752 void AliITSQASDDDataMakerRec::SetOffset(AliQAv1::TASKINDEX_t task, Int_t offset) {
753   // Returns offset number according to the specified task
754   if( task == AliQAv1::kRAWS ) {
755     fGenRawsOffset=offset;
756   }
757   else if( task == AliQAv1::kDIGITSR ) {
758     fGenDigitsOffset=offset;
759   }
760   else if( task == AliQAv1::kRECPOINTS ) {
761     fGenRecPointsOffset=offset;
762   }
763   else {
764     AliInfo("No task has been selected. Offset set to zero.\n");
765   }
766 }
767
768 //_______________________________________________________________
769
770 Int_t AliITSQASDDDataMakerRec::GetTaskHisto(AliQAv1::TASKINDEX_t task)
771 {
772
773   Int_t histotot=0;
774
775   if( task == AliQAv1::kRAWS )
776     {
777       histotot=fSDDhRawsTask ;  
778     }
779   else if(task == AliQAv1::kDIGITSR)
780     {
781       histotot=fSDDhDigitsTask;
782     }
783   else if( task == AliQAv1::kRECPOINTS )
784     {
785       histotot=fSDDhRecPointsTask;   
786     }
787   else AliInfo("No task has been selected. TaskHisto set to zero.\n");
788   return histotot;
789 }