]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSQASDDDataMakerRec.cxx
c317293067768ae2affe4d934f5c54c642f7e5c7
[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 void 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   
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;
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;
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   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   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   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       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           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           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 }
279
280
281 //____________________________________________________________________________
282 void AliITSQASDDDataMakerRec::MakeRaws(AliRawReader* rawReader)
283
284   // Fill QA for RAW - SDD -
285   
286   if(!fDDLModuleMap){
287     AliError("SDD DDL module map not available - skipping SDD QA");
288     return;
289   }
290   if(rawReader->GetType() != 7) return;  // skips non physical triggers
291   AliDebug(AliQAv1::GetQADebugLevel(),"entering MakeRaws\n");                 
292   
293   rawReader->Reset();       
294   AliITSRawStream *stream;
295   
296   if(fkOnline==kTRUE)
297     {
298       if(GetHLTMode()==kTRUE)
299         {
300           //AliInfo("Online  mode: HLT C compressed mode used for SDD\n");
301           stream = new AliITSRawStreamSDDCompressed(rawReader); }
302       else{ 
303         //AliInfo("Online  mode: HLT A mode used for SDD\n");
304         stream = new AliITSRawStreamSDD(rawReader);}     
305     }
306   else 
307     {
308       if(fHLTSDD->IsHLTmodeC()==kTRUE){
309         //AliInfo("Offline  mode: HLT C compressed mode used for SDD\n");
310         stream = new AliITSRawStreamSDDCompressed(rawReader);
311       }else 
312         {
313           //AliInfo("Offline  mode: HLT A mode used for SDD\n");
314           stream = new AliITSRawStreamSDD(rawReader);
315         }
316     }
317   
318   //ckeck on HLT mode
319  
320   //  AliITSRawStreamSDD s(rawReader); 
321   stream->SetDDLModuleMap(fDDLModuleMap);
322   
323   Int_t lay, lad, det; 
324   
325   Int_t index=0;
326   if(fkOnline) {
327     for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
328       for(Int_t iside=0;iside<fgknSide;iside++) {
329         if(fSDDhRawsTask > 4 + index) fAliITSQADataMakerRec->GetRawsData(4 + index +fGenRawsOffset)->Reset();   
330         // 4  because the 2D histos for single events start after the fourth position
331         index++;
332       }
333     }
334   }
335   
336   Int_t cnt = 0;
337   Int_t ildcID = -1;
338   Int_t iddl = -1;
339   Int_t isddmod = -1;
340   Int_t coord1, coord2, signal, moduleSDD, activeModule, index1; 
341   
342   while(stream->Next()) {
343     ildcID = rawReader->GetLDCId();
344     iddl = rawReader->GetDDLID() - fgkDDLIDshift;
345     
346     isddmod = fDDLModuleMap->GetModuleNumber(iddl,stream->GetCarlosId());
347     if(isddmod==-1){
348       AliDebug(AliQAv1::GetQADebugLevel(),Form("Found module with iddl: %d, stream->GetCarlosId: %d \n",iddl,stream->GetCarlosId()));
349       continue;
350     }
351     if(stream->IsCompletedModule()) {
352       AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedModule == KTRUE\n"));
353       continue;
354     } 
355     if(stream->IsCompletedDDL()) {
356       AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedDDL == KTRUE\n"));
357       continue;
358     } 
359     
360     coord1 = stream->GetCoord1();
361     coord2 = stream->GetCoord2();
362     signal = stream->GetSignal();
363     
364     moduleSDD = isddmod - fgkmodoffset;
365     
366     if(isddmod <fgkmodoffset|| isddmod>fgknSDDmodules+fgkmodoffset-1) {
367       AliDebug(AliQAv1::GetQADebugLevel(),Form( "Module SDD = %d, resetting it to 1 \n",isddmod));
368       isddmod = 1;
369     }
370     
371     AliITSgeomTGeo::GetModuleId(isddmod, lay, lad, det);
372
373     
374     fAliITSQADataMakerRec->GetRawsData( 0 + fGenRawsOffset )->Fill(isddmod);   
375     
376     if(lay==3)    fAliITSQADataMakerRec->GetRawsData(1+fGenRawsOffset)->Fill(det,lad); 
377     if(lay==4) { 
378       fAliITSQADataMakerRec->GetRawsData(2+fGenRawsOffset)->Fill(det,lad);}  
379     
380     Short_t iside = stream->GetChannel();
381     
382
383     
384
385     if(fkOnline) {
386
387       fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset)->Fill(2*(stream->GetCarlosId())+iside,iddl);
388
389       activeModule = moduleSDD;
390       index1 = activeModule * 2 + iside;
391       
392       if(index1<0){
393         AliDebug(AliQAv1::GetQADebugLevel(),Form("Wrong index number %d - patched to 0\n",index1));
394         index1 = 0;
395       }      
396       fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset)->Fill(2*(stream->GetCarlosId())+iside,iddl);
397       if(fSDDhRawsTask > 4 + index1) {                                  
398         ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(4 + index1 +fGenRawsOffset)))->Fill(coord2, coord1, signal);     
399         ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(4 + index1 + 260*2 +fGenRawsOffset)))->Fill(coord2, coord1, signal); 
400       }
401     }
402     cnt++;
403     if(!(cnt%10000)) AliDebug(AliQAv1::GetQADebugLevel(),Form(" %d raw digits read",cnt));
404   }
405   AliDebug(AliQAv1::GetQADebugLevel(),Form("Event completed, %d raw digits read",cnt)); 
406   delete stream;
407   stream = NULL; 
408 }
409
410 //____________________________________________________________________________ 
411 void AliITSQASDDDataMakerRec::InitDigits()
412
413
414   //printf(" ======================================================> Init digits\n " );
415   // Initialization for DIGIT data - SDD -  
416   const Bool_t expert   = kTRUE ; 
417   const Bool_t image    = kTRUE ;
418   
419   fGenDigitsOffset = (fAliITSQADataMakerRec->fDigitsQAList[AliRecoParam::kDefault])->GetEntries();
420   //fSDDhTask must be incremented by one unit every time a histogram is ADDED to the QA List
421   TH1F* h0=new TH1F("SDD DIGITS Module Pattern","SDD DIGITS Module Pattern",260,239.5,499.5);       //hmod
422   h0->GetXaxis()->SetTitle("SDD Module Number");
423   h0->GetYaxis()->SetTitle("# DIGITS");
424   fAliITSQADataMakerRec->Add2DigitsList(h0,fGenDigitsOffset, !expert, image);
425   fSDDhDigitsTask ++;
426   TH1F* h1=new TH1F("SDD Anode Distribution","DIGITS Anode Distribution",512,-0.5,511.5);      //hanocc
427   h1->GetXaxis()->SetTitle("Anode Number");
428   h1->GetYaxis()->SetTitle("# DIGITS");
429   fAliITSQADataMakerRec->Add2DigitsList(h1,1+fGenDigitsOffset, !expert, image);
430   fSDDhDigitsTask ++;
431   TH1F* h2=new TH1F("SDD Tbin Distribution","DIGITS Tbin Distribution",256,-0.5,255.5);      //htbocc
432   h2->GetXaxis()->SetTitle("Tbin Number");
433   h2->GetYaxis()->SetTitle("# DIGITS");
434   fAliITSQADataMakerRec->Add2DigitsList(h2,2+fGenDigitsOffset, !expert, image);
435   fSDDhDigitsTask ++;
436   TH1F* h3=new TH1F("SDD ADC Counts Distribution","DIGITS ADC Counts Distribution",200,0.,1024.);          //hsig
437   h3->GetXaxis()->SetTitle("ADC Value");
438   h3->GetYaxis()->SetTitle("# DIGITS");
439   fAliITSQADataMakerRec->Add2DigitsList(h3,3+fGenDigitsOffset, !expert, image);
440   fSDDhDigitsTask ++;
441   AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Digits histograms booked\n",fSDDhDigitsTask));
442 }
443
444 //____________________________________________________________________________
445 void AliITSQASDDDataMakerRec::MakeDigits(TTree * digits)
446
447   //printf(" ======================================================> make digits\n " );
448   // Fill QA for DIGIT - SDD -
449   //AliITS *fITS  = (AliITS*)gAlice->GetModule("ITS");
450   //fITS->SetTreeAddress();
451   //TClonesArray *iITSdigits  = fITS->DigitsAddress(1);
452
453
454   TBranch *branchD = digits->GetBranch("ITSDigitsSDD");
455
456   if (!branchD) {
457     AliError("can't get the branch with the ITS SDD digits !");
458     return;
459   }
460
461   static TClonesArray statDigits("AliITSdigitSDD");
462   TClonesArray *iITSdigits = &statDigits;
463   branchD->SetAddress(&iITSdigits);
464
465   for(Int_t i=0; i<260; i++){
466     Int_t nmod=i+240;
467     digits->GetEvent(nmod);
468     Int_t ndigits = iITSdigits->GetEntries();
469     fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset)->Fill(nmod,ndigits);
470     //printf(" Filled:  =======================================> %s \t %i \t %i \n",fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset)->GetName(), nmod, ndigits );
471     for (Int_t idig=0; idig<ndigits; idig++) {
472       AliITSdigit *dig=(AliITSdigit*)iITSdigits->UncheckedAt(idig);
473       Int_t iz=dig->GetCoord1();  // cell number z
474       Int_t ix=dig->GetCoord2();  // cell number x
475       Int_t sig=dig->GetSignal();
476       fAliITSQADataMakerRec->GetDigitsData(1+fGenDigitsOffset)->Fill(iz);
477       fAliITSQADataMakerRec->GetDigitsData(2+fGenDigitsOffset)->Fill(ix);
478       fAliITSQADataMakerRec->GetDigitsData(3+fGenDigitsOffset)->Fill(sig);
479     }
480   }
481
482 }
483
484 //____________________________________________________________________________ 
485 void AliITSQASDDDataMakerRec::InitRecPoints()
486 {
487   // Initialization for RECPOINTS - SDD -
488   const Bool_t expert   = kTRUE ; 
489   const Bool_t image    = kTRUE ; 
490   
491   fGenRecPointsOffset = (fAliITSQADataMakerRec->fRecPointsQAList[AliRecoParam::kDefault])->GetEntries();
492
493   Int_t nOnline=1;
494   Int_t  nOnline2=1;
495   Int_t  nOnline3=1; 
496   Int_t  nOnline4=1;
497   if(fkOnline)
498     {
499       nOnline=4;
500       nOnline2=28;
501       nOnline3=64;
502       nOnline4=14;
503     }
504
505   
506   TH1F *h0 = new TH1F("SDDLay3TotCh","Layer 3 total charge",1000/nOnline,-0.5, 499.5); //position number 0
507   h0->GetXaxis()->SetTitle("ADC value");
508   h0->GetYaxis()->SetTitle("Entries");
509   fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h0)), 0 +fGenRecPointsOffset, !expert, image);
510   delete h0;
511   fSDDhRecPointsTask++;
512  
513   TH1F *h1 = new TH1F("SDDLay4TotCh","Layer 4 total charge",1000/nOnline,-0.5, 499.5);//position number 1
514   h1->GetXaxis()->SetTitle("ADC value");
515   h1->GetYaxis()->SetTitle("Entries");
516   fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h1)), 1 +fGenRecPointsOffset, !expert, image);
517   delete h1;
518   fSDDhRecPointsTask++;
519
520   char hisnam[50];
521   TH2F *h2 = new TH2F("SDDGlobalCoordDistribYX","YX Global Coord Distrib",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 2
522   h2->GetYaxis()->SetTitle("Y[cm]");
523   h2->GetXaxis()->SetTitle("X[cm]");
524   fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h2)),2+fGenRecPointsOffset, expert, !image);
525   delete h2;
526   fSDDhRecPointsTask++;
527
528   TH2F *h3 = new TH2F("SDDGlobalCoordDistribRZ","RZ Global Coord Distrib",6400/nOnline3,-32,32,1400/nOnline4,12,26);//position number 3
529   h3->GetYaxis()->SetTitle("R[cm]");
530   h3->GetXaxis()->SetTitle("Z[cm]");
531   fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h3)),3+fGenRecPointsOffset, expert, !image);
532   delete h3;
533   fSDDhRecPointsTask++;
534   
535   TH2F *h4 = new TH2F("SDDGlobalCoordDistribL3PHIZ","#varphi Z Global Coord Distrib L3",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 4
536   h4->GetYaxis()->SetTitle("#phi[rad]");
537   h4->GetXaxis()->SetTitle("Z[cm]");
538   fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h4)),4+fGenRecPointsOffset, !expert, image);
539   delete h4;
540   fSDDhRecPointsTask++;
541
542   TH2F *h5 = new TH2F("SDDGlobalCoordDistribL4PHIZ","#varphi Z Global Coord Distrib L4",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 5
543   h5->GetYaxis()->SetTitle("#phi[rad]");
544   h5->GetXaxis()->SetTitle("Z[cm]");
545   fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h5)),5+fGenRecPointsOffset, !expert, image);
546   delete h5;
547   fSDDhRecPointsTask++;
548   
549   TH1F *h6 = new TH1F("SDDModPatternRP","Modules pattern RP",fgknSDDmodules,239.5,499.5); //position number 6
550   h6->GetXaxis()->SetTitle("Module number"); //spd offset = 240
551   h6->GetYaxis()->SetTitle("Entries");
552   fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h6)),6 +fGenRecPointsOffset, expert, !image);
553   delete h6;
554   fSDDhRecPointsTask++;
555   TH1F *h7 = new TH1F("SDDLadPatternL3RP","Ladder pattern L3 RP",14,0.5,14.5);  //position number 7
556   h7->GetXaxis()->SetTitle("Ladder #, Layer 3");
557   h7->GetYaxis()->SetTitle("Entries");
558   fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h7)),7 +fGenRecPointsOffset, expert, !image);
559   delete h7;
560   fSDDhRecPointsTask++;
561   TH1F *h8 = new TH1F("SDDLadPatternL4RP","Ladder pattern L4 RP",22,0.5,22.5); //position number 8
562   h8->GetXaxis()->SetTitle("Ladder #, Layer 4");
563   h8->GetYaxis()->SetTitle("Entries");
564   fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h8)),8 +fGenRecPointsOffset, expert, !image);
565   delete h8;
566   fSDDhRecPointsTask++;
567   TH2F *h9 = new TH2F("SDDLocalCoordDistrib","Local Coord Distrib",1000/nOnline,-4,4,1000/nOnline,-4,4);//position number 9
568   h9->GetXaxis()->SetTitle("X local coord, drift, cm");
569   h9->GetYaxis()->SetTitle("Z local coord, anode, cm");
570   fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h9)),9 +fGenRecPointsOffset, expert, !image);
571   delete h9;
572   fSDDhRecPointsTask++;
573
574
575     TH1F *h10 = new TH1F("SDDrdistrib_Layer3" ,"SDD r distribution Layer3" ,100,14.,18.);//position number 10 (L3)
576     h10->GetXaxis()->SetTitle("r[cm]");
577     h10->GetXaxis()->CenterTitle();
578     h10->GetYaxis()->SetTitle("Entries");
579     fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h10)),10 +fGenRecPointsOffset, expert, !image);
580     delete h10;
581     fSDDhRecPointsTask++;
582
583     TH1F *h11 = new TH1F("SDDrdistrib_Layer4" ,"SDD r distribution Layer4" ,100,22.,26.);// and position number 11 (L4)
584     h11->GetXaxis()->SetTitle("r[cm]");
585     h11->GetXaxis()->CenterTitle();
586     h11->GetYaxis()->SetTitle("Entries");
587     fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h11)),11 +fGenRecPointsOffset, expert, !image);
588     delete h11;
589     fSDDhRecPointsTask++;
590
591   for(Int_t iLay=0; iLay<=1; iLay++){
592     sprintf(hisnam,"SDDphidistrib_Layer%d",iLay+3);
593     TH1F *h12 = new TH1F(hisnam,hisnam,180,-TMath::Pi(),TMath::Pi());//position number 12 (L3) and position number 13 (L4)
594     h12->GetXaxis()->SetTitle("#varphi[rad]");
595     h12->GetXaxis()->CenterTitle();
596     h12->GetYaxis()->SetTitle("Entries");
597     fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h12)),iLay+12+fGenRecPointsOffset, expert, !image);
598     delete h12;
599     fSDDhRecPointsTask++;
600   }
601
602   if(fkOnline)
603     {
604       TH2F *h14 = new TH2F("SDDGlobalCoordDistribYXFSE","YX Global Coord Distrib FSE",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 14
605       h14->GetYaxis()->SetTitle("Y[cm]");
606       h14->GetXaxis()->SetTitle("X[cm]");
607       fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h14)),14+fGenRecPointsOffset, expert, !image);
608       delete h14;
609       fSDDhRecPointsTask++;
610       
611       TH2F *h15 = new TH2F("SDDGlobalCoordDistribRZFSE","RZ Global Coord Distrib FSE",Int_t(6400/nOnline3),-32,32,1400/nOnline4,12,26);//position number 15
612       h15->GetYaxis()->SetTitle("R[cm]");
613       h15->GetXaxis()->SetTitle("Z[cm]");
614       fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h15)),15+fGenRecPointsOffset, expert, !image);
615       delete h15;
616       fSDDhRecPointsTask++;
617       
618     }//online
619
620   //printf("%d SDD Recs histograms booked\n",fSDDhRecPointsTask);
621
622
623   AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Recs histograms booked\n",fSDDhRecPointsTask));
624
625
626 }
627
628 //____________________________________________________________________________ 
629 void AliITSQASDDDataMakerRec::MakeRecPoints(TTree * clustersTree)
630 {
631
632
633  // Fill QA for RecPoints - SDD -
634   Int_t lay, lad, det; 
635   TBranch *branchRecP = clustersTree->GetBranch("ITSRecPoints");
636   if (!branchRecP) {
637     AliError("can't get the branch with the ITS clusters !");
638     return;
639   }
640
641   static TClonesArray statRecpoints("AliITSRecPoint") ;
642   TClonesArray *recpoints = &statRecpoints;
643   branchRecP->SetAddress(&recpoints);
644   Int_t npoints = 0;      
645   Float_t cluglo[3]={0.,0.,0.}; 
646   if(fkOnline)
647     {
648       for(Int_t i=14;i<16;i++)
649         {
650           fAliITSQADataMakerRec->GetRecPointsData(i+fGenRecPointsOffset)->Reset();
651         }
652     }
653   for(Int_t module=0; module<clustersTree->GetEntries();module++){
654     branchRecP->GetEvent(module);
655     npoints += recpoints->GetEntries();
656     AliITSgeomTGeo::GetModuleId(module, lay, lad, det);
657     //printf("modnumb %d, lay %d, lad %d, det %d \n",module, lay, lad, det);
658     for(Int_t j=0;j<recpoints->GetEntries();j++){
659       AliITSRecPoint *recp = (AliITSRecPoint*)recpoints->At(j);    
660       fAliITSQADataMakerRec->GetRecPointsData(6 +fGenRecPointsOffset)->Fill(module);//modpatternrp
661       recp->GetGlobalXYZ(cluglo);
662       Float_t rad=TMath::Sqrt(cluglo[0]*cluglo[0]+cluglo[1]*cluglo[1]); 
663       Float_t phi=TMath::ATan2(cluglo[1],cluglo[0]);
664       fAliITSQADataMakerRec->GetRecPointsData(9 +fGenRecPointsOffset)->Fill(recp->GetDetLocalX(),recp->GetDetLocalZ());//local distribution
665       fAliITSQADataMakerRec->GetRecPointsData(2 +fGenRecPointsOffset)->Fill(cluglo[0],cluglo[1]);//global distribution YX
666       fAliITSQADataMakerRec->GetRecPointsData(3 +fGenRecPointsOffset)->Fill(cluglo[2],rad);//global distribution rz
667       if(fkOnline)
668         {
669           fAliITSQADataMakerRec->GetRecPointsData(14 +fGenRecPointsOffset)->Fill(cluglo[0],cluglo[1]);//global distribution YX FSE
670           fAliITSQADataMakerRec->GetRecPointsData(15 +fGenRecPointsOffset)->Fill(cluglo[2],rad);//global distribution rz FSE
671         }
672       if(recp->GetLayer() ==2) {
673         fAliITSQADataMakerRec->GetRecPointsData(0  +fGenRecPointsOffset)->Fill(recp->GetQ()) ;//total charge of layer 3
674         fAliITSQADataMakerRec->GetRecPointsData(7  +fGenRecPointsOffset)->Fill(lad);//lad pattern layer 3
675         fAliITSQADataMakerRec->GetRecPointsData(10 +fGenRecPointsOffset)->Fill(rad);//r distribution layer 3
676         fAliITSQADataMakerRec->GetRecPointsData(12 +fGenRecPointsOffset)->Fill(phi);// phi distribution layer 3
677         fAliITSQADataMakerRec->GetRecPointsData(4  +fGenRecPointsOffset)->Fill(cluglo[2],phi);// phi distribution layer 3
678       }
679       else if(recp->GetLayer() ==3) {
680         fAliITSQADataMakerRec->GetRecPointsData(1  +fGenRecPointsOffset)->Fill(recp->GetQ()) ;//total charge layer 4
681         fAliITSQADataMakerRec->GetRecPointsData(8  +fGenRecPointsOffset)->Fill(lad);//ladpatternlayer4
682         fAliITSQADataMakerRec->GetRecPointsData(11 +fGenRecPointsOffset)->Fill(rad);//r distribution
683         fAliITSQADataMakerRec->GetRecPointsData(13 +fGenRecPointsOffset)->Fill(phi);//phi distribution
684         fAliITSQADataMakerRec->GetRecPointsData(5  +fGenRecPointsOffset)->Fill(cluglo[2],phi);// phi distribution layer 4
685       }
686     }
687   }
688   statRecpoints.Clear();
689
690 }
691
692 //_______________________________________________________________
693
694 void AliITSQASDDDataMakerRec::SetHLTModeFromEnvironment()
695 {
696
697    Int_t  hltmode= ::atoi(gSystem->Getenv("HLT_MODE"));
698
699    if(hltmode==1)
700      {
701        AliInfo("Online mode: HLT mode A selected from environment for SDD\n");
702        SetHLTMode(kFALSE);
703      }
704    else
705      if(hltmode==2)
706        {
707        AliInfo("Online mode: HLT mode C compressed selected from environment for SDD\n");
708        SetHLTMode(kTRUE);
709        }
710 }
711
712
713 //_______________________________________________________________
714
715 Int_t AliITSQASDDDataMakerRec::GetOffset(AliQAv1::TASKINDEX_t task)
716 {
717   Int_t offset=0;
718   if( task == AliQAv1::kRAWS )
719     {
720       offset=fGenRawsOffset;  
721     }
722   else
723     if( task == AliQAv1::kRECPOINTS )
724       {
725         offset=fGenRecPointsOffset;   
726       }
727     else
728       if(task == AliQAv1::kDIGITSR )
729         {
730           offset=fGenDigitsOffset;
731         }
732     else AliInfo("No task has been selected. Offset set to zero.\n");
733   return offset;
734 }
735
736 //_______________________________________________________________
737
738 Int_t AliITSQASDDDataMakerRec::GetTaskHisto(AliQAv1::TASKINDEX_t task)
739 {
740
741   Int_t histotot=0;
742
743   if( task == AliQAv1::kRAWS )
744     {
745       histotot=fSDDhRawsTask ;  
746     }
747   else
748     if( task == AliQAv1::kRECPOINTS )
749       {
750         histotot=fSDDhRecPointsTask;   
751       }
752     else
753       if(task == AliQAv1::kDIGITSR)
754         {
755           histotot=fSDDhDigitsTask;
756         }
757     else AliInfo("No task has been selected. TaskHisto set to zero.\n");
758   return histotot;
759 }