]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSQASDDDataMakerRec.cxx
Add flag to switch on multiplicity calculation in ITS Vertexers (to be used in the...
[u/mrichter/AliRoot.git] / ITS / AliITSQASDDDataMakerRec.cxx
index 3178d76cb2627f7be6ef3b1d02649db1e8178793..1ad11a3030c21231a642411d02b48e062a2158d6 100644 (file)
 //  contained in a DB
 //  -------------------------------------------------------------
 //  W. Ferrarese + P. Cerello Feb 2008
-//  M.Siciliano Aug 2008 QA RecPoints and HLT mode
+//  M.Siciliano Aug 2008 QA RecPoints 
 //  INFN Torino
 
 // --- ROOT system ---
 
 #include <TProfile2D.h>
 #include <TH2D.h>
+#include <TH1F.h>
 #include <TBranch.h>
 #include <TTree.h>
-#include <TGaxis.h>
 #include <TMath.h>
-#include <TDirectory.h>
-#include <TSystem.h>
+#include <TObjArray.h>
+
 // --- Standard library ---
 
 // --- AliRoot header files ---
 #include "AliITSQASDDDataMakerRec.h"
-#include "AliLog.h"
-#include "AliQA.h"
-#include "AliQAChecker.h"
+#include "AliQAv1.h"
 #include "AliRawReader.h"
 #include "AliITSRawStream.h"
 #include "AliITSRawStreamSDD.h"
-#include "AliITSRawStreamSDDCompressed.h"
-#include "AliITSDetTypeRec.h"
+#include "AliITSdigit.h"
 #include "AliITSRecPoint.h"
+#include "AliITSRecPointContainer.h"
 #include "AliITSgeomTGeo.h"
-#include "AliITSHLTforSDD.h"
 #include "AliCDBManager.h"
-#include "AliCDBStorage.h"
 #include "AliCDBEntry.h"
-#include "Riostream.h"
+#include "AliITSCalibrationSDD.h"
+
+class TGaxis;
+class TF1;
+class TSystem;
+class AliLog;
+class AliQAChecker;
+class AliITSRawStreamSDDCompressed;
+class AliCDBStorage;
+class Riostream;
+class AliITSdigitSDD;
+class AliITS;
+class AliRunLoader;
+class AliITSLoader;
+class AliITSDetTypeRec;
+
+
 
 ClassImp(AliITSQASDDDataMakerRec)
 
@@ -63,26 +75,34 @@ fAliITSQADataMakerRec(aliITSQADataMakerRec),
 fkOnline(kMode),
 fLDC(ldc),
 fSDDhRawsTask(0),
+fSDDhDigitsTask(0),
 fSDDhRecPointsTask(0),
-//fGenOffset(0),
+fOnlineOffsetRaws(0),
+fOnlineOffsetRecPoints(0),
 fGenRawsOffset(0),
+fGenDigitsOffset(0),
 fGenRecPointsOffset(0),
 fTimeBinSize(1),
+fNEvent(0),
+fNEventRP(0),
 fDDLModuleMap(0),
-fHLTMode(0),
-fHLTSDD(0)
+fCalibration(0),
+fHistoCalibration(0)
 {
   //ctor used to discriminate OnLine-Offline analysis
-  if(fLDC < 0 || fLDC > 4) {
+  if(fLDC < 0 || fLDC > 6) {
        AliError("Error: LDC number out of range; return\n");
   }
-  if(!fkOnline){AliInfo("Offline mode: HLT set from AliITSDetTypeRec for SDD\n");}
-  else
-    if(fkOnline){
-      AliInfo("Online mode: HLT set from environment for SDD\n");
-      SetHLTModeFromEnvironment();
-    }
-  //fDDLModuleMap=NULL;
+       fGenRawsOffset = new Int_t[AliRecoParam::kNSpecies];
+       fGenRecPointsOffset = new Int_t[AliRecoParam::kNSpecies];
+       fGenDigitsOffset = new Int_t[AliRecoParam::kNSpecies];
+       for(Int_t i=0; i<AliRecoParam::kNSpecies; i++) {
+               fGenRawsOffset[i] = 0;
+               fGenRecPointsOffset[i] = 0;
+               fGenDigitsOffset[i]=0;
+       }
+
+       InitCalibrationArray();
 }
 
 //____________________________________________________________________________ 
@@ -92,30 +112,36 @@ fAliITSQADataMakerRec(qadm.fAliITSQADataMakerRec),
 fkOnline(qadm.fkOnline),
 fLDC(qadm.fLDC),
 fSDDhRawsTask(qadm.fSDDhRawsTask),
+fSDDhDigitsTask(qadm.fSDDhDigitsTask),
 fSDDhRecPointsTask(qadm.fSDDhRecPointsTask),
-//fGenOffset(qadm.fGenOffset),
+fOnlineOffsetRaws(qadm.fOnlineOffsetRaws),
+fOnlineOffsetRecPoints(qadm.fOnlineOffsetRecPoints),
 fGenRawsOffset(qadm.fGenRawsOffset),
+fGenDigitsOffset(qadm.fGenDigitsOffset),
 fGenRecPointsOffset(qadm.fGenRecPointsOffset),
-fTimeBinSize(1),
-fDDLModuleMap(0),
-fHLTMode(qadm.fHLTMode),
-fHLTSDD( qadm.fHLTSDD)
+fTimeBinSize(qadm.fTimeBinSize),
+fNEvent(qadm.fNEvent),
+fNEventRP(qadm.fNEventRP),
+fDDLModuleMap(qadm.fDDLModuleMap),
+fCalibration(qadm.fCalibration),
+fHistoCalibration(qadm.fHistoCalibration)
 {
   //copy ctor 
   fAliITSQADataMakerRec->SetName((const char*)qadm.fAliITSQADataMakerRec->GetName()) ; 
   fAliITSQADataMakerRec->SetTitle((const char*)qadm.fAliITSQADataMakerRec->GetTitle());
-  fDDLModuleMap=NULL;
+  //fDDLModuleMap=NULL;
 }
 
 //____________________________________________________________________________ 
 AliITSQASDDDataMakerRec::~AliITSQASDDDataMakerRec(){
   // destructor
-  //   if(fDDLModuleMap) delete fDDLModuleMap;
+  //if(fDDLModuleMap) delete fDDLModuleMap;
+  if(fHistoCalibration){delete fHistoCalibration; fHistoCalibration=NULL;}
 }
 //__________________________________________________________________
 AliITSQASDDDataMakerRec& AliITSQASDDDataMakerRec::operator = (const AliITSQASDDDataMakerRec& qac )
 {
-  // Assignment operator.
+  // Equal operator.
   this->~AliITSQASDDDataMakerRec();
   new(this) AliITSQASDDDataMakerRec(qac);
   return *this;
@@ -124,244 +150,292 @@ AliITSQASDDDataMakerRec& AliITSQASDDDataMakerRec::operator = (const AliITSQASDDD
 //____________________________________________________________________________ 
 void AliITSQASDDDataMakerRec::StartOfDetectorCycle()
 {
-  //Detector specific actions at start of cycle
-  AliDebug(1,"AliITSQADM::Start of SDD Cycle\n");
+
+  //Start of a QA cycle
+
+  AliDebug(AliQAv1::GetQADebugLevel(),Form("Start of SDD Cycle with event specie %s for task %s\n",AliRecoParam::GetEventSpecieName(fAliITSQADataMakerRec->GetEventSpecie()),AliQAv1::GetTaskName(fAliITSQADataMakerRec->GetTaskIndexSelected()).Data()));
+  if(!fCalibration) {CreateTheCalibration();}
+
+  if(fAliITSQADataMakerRec->GetEventSpecie()==0) return;//not the kDefault EventSpecie
+    //Detector specific actions at start of cycle
+    if(fAliITSQADataMakerRec->GetTaskIndexSelected()==AliQAv1::kRAWS){
+      AliDebug(AliQAv1::GetQADebugLevel(),"AliITSQADM::Start of SDD Cycle\n");
+      if(fAliITSQADataMakerRec->ListExists(AliQAv1::kRAWS)==kFALSE)return;
+
+       AliDebug(AliQAv1::GetQADebugLevel(),Form("Reset of Raw Data normalized histograms with eventspecie %s ",AliRecoParam::GetEventSpecieName(fAliITSQADataMakerRec->GetEventSpecie())));
+
+       fAliITSQADataMakerRec->GetRawsData(3+ fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
+       fAliITSQADataMakerRec->GetRawsData(4+ fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
+       fAliITSQADataMakerRec->GetRawsData(5+ fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
+      
+    }
+    if(fAliITSQADataMakerRec->GetTaskIndexSelected()==AliQAv1::kRECPOINTS){
+      if(fAliITSQADataMakerRec->ListExists(AliQAv1::kRECPOINTS)==kFALSE)return;
+
+       AliDebug(AliQAv1::GetQADebugLevel(),Form("Reset of RecPoints normalized histograms with eventspecie %s ",AliRecoParam::GetEventSpecieName(fAliITSQADataMakerRec->GetEventSpecie())));
+
+       fAliITSQADataMakerRec->GetRecPointsData(9+  fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
+       fAliITSQADataMakerRec->GetRecPointsData(10+ fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
+       fAliITSQADataMakerRec->GetRecPointsData(11+ fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
+      }
 }
 
 //____________________________________________________________________________ 
-void AliITSQASDDDataMakerRec::EndOfDetectorCycle(AliQA::TASKINDEX_t /*task*/, TObjArray* /*list*/)
+void AliITSQASDDDataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray* /*list*/)
 {
-  // launch the QA checking
-  AliDebug(1,"AliITSDM instantiates checker with Run(AliQA::kITS, task, list)\n"); 
+  //end of a QA cycle
+       AliDebug(AliQAv1::GetQADebugLevel(),"AliITSDM instantiates checker with Run(AliQAv1::kITS, task, list)\n"); 
+       if(task==AliQAv1::kRAWS){
+         //      printf("fNevent %d \n",fNEvent);
+         if(fNEvent!=0){
+           ((TH1D*)fAliITSQADataMakerRec->GetRawsData(3 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide((TH1D*)fAliITSQADataMakerRec->GetRawsData(0 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]),((TH1D*) (fHistoCalibration->At(0))),1.,(Double_t)fNEvent);
+         
+           ((TH2D*)fAliITSQADataMakerRec->GetRawsData(4 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide((TH2D*)fAliITSQADataMakerRec->GetRawsData(1 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]),((TH2D*)(fHistoCalibration->At(1))),1.,(Double_t)fNEvent);
+           
+           ((TH2D*)fAliITSQADataMakerRec->GetRawsData(5 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide((TH2D*)fAliITSQADataMakerRec->GetRawsData(2 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]),((TH2D*)(fHistoCalibration->At(2))),1.,(Double_t)fNEvent);
+         }       
+
+               Int_t xbin3 = ((TH1D*)fAliITSQADataMakerRec->GetRawsData(4 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsX();
+               Int_t ybin3 = ((TH1D*)fAliITSQADataMakerRec->GetRawsData(4 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsY();
+               
+               for(Int_t i=0; i<xbin3; i++) {
+                       for(Int_t j=0; j<ybin3; j++) {
+                               ((TH1D*)fAliITSQADataMakerRec->GetRawsData(6 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Fill(((TH1D*)fAliITSQADataMakerRec->GetRawsData(4 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetBinContent(i,j));
+                       }
+               }
+               
+               Int_t xbin4 = ((TH1D*)fAliITSQADataMakerRec->GetRawsData(5 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsX();
+               Int_t ybin4 = ((TH1D*)fAliITSQADataMakerRec->GetRawsData(5 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsY();
+               
+               for(Int_t i=0; i<xbin4; i++) {
+                       for(Int_t j=0; j<ybin4; j++) {
+                               ((TH1D*)fAliITSQADataMakerRec->GetRawsData(7 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Fill(((TH1D*)fAliITSQADataMakerRec->GetRawsData(5 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetBinContent(i,j));
+                       }
+               }
+                       
+       }//end raws
+       
+       if(task==AliQAv1::kRECPOINTS){
+         //      printf("fNeventRP %d \n",fNEventRP);
+         if(fNEventRP!=0){
+           ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(9 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(6 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]),((TH1D*) (fHistoCalibration->At(0))),1.,(Double_t)fNEventRP);
+           
+                 ((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(10+ fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(7 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]),((TH2D*)(fHistoCalibration->At(1))),1.,(Double_t)fNEventRP);
+                 
+                 ((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(11+ fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(8 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]),((TH2D*)(fHistoCalibration->At(2))),1.,(Double_t)fNEventRP);
+
+                 ((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(21+ fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(7 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]),((TH2D*)(fHistoCalibration->At(1))),1.,(Double_t)fNEventRP);
+                 
+                 ((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(22+ fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(8 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]),((TH2D*)(fHistoCalibration->At(2))),1.,(Double_t)fNEventRP);
+         }
+               Int_t xbin3 = ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(10 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsX();
+               Int_t ybin3 = ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(10 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsY();
+               
+               for(Int_t i=0; i<xbin3; i++) {
+                       for(Int_t j=0; j<ybin3; j++) {
+                               ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(19 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Fill(((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(10 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetBinContent(i,j));
+                       }
+               }
+               
+               Int_t xbin4 = ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(11 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsX();
+               Int_t ybin4 = ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(11 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsY();
+               
+               for(Int_t i=0; i<xbin4; i++) {
+                       for(Int_t j=0; j<ybin4; j++) {
+                               ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(20 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Fill(((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(11 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetBinContent(i,j));
+                       }
+               }
+
+               // RecPoints 2 Raws Ratio
+               if(fAliITSQADataMakerRec->ListExists(AliQAv1::kRAWS)==kTRUE)
+                 {
+                   Int_t xbin3RP = ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(21 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsX();
+                   Int_t ybin3RP = ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(21 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsY();
+                   Int_t xbin3R  = ((TH1D*)fAliITSQADataMakerRec->GetRawsData(4 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsX();
+                   Int_t ybin3R  = ((TH1D*)fAliITSQADataMakerRec->GetRawsData(4 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsY();
+                   if((xbin3RP == xbin3R) && (ybin3RP == ybin3R)) {
+                     ((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(21 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide(((TH2D*)fAliITSQADataMakerRec->GetRawsData(4 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])));
+                     for(Int_t i=0; i<xbin3R; i++) {
+                       for(Int_t j=0; j<ybin3R; j++) {
+                         ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(23 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Fill(((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(21 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetBinContent(i,j));
+                       }
+                     }
+                   } else 
+                     AliWarning("Number of bins for Raws and RecPoints (Layer 3) do not match\n");
+                   
+                   Int_t xbin4RP = ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(22 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsX();
+                   Int_t ybin4RP = ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(22 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsY();
+                   Int_t xbin4R = ((TH1D*)fAliITSQADataMakerRec->GetRawsData(5 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsX();
+                   Int_t ybin4R = ((TH1D*)fAliITSQADataMakerRec->GetRawsData(5 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetNbinsY();
+                   if((xbin4RP == xbin4R) && (ybin4RP == ybin4R)) {
+                     ((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(22 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Divide(((TH2D*)fAliITSQADataMakerRec->GetRawsData(5 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])));
+                     for(Int_t i=0; i<xbin4R; i++) {
+                       for(Int_t j=0; j<ybin4R; j++) {
+                         ((TH1D*)fAliITSQADataMakerRec->GetRecPointsData(24 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->Fill(((TH2D*)fAliITSQADataMakerRec->GetRecPointsData(22 + fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]))->GetBinContent(i,j));
+                       }
+                     }
+                   } else 
+                     AliWarning("Number of bins for Raws and RecPoints (Layer 4) do not match\n");
+                 }
+               else{AliWarning("Ratio between RecPoints and Raws not executed because the raw list has not been created\n");}
+       }//end recpoints
+       
 }
 
 //____________________________________________________________________________ 
-void AliITSQASDDDataMakerRec::InitRaws()
+Int_t AliITSQASDDDataMakerRec::InitRaws()
 { 
+
   // Initialization for RAW data - SDD -
-  //  fGenOffset = (fAliITSQADataMakerRec->fRawsQAList)->GetEntries();
-  fGenRawsOffset = (fAliITSQADataMakerRec->fRawsQAList)->GetEntries();
-  AliCDBEntry *ddlMapSDD = AliCDBManager::Instance()->Get("ITS/Calib/DDLMapSDD");
-  Bool_t cacheStatus = AliCDBManager::Instance()->GetCacheFlag();
-  if(!ddlMapSDD)
-    {
-      AliError("Calibration object retrieval failed! SDD will not be processed");
-      fDDLModuleMap = NULL;
-      return;
-    }
-  fDDLModuleMap = (AliITSDDLModuleMapSDD*)ddlMapSDD->GetObject();
-  if(!cacheStatus)ddlMapSDD->SetObject(NULL);
-  ddlMapSDD->SetOwner(kTRUE);
-  if(!cacheStatus)
-    {
-      delete ddlMapSDD;
-    }
+  const Bool_t expert   = kTRUE ; 
+  const Bool_t saveCorr = kTRUE ; 
+  const Bool_t image    = kTRUE ; 
 
-  if(fkOnline==kFALSE){
-    AliInfo("Offline mode: HLTforSDDobject used \n");
-    AliCDBEntry *hltforSDD = AliCDBManager::Instance()->Get("ITS/Calib/HLTforSDD");
-    if(!hltforSDD){
-      AliError("Calibration object retrieval failed! SDD will not be processed");    
-      fHLTSDD=NULL;
-      return;
-    }  
-    fHLTSDD = (AliITSHLTforSDD*)hltforSDD->GetObject();
-    if(!cacheStatus)hltforSDD->SetObject(NULL);
-    hltforSDD->SetOwner(kTRUE);
-    if(!cacheStatus)
-      {
-       delete hltforSDD;
-      }
-  }
+  Int_t rv = 0 ; 
   Int_t lay, lad, det;
-  Int_t LAY = -1;  //, LAD = -1;
-  char hname0[50];
   Int_t indexlast = 0;
   Int_t index1 = 0;
 
-  if(fLDC == 1 || fLDC == 2) LAY = 2;
-  if(fLDC == 3 || fLDC == 4) LAY = 3;
-  
-  if(fkOnline) {
-    AliInfo("Book Online Histograms for SDD\n");
-  }
-  else {
-    AliInfo("Book Offline Histograms for SDD\n ");
-  }
-  TH1D *h0 = new TH1D("SDDModPattern","HW Modules pattern",fgknSDDmodules,239.5,499.5);
+       fSDDhRawsTask = 0;
+       if(fkOnline){AliInfo("Book Online Histograms for SDD\n");}
+  else {AliInfo("Book Offline Histograms for SDD\n ");}
+  TH1D *h0 = new TH1D("SDDModPattern","HW Modules pattern",fgknSDDmodules,239.5,499.5); //0
   h0->GetXaxis()->SetTitle("Module Number");
   h0->GetYaxis()->SetTitle("Counts");
-  fAliITSQADataMakerRec->Add2RawsList((new TH1D(*h0)),0+fGenRawsOffset,kTRUE,kFALSE);
-  delete h0;
+  rv = fAliITSQADataMakerRec->Add2RawsList(h0,0+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
   fSDDhRawsTask++;
-  if(fLDC==0 || fLDC==1 || fLDC==2){
-    TH1D *h1 = new TH1D("SDDLadPatternL3","Ladder pattern L3",14,0.5,14.5);  
-    h1->GetXaxis()->SetTitle("Ladder Number on Lay3");
-    h1->GetYaxis()->SetTitle("Counts");
-    fAliITSQADataMakerRec->Add2RawsList((new TH1D(*h1)),1+fGenRawsOffset, kTRUE,kFALSE);
-       delete h1;
-    fSDDhRawsTask++;
-  }    
-  if(fLDC==0 || fLDC==3 || fLDC==4){
-    TH1D *h2 = new TH1D("SDDLadPatternL4","Ladder pattern L4",22,0.5,22.5);  
-    h2->GetXaxis()->SetTitle("Ladder Number on Lay4");
-    h2->GetYaxis()->SetTitle("Counts");
-    fAliITSQADataMakerRec->Add2RawsList((new TH1D(*h2)),2+fGenRawsOffset, kTRUE,kFALSE);
-       delete h2;
-    fSDDhRawsTask++;
-  }
-  if(fLDC==0 || fLDC==1 || fLDC==2){
-       for(Int_t i=1; i<=fgkLADDonLAY3; i++) {
-      sprintf(hname0,"SDDModPattern_L3_%d",i);
-      TH1D *h3 = new TH1D(hname0,hname0,6,0.5,6.5);
-      h3->GetXaxis()->SetTitle("Module Number");
-      h3->GetYaxis()->SetTitle("Counts");
-      fAliITSQADataMakerRec->Add2RawsList((new TH1D(*h3)),i-1+3+fGenRawsOffset, kTRUE, kFALSE);
-         delete h3;
-      fSDDhRawsTask++;
-    }
-  }
-  if(fLDC==0 || fLDC==3 || fLDC==4){
-    for(Int_t i=1; i<=fgkLADDonLAY4; i++) {
-      sprintf(hname0,"SDDModPattern_L4_%d",i);
-      TH1D *h4 = new TH1D(hname0,hname0,8,0.5,8.5);
-      h4->GetXaxis()->SetTitle("Module Number");
-      h4->GetYaxis()->SetTitle("Counts");
-      fAliITSQADataMakerRec->Add2RawsList((new TH1D(*h4)),i-1+17+fGenRawsOffset, kTRUE,kFALSE);
-         delete h4;
-      fSDDhRawsTask++;
-    }
-  }
-
-  //DDL Pattern 
-      TH2D *hddl = new TH2D("SDDDDLPattern","SDD DDL Pattern ",24,-0.5,23.5,24,-0.5,23.5);
-      hddl->GetXaxis()->SetTitle("Channel");
-      hddl->GetYaxis()->SetTitle("#DDL");
-      fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hddl)),39+fGenRawsOffset, kTRUE,kFALSE);
-      delete hddl;
-      fSDDhRawsTask++;
-
+  
   //zPhi distribution using ladder and modules numbers
-      TH2D *hphil3 = new TH2D("SDDphizL3","SDD #varphiz Layer3 ",6,0.5,6.5,14,0.5,14.5);
-      hphil3->GetXaxis()->SetTitle("z[#Module L3 ]");
-      hphil3->GetYaxis()->SetTitle("#varphi[#Ladder L3]");
-      fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hphil3)),40+fGenRawsOffset, kFALSE,kTRUE); 
-      delete hphil3;
-      fSDDhRawsTask++;
+  TH2D *hphil3 = new TH2D("SDDphizL3","SDD #varphiz Layer3 ",12,0.5,6.5,14,0.5,14.5);//1
+  hphil3->GetXaxis()->SetTitle("z[Module Number L3 ]");
+  hphil3->GetYaxis()->SetTitle("#varphi[ Ladder Number L3]");
+  rv = fAliITSQADataMakerRec->Add2RawsList(hphil3,1+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr); 
+  fSDDhRawsTask++;
+  
+  TH2D *hphil4 = new TH2D("SDDphizL4","SDD #varphiz Layer4 ",16,0.5,8.5,22,0.5,22.5); //2
+  hphil4->GetXaxis()->SetTitle("z[Module Number L4]");
+  hphil4->GetYaxis()->SetTitle("#varphi[Ladder Number L4]");
+   rv = fAliITSQADataMakerRec->Add2RawsList(hphil4,2+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr); 
+  fSDDhRawsTask++;
+  
+  //normalized histograms
+  TH1D *h0norm = new TH1D("SDDModPatternNORM","NORM HW Modules pattern",fgknSDDmodules,239.5,499.5); //3
+  h0norm->GetXaxis()->SetTitle("Module Number");
+  h0norm->GetYaxis()->SetTitle("Counts");
+  rv = fAliITSQADataMakerRec->Add2RawsList(h0norm,3+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
+  fSDDhRawsTask++;
+  
+  //zPhi distribution using ladder and modules numbers
+  TH2D *hphil3norm = new TH2D("SDDphizL3NORM","NORM SDD #varphiz Layer3 ",12,0.5,6.5,14,0.5,14.5);//4
+  hphil3norm->GetXaxis()->SetTitle("z[Module Number L3 ]");
+  hphil3norm->GetYaxis()->SetTitle("#varphi[ Ladder Number L3]");
+  rv = fAliITSQADataMakerRec->Add2RawsList(hphil3norm,4+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image, saveCorr); 
+  fSDDhRawsTask++;
+  
+  TH2D *hphil4norm = new TH2D("SDDphizL4NORM","NORM SDD #varphiz Layer4 ",16,0.5,8.5,22,0.5,22.5); //5
+  hphil4norm->GetXaxis()->SetTitle("z[Module Number L4]");
+  hphil4norm->GetYaxis()->SetTitle("#varphi[Ladder Number L4]");
+   rv = fAliITSQADataMakerRec->Add2RawsList(hphil4norm,5+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image, saveCorr); 
+  fSDDhRawsTask++;
 
-      TH2D *hphil4 = new TH2D("SDDphizL4","SDD #varphiz Layer4 ",8,0.5,8.5,22,0.5,22.5);
-      hphil4->GetXaxis()->SetTitle("z[#Module L4]");
-      hphil4->GetYaxis()->SetTitle("#varphi[#Ladder L4]");
-      fAliITSQADataMakerRec->Add2RawsList((new TH2D(*hphil4)),41+fGenRawsOffset, kFALSE,kTRUE); 
-      delete hphil4;
+       
+       Float_t hMax = 0.2;
+       
+       TH1F *oL3 = new TH1F("SDDL3_RelativeOccupancy","Layer 3 Relative Occupancy",200,0.,hMax);
+       rv = fAliITSQADataMakerRec->Add2RawsList(oL3,6+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr); //6 
+       fSDDhRawsTask++;
+       
+       TH1F *oL4 = new TH1F("SDDL4_RelativeOccupancy","Layer 4 Relative Occupancy",200,0.,hMax);
+       rv = fAliITSQADataMakerRec->Add2RawsList(oL4,7+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr); //7
+       fSDDhRawsTask++;
+       
+       fOnlineOffsetRaws = fSDDhRawsTask;
+       if(fkOnline){
+      //DDL Pattern 
+      TH2D *hddl = new TH2D("SDDDDLPattern","SDD DDL Pattern ",24,-0.5,11.5,24,-0.5,23.5); //8
+      hddl->GetXaxis()->SetTitle("Channel");
+      hddl->GetYaxis()->SetTitle("DDL Number");
+      rv = fAliITSQADataMakerRec->Add2RawsList(hddl,fOnlineOffsetRaws+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
       fSDDhRawsTask++;
-
-
-  Int_t indexlast1 = 0;
-  Int_t indexlast2 = 0;
-
-  if(fkOnline) {
-       fTimeBinSize = 4;
-    indexlast = 0;
-    index1 = 0;
-    indexlast1 = fSDDhRawsTask;
-    indexlast2 = 0;
-    char *hname[3];
-    for(Int_t i=0; i<3; i++) hname[i]= new char[50];
-    for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
-               for(Int_t iside=0;iside<fgknSide;iside++){
-                       AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
-                       sprintf(hname[0],"SDDchargeMapFSE_L%d_%d_%d_%d",lay,lad,det,iside);
-                       sprintf(hname[1],"SDDChargeMapForSingleEvent_L%d_%d_%d_%d",lay,lad,det,iside);
-                       sprintf(hname[2],"SDDhmonoDMap_L%d_%d_%d_%d",lay,lad,det,iside);
-                       TProfile2D *fModuleChargeMapFSE = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
-                       fModuleChargeMapFSE->GetXaxis()->SetTitle("Time Bin");
-                       fModuleChargeMapFSE->GetYaxis()->SetTitle("Anode");
-                       fAliITSQADataMakerRec->Add2RawsList((new TProfile2D(*fModuleChargeMapFSE)),indexlast1 + index1 + fGenRawsOffset,kTRUE,kFALSE);
-                       delete fModuleChargeMapFSE;
-                       
-                       fSDDhRawsTask++;
-                       index1++;        
-                       indexlast2 = indexlast1 + index1;
-               }
-       }
-
-    for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
-               for(Int_t iside=0;iside<fgknSide;iside++){
-                       AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
-                       sprintf(hname[0],"SDDchargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
-                       sprintf(hname[1],"SDDChargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
-                       TProfile2D *fModuleChargeMap = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
-                       fModuleChargeMap->GetXaxis()->SetTitle("Time Bin");
-                       fModuleChargeMap->GetYaxis()->SetTitle("Anode");
-                       fAliITSQADataMakerRec->Add2RawsList((new TProfile2D(*fModuleChargeMap)),indexlast1 + index1 + fGenRawsOffset,kTRUE,kFALSE);
-                       delete fModuleChargeMap;
-
-                       fSDDhRawsTask++;
-                       index1++;        
-                       indexlast2 = indexlast1 + index1;
-               }
-       }
+      Int_t indexlast1 = 0;
   
-}  // kONLINE
-
-  AliDebug(1,Form("%d SDD Raws histograms booked\n",fSDDhRawsTask));
+      fTimeBinSize = 4;
+      indexlast = 0;
+      index1 = 0;
+      indexlast1 = fSDDhRawsTask;
+      char *hname[3];
+      for(Int_t i=0; i<3; i++) hname[i]= new char[50];
+      for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
+                 for(Int_t iside=0;iside<fgknSide;iside++){
+                         AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
+                         sprintf(hname[0],"SDDchargeMapFSE_L%d_%d_%d_%d",lay,lad,det,iside);
+                         sprintf(hname[1],"SDDChargeMapForSingleEvent_L%d_%d_%d_%d",lay,lad,det,iside);
+         //      sprintf(hname[2],"SDDhmonoDMap_L%d_%d_%d_%d",lay,lad,det,iside);
+                         TProfile2D *fModuleChargeMapFSE = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
+                         fModuleChargeMapFSE->GetXaxis()->SetTitle("Time Bin");
+                         fModuleChargeMapFSE->GetYaxis()->SetTitle("Anode");
+                         rv = fAliITSQADataMakerRec->Add2RawsList(fModuleChargeMapFSE,indexlast1 + index1 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);         
+                         fSDDhRawsTask++;
+                         index1++;      
+                 }
+      }
+      
+      for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
+                 for(Int_t iside=0;iside<fgknSide;iside++){
+                         AliITSgeomTGeo::GetModuleId(moduleSDD+fgkmodoffset, lay, lad, det);
+                         sprintf(hname[0],"SDDchargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
+                         sprintf(hname[1],"SDDChargeMap_L%d_%d_%d_%d",lay,lad,det,iside);
+                         TProfile2D *fModuleChargeMap = new TProfile2D(hname[0],hname[1],256/fTimeBinSize,-0.5,255.5,256,-0.5,255.5);
+                         fModuleChargeMap->GetXaxis()->SetTitle("Time Bin");
+                         fModuleChargeMap->GetYaxis()->SetTitle("Anode Number");
+                         rv = fAliITSQADataMakerRec->Add2RawsList(fModuleChargeMap,indexlast1 + index1 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
+                         fSDDhRawsTask++;
+                         index1++;      
+                 }
+      }
+      
+      //Event Size 
+      TH1F *hsize = new TH1F("SDDEventSize","SDD Event Size ",500,-0.5,199.5); 
+      hsize->SetBit(TH1::kCanRebin);
+      hsize->GetXaxis()->SetTitle("Event Size [kB]");
+      hsize->GetYaxis()->SetTitle("Entries");
+      rv = fAliITSQADataMakerRec->Add2RawsList(hsize,indexlast1 + index1 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image, !saveCorr);
+      fSDDhRawsTask++;
+         
+    }  // kONLINE
+       
+       cout << fSDDhRawsTask << " SDD Raws histograms booked" << endl;
+       
+       AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Raws histograms booked\n",fSDDhRawsTask));
+       return rv ; 
 }
 
 
 //____________________________________________________________________________
-void AliITSQASDDDataMakerRec::MakeRaws(AliRawReader* rawReader)
+Int_t AliITSQASDDDataMakerRec::MakeRaws(AliRawReader* rawReader)
 { 
   // Fill QA for RAW - SDD -
-
-  if(!fDDLModuleMap){
-    AliError("SDD DDL module map not available - skipping SDD QA");
-    return;
-  }
-  if(rawReader->GetType() != 7) return;  // skips non physical triggers
-  AliDebug(1,"entering MakeRaws\n");                 
-
+  Int_t rv = 0;
+  // Check id histograms already created for this Event Specie
+  fNEvent++;
+  if(!fDDLModuleMap){CreateTheMap();}
+  if(rawReader->GetType() != 7) return rv;  // skips non physical triggers
+  AliDebug(AliQAv1::GetQADebugLevel(),"entering MakeRaws\n");                 
   rawReader->Reset();       
-  AliITSRawStream *stream;
-  
-  if(fkOnline==kTRUE)
-    {
-      if(GetHLTMode()==kTRUE)
-       {
-         //AliInfo("Online  mode: HLT C compressed mode used for SDD\n");
-         stream = new AliITSRawStreamSDDCompressed(rawReader); }
-      else{ 
-       //AliInfo("Online  mode: HLT A mode used for SDD\n");
-       stream = new AliITSRawStreamSDD(rawReader);}     
-    }
-  else 
-    {
-      if(fHLTSDD->IsHLTmodeC()==kTRUE){
-       //AliInfo("Offline  mode: HLT C compressed mode used for SDD\n");
-       stream = new AliITSRawStreamSDDCompressed(rawReader);
-      }else 
-       {
-         //AliInfo("Offline  mode: HLT A mode used for SDD\n");
-       stream = new AliITSRawStreamSDD(rawReader);
-      }
-    }
-  
-  //ckeck on HLT mode
-                  
-
-  
-  //  AliITSRawStreamSDD s(rawReader); 
-  stream->SetDDLModuleMap(fDDLModuleMap);
+  rawReader->Select("ITSSDD");
+  AliITSRawStream *stream=AliITSRawStreamSDD::CreateRawStreamSDD(rawReader);
+   stream->SetDDLModuleMap(fDDLModuleMap);
   
   Int_t lay, lad, det; 
-
+  
   Int_t index=0;
   if(fkOnline) {
     for(Int_t moduleSDD =0; moduleSDD<fgknSDDmodules; moduleSDD++){
-        for(Int_t iside=0;iside<fgknSide;iside++) {
-          if(fSDDhRawsTask > 42 + index) fAliITSQADataMakerRec->GetRawsData(42 + index +fGenRawsOffset)->Reset(); 
-          index++;
-        }
+      for(Int_t iside=0;iside<fgknSide;iside++) {
+               if(fSDDhRawsTask > fOnlineOffsetRaws + 1 + index) fAliITSQADataMakerRec->GetRawsData(fOnlineOffsetRaws + 1 + index +fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();   
+       // 4  because the 2D histos for single events start after the fourth position
+       index++;
+      }
     }
   }
   
@@ -369,23 +443,38 @@ void AliITSQASDDDataMakerRec::MakeRaws(AliRawReader* rawReader)
   Int_t ildcID = -1;
   Int_t iddl = -1;
   Int_t isddmod = -1;
-  Int_t coord1, coord2, signal, moduleSDD, ioffset, iorder, activeModule, index1;
-  
+  Int_t coord1, coord2, signal, moduleSDD, activeModule, index1; 
+  //if(fkOnline)
+  //{
+      Int_t prevDDLID = -1;
+      UInt_t size = 0;
+      int totalddl=static_cast<int>(fDDLModuleMap->GetNDDLs());
+      Bool_t *ddldata=new Bool_t[totalddl];
+      for(Int_t jddl=0;jddl<totalddl;jddl++){ddldata[jddl]=kFALSE;}
+      //}
   while(stream->Next()) {
     ildcID = rawReader->GetLDCId();
-    iddl = rawReader->GetDDLID() - fgkDDLIDshift;
+    iddl = rawReader->GetDDLID();// - fgkDDLIDshift;
+    //printf("----------------------iddl %i\n",iddl);
 
     isddmod = fDDLModuleMap->GetModuleNumber(iddl,stream->GetCarlosId());
     if(isddmod==-1){
-      AliDebug(1,Form("Found module with iddl: %d, stream->GetCarlosId: %d \n",iddl,stream->GetCarlosId()));
+      AliDebug(AliQAv1::GetQADebugLevel(),Form("Found module with iddl: %d, stream->GetCarlosId: %d \n",iddl,stream->GetCarlosId()));
       continue;
     }
     if(stream->IsCompletedModule()) {
-      AliDebug(1,Form("IsCompletedModule == KTRUE\n"));
+      AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedModule == KTRUE\n"));
       continue;
     } 
     if(stream->IsCompletedDDL()) {
-      AliDebug(1,Form("IsCompletedDDL == KTRUE\n"));
+      if(fkOnline){
+       if ((rawReader->GetDDLID() != prevDDLID)&&(ddldata[iddl])==kFALSE){
+         size += rawReader->GetDataSize();//in bytes
+         prevDDLID = rawReader->GetDDLID();
+         ddldata[iddl]=kTRUE;
+       }
+      }
+      AliDebug(AliQAv1::GetQADebugLevel(),Form("IsCompletedDDL == KTRUE\n"));
       continue;
     } 
     
@@ -393,318 +482,602 @@ void AliITSQASDDDataMakerRec::MakeRaws(AliRawReader* rawReader)
     coord2 = stream->GetCoord2();
     signal = stream->GetSignal();
     
-     moduleSDD = isddmod - fgkmodoffset;
-
+    moduleSDD = isddmod - fgkmodoffset;
+    
     if(isddmod <fgkmodoffset|| isddmod>fgknSDDmodules+fgkmodoffset-1) {
-      AliDebug(1,Form( "Module SDD = %d, resetting it to 1 \n",isddmod));
+      AliDebug(AliQAv1::GetQADebugLevel(),Form( "Module SDD = %d, resetting it to 1 \n",isddmod));
       isddmod = 1;
     }
-
+    
     AliITSgeomTGeo::GetModuleId(isddmod, lay, lad, det);
-    ioffset = 3;
-    iorder = 1;
-    if(lay==4) { 
-      ioffset += 14;
-      iorder = 2;   
-    } 
+    Short_t iside = stream->GetChannel();
 
-    fAliITSQADataMakerRec->GetRawsData( 0 + fGenRawsOffset )->Fill(isddmod);   
+    //printf(" \n%i %i %i %i \n ",lay, lad, det,iside );
+    fAliITSQADataMakerRec->GetRawsData( 0 + fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()] )->Fill(isddmod);   
+    if(lay==3) fAliITSQADataMakerRec->GetRawsData(1+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(det+0.5*iside-0.25,lad); 
+    if(lay==4) fAliITSQADataMakerRec->GetRawsData(2+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(det+0.5*iside-0.25,lad);
+    if(fkOnline) {
 
-    fAliITSQADataMakerRec->GetRawsData( iorder + fGenRawsOffset )->Fill(lad);
+      fAliITSQADataMakerRec->GetRawsData(fOnlineOffsetRaws+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill((stream->GetCarlosId())+0.5*iside -0.5,iddl);
+      //  printf("content ddlmap %d, %d = %f \n",(stream->GetCarlosId()+0.5*iside -0.5),iddl,fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetBinContent(1+(det-1)*2;lad));
+      //printf("content ddlmap %d, %d = %f \n",(stream->GetCarlosId())+0.5*iside -0.5,iddl,fAliITSQADataMakerRec->GetRawsData(3+fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetBinContent(1+(stream->GetCarlosId()-1)*2,iddl));
+      activeModule = moduleSDD;
+      index1 = activeModule * 2 + iside;
+      
+      if(index1<0){
+        AliDebug(AliQAv1::GetQADebugLevel(),Form("Wrong index number %d - patched to 0\n",index1));
+                 index1 = 0;
+      }      
+
+      if(fSDDhRawsTask > fOnlineOffsetRaws +1 + index1) {                                  
+        ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(fOnlineOffsetRaws +1 + index1 +fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])))->Fill(coord2, coord1, signal);     
+        ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(fOnlineOffsetRaws +1 + index1 + 260*2 +fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])))->Fill(coord2, coord1, signal); 
+      }
+    }//online
+    cnt++;
+    if(!(cnt%10000)) AliDebug(AliQAv1::GetQADebugLevel(),Form(" %d raw digits read",cnt));
+  }//end next()
+  if(fkOnline){((TH1F*)(fAliITSQADataMakerRec->GetRawsData(fOnlineOffsetRaws +1 + 260*4 +fGenRawsOffset[fAliITSQADataMakerRec->GetEventSpecie()])))->Fill(size/1024.);//KB
+  }
+       
+  AliDebug(AliQAv1::GetQADebugLevel(),Form("Event completed, %d raw digits read",cnt)); 
+  delete stream;
+  stream = NULL; 
 
-    fAliITSQADataMakerRec->GetRawsData( ioffset+lad-1 +fGenRawsOffset )->Fill(det); //-1 because ladder# starts from 1    
+//     if(fkOnline) {
+//             AnalyseBNG(); // Analyse Baseline, Noise, Gain
+//             AnalyseINJ(); // Analyse Injectors
+//     }
 
+  delete []ddldata;
+  ddldata=NULL;
+  return rv ; 
+}
 
-   
-    if(lay==3)    fAliITSQADataMakerRec->GetRawsData(40+fGenRawsOffset)->Fill(det,lad); 
-    if(lay==4) { 
-      fAliITSQADataMakerRec->GetRawsData(41+fGenRawsOffset)->Fill(det,lad);}  
+//____________________________________________________________________________ 
+Int_t AliITSQASDDDataMakerRec::InitDigits()
+{ 
+  //  if(!fHistoCalibration)InitCalibrationArray();
+  // Initialization for DIGIT data - SDD -  
+  const Bool_t expert   = kTRUE ; 
+  const Bool_t image    = kTRUE ;
+  Int_t rv = 0 ; 
+//  fGenDigitsOffset = (fAliITSQADataMakerRec->fDigitsQAList[AliRecoParam::kDefault])->GetEntries();
+  //fSDDhTask must be incremented by one unit every time a histogram is ADDED to the QA List
+  TH1F* h0=new TH1F("SDD DIGITS Module Pattern","SDD DIGITS Module Pattern",260,239.5,499.5);       //hmod
+  h0->GetXaxis()->SetTitle("SDD Module Number");
+  h0->GetYaxis()->SetTitle("# DIGITS");
+  rv = fAliITSQADataMakerRec->Add2DigitsList(h0,fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);
+  fSDDhDigitsTask ++;
+  // printf("Add %s \t the task offset is %i\n",fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetName() , fSDDhDigitsTask );
+  TH1F* h1=new TH1F("SDD Anode Distribution","DIGITS Anode Distribution",512,-0.5,511.5);      //hanocc
+  h1->GetXaxis()->SetTitle("Anode Number");
+  h1->GetYaxis()->SetTitle("# DIGITS");
+  rv = fAliITSQADataMakerRec->Add2DigitsList(h1,1+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);
+  fSDDhDigitsTask ++;
+  //printf("Add %s \t the task offset is %i\n",fAliITSQADataMakerRec->GetDigitsData(1+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetName() , fSDDhDigitsTask );
+  TH1F* h2=new TH1F("SDD Tbin Distribution","DIGITS Tbin Distribution",256,-0.5,255.5);      //htbocc
+  h2->GetXaxis()->SetTitle("Tbin Number");
+  h2->GetYaxis()->SetTitle("# DIGITS");
+  rv = fAliITSQADataMakerRec->Add2DigitsList(h2,2+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);
+  fSDDhDigitsTask ++;
+  //printf("Add %s \t the task offset is %i\n",fAliITSQADataMakerRec->GetDigitsData(2+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetName() , fSDDhDigitsTask );
+  TH1F* h3=new TH1F("SDD ADC Counts Distribution","DIGITS ADC Counts Distribution",200,0.,1024.);          //hsig
+  h3->GetXaxis()->SetTitle("ADC Value");
+  h3->GetYaxis()->SetTitle("# DIGITS");
+  rv = fAliITSQADataMakerRec->Add2DigitsList(h3,3+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);
+  fSDDhDigitsTask ++;
+  //printf("Add %s \t the task offset is %i\n",fAliITSQADataMakerRec->GetDigitsData(3+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->GetName() , fSDDhDigitsTask );
+  AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Digits histograms booked\n",fSDDhDigitsTask));
+  return rv ; 
+}
 
-    Short_t iside = stream->GetChannel();
+//____________________________________________________________________________
+Int_t AliITSQASDDDataMakerRec::MakeDigits(TTree * digits)
+{ 
 
-    fAliITSQADataMakerRec->GetRawsData(39+fGenRawsOffset)->Fill(2*(stream->GetCarlosId())+iside,iddl);
+  // Fill QA for DIGIT - SDD -
+  //AliITS *fITS  = (AliITS*)gAlice->GetModule("ITS");
+  //fITS->SetTreeAddress();
+  //TClonesArray *iITSdigits  = fITS->DigitsAddress(1);
 
-    activeModule = moduleSDD;
-    index1 = activeModule * 2 + iside;
-    
-    if(index1<0){
-      AliDebug(1,Form("Wrong index number %d - patched to 0\n",index1));
-      index1 = 0;
-    }
 
-    if(fkOnline) {
-      if(fSDDhRawsTask > 42 + index1) {                                  
-        ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(42 + index1 +fGenRawsOffset)))->Fill(coord2, coord1, signal);     
-        ((TProfile2D *)(fAliITSQADataMakerRec->GetRawsData(42 + index1 + 260*2 +fGenRawsOffset)))->Fill(coord2, coord1, signal); 
-      }
+  Int_t rv = 0 ; 
+
+  TBranch *branchD = digits->GetBranch("ITSDigitsSDD");
+
+  if (!branchD) {
+    AliError("can't get the branch with the ITS SDD digits !");
+    return rv ;
+  }
+  // Check id histograms already created for this Event Specie
+//  if ( ! fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset) )
+//    rv = InitDigits() ;
+  
+  static TClonesArray statDigits("AliITSdigitSDD");
+  TClonesArray *iITSdigits = &statDigits;
+  branchD->SetAddress(&iITSdigits);
+
+  for(Int_t i=0; i<260; i++){
+    Int_t nmod=i+240;
+    digits->GetEvent(nmod);
+    Int_t ndigits = iITSdigits->GetEntries();
+    fAliITSQADataMakerRec->GetDigitsData(fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(nmod,ndigits);
+
+    for (Int_t idig=0; idig<ndigits; idig++) {
+      AliITSdigit *dig=(AliITSdigit*)iITSdigits->UncheckedAt(idig);
+      Int_t iz=dig->GetCoord1();  // cell number z
+      Int_t ix=dig->GetCoord2();  // cell number x
+      Int_t sig=dig->GetSignal();
+      fAliITSQADataMakerRec->GetDigitsData(1+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(iz);
+      fAliITSQADataMakerRec->GetDigitsData(2+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(ix);
+      fAliITSQADataMakerRec->GetDigitsData(3+fGenDigitsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(sig);
     }
-       cnt++;
-       if(!(cnt%10000)) AliDebug(1,Form(" %d raw digits read",cnt));
   }
-  AliDebug(1,Form("Event completed, %d raw digits read",cnt)); 
-  delete stream;
-  stream = NULL; 
- }
+  return rv ; 
+}
 
 //____________________________________________________________________________ 
-void AliITSQASDDDataMakerRec::InitRecPoints()
+Int_t AliITSQASDDDataMakerRec::InitRecPoints()
 {
+  //if(!fHistoCalibration)InitCalibrationArray();
+       //AliInfo("Initialize SDD recpoints histos\n");
   // Initialization for RECPOINTS - SDD -
-
-  // fGenOffset = (fAliITSQADataMakerRec->fRecPointsQAList)->GetEntries();
-  fGenRecPointsOffset = (fAliITSQADataMakerRec->fRecPointsQAList)->GetEntries();
-
-  Int_t nOnline=1;
-  Int_t  nOnline2=1;
-  Int_t  nOnline3=1; 
-  Int_t  nOnline4=1;
-  if(fkOnline)
-    {
-      //      cout<<"konline"<<endl;
-      nOnline=4;
-      nOnline2=28;
-      nOnline3=64;
-      nOnline4=14;
-    }
-
-  
-  TH1F *h0 = new TH1F("SDDLay3TotCh","Layer 3 total charge",1000/nOnline,-0.5, 499.5); //position number 0
-  h0->GetXaxis()->SetTitle("ADC value");
+  const Bool_t expert   = kTRUE ; 
+  const Bool_t image    = kTRUE ; 
+  Int_t rv = 0 ; 
+//  fGenRecPointsOffset = (fAliITSQADataMakerRec->fRecPointsQAList[AliRecoParam::kDefault])->GetEntries();
+
+  //AliInfo(Form("fAliITSQADataMakerRec->GetEventSpecie() %d\n",fAliITSQADataMakerRec->GetEventSpecie()));
+  //AliInfo(Form("fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()] %d\n",fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()]));
+  TH1F *h0 = new TH1F("SDDLay3TotCh","Layer 3 total charge",250,-0.5, 499.5); //position number 0
+  //h0->SetBit(TH1::kCanRebin);
+  h0->GetXaxis()->SetTitle("KeV");
   h0->GetYaxis()->SetTitle("Entries");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h0)), 0 +fGenRecPointsOffset,kFALSE);
-  delete h0;
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h0, 0 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);//NON expert image
   fSDDhRecPointsTask++;
  
-  TH1F *h1 = new TH1F("SDDLay4TotCh","Layer 4 total charge",1000/nOnline,-0.5, 499.5);//position number 1
-  h1->GetXaxis()->SetTitle("ADC value");
+  TH1F *h1 = new TH1F("SDDLay4TotCh","Layer 4 total charge",250,-0.5, 499.5);//position number 1
+  //h1->SetBit(TH1::kCanRebin);
+  h1->GetXaxis()->SetTitle("Kev");
   h1->GetYaxis()->SetTitle("Entries");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h1)), 1 +fGenRecPointsOffset,kFALSE);
-  delete h1;
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h1, 1 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);//NON expert image
   fSDDhRecPointsTask++;
 
   char hisnam[50];
-  TH2F *h2 = new TH2F("SDDGlobalCoordDistribYX","YX Global Coord Distrib",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 2
+  TH2F *h2 = new TH2F("SDDGlobalCoordDistribYX","YX Global Coord Distrib",56,-28,28,56,-28,28);//position number 2
   h2->GetYaxis()->SetTitle("Y[cm]");
   h2->GetXaxis()->SetTitle("X[cm]");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h2)),2+fGenRecPointsOffset,kTRUE);
-  delete h2;
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h2,2+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);// NON expert image
   fSDDhRecPointsTask++;
 
-  TH2F *h3 = new TH2F("SDDGlobalCoordDistribRZ","RZ Global Coord Distrib",6400/nOnline3,-32,32,1400/nOnline4,12,26);//position number 3
+  TH2F *h3 = new TH2F("SDDGlobalCoordDistribRZ","RZ Global Coord Distrib",128,-32,32,56,12,26);//position number 3
   h3->GetYaxis()->SetTitle("R[cm]");
   h3->GetXaxis()->SetTitle("Z[cm]");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h3)),3+fGenRecPointsOffset,kTRUE);
-  delete h3;
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h3,3+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);// NON expert image
   fSDDhRecPointsTask++;
   
-  TH2F *h4 = new TH2F("SDDGlobalCoordDistribL3PHIZ","#varphi Z Global Coord Distrib L3",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 4
+  TH2F *h4 = new TH2F("SDDGlobalCoordDistribL3PHIZ","#varphi Z Global Coord Distrib L3",96,-23,23,112,-TMath::Pi(),TMath::Pi());//position number 4
   h4->GetYaxis()->SetTitle("#phi[rad]");
   h4->GetXaxis()->SetTitle("Z[cm]");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h4)),4+fGenRecPointsOffset,kFALSE);
-  delete h4;
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h4,4+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);//NON expert image
   fSDDhRecPointsTask++;
 
-  TH2F *h5 = new TH2F("SDDGlobalCoordDistribL4PHIZ","#varphi Z Global Coord Distrib L4",6400/nOnline3,-32,32,360/nOnline,-TMath::Pi(),TMath::Pi());//position number 5
+  TH2F *h5 = new TH2F("SDDGlobalCoordDistribL4PHIZ","#varphi Z Global Coord Distrib L4",128,-31,31,176,-TMath::Pi(),TMath::Pi());//position number 5
   h5->GetYaxis()->SetTitle("#phi[rad]");
   h5->GetXaxis()->SetTitle("Z[cm]");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h5)),5+fGenRecPointsOffset,kFALSE);
-  delete h5;
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h5,5+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);//NON expert image
   fSDDhRecPointsTask++;
   
-  TH1F *h6 = new TH1F("SDDModPatternRP","Modules pattern RP",fgknSDDmodules,239.5,499.5); //position number 6
+  TH1D *h6 = new TH1D("SDDModPatternRP","Modules pattern RP",fgknSDDmodules,239.5,499.5); //position number 6
   h6->GetXaxis()->SetTitle("Module number"); //spd offset = 240
   h6->GetYaxis()->SetTitle("Entries");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h6)),6 +fGenRecPointsOffset,kTRUE);
-  delete h6;
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h6,6 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
   fSDDhRecPointsTask++;
-  TH1F *h7 = new TH1F("SDDLadPatternL3RP","Ladder pattern L3 RP",14,0.5,14.5);  //position number 7
-  h7->GetXaxis()->SetTitle("Ladder #, Layer 3");
-  h7->GetYaxis()->SetTitle("Entries");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h7)),7 +fGenRecPointsOffset,kTRUE);
-  delete h7;
+
+  
+  TH2D *h7 = new TH2D("SDDModPatternL3RP","Modules pattern L3 RP",12,0.5,6.5,14,0.5,14.5);  //position number 7
+  h7->GetXaxis()->SetTitle("z[#Module L3 ]");
+  h7->GetYaxis()->SetTitle("#varphi[#Ladder L3]");
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h7,7 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
   fSDDhRecPointsTask++;
-  TH1F *h8 = new TH1F("SDDLadPatternL4RP","Ladder pattern L4 RP",22,0.5,22.5); //position number 8
-  h8->GetXaxis()->SetTitle("Ladder #, Layer 4");
-  h8->GetYaxis()->SetTitle("Entries");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h8)),8 +fGenRecPointsOffset,kTRUE);
-  delete h8;
+
+  TH2D *h8 = new TH2D("SDDModPatternL4RP","Modules pattern L4 RP",16,0.5,8.5,22,0.5,22.5); //position number 8
+  h8->GetXaxis()->SetTitle("[#Module L3 ]");
+  h8->GetYaxis()->SetTitle("#varphi[#Ladder L4]");
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h8,8 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
   fSDDhRecPointsTask++;
-  TH2F *h9 = new TH2F("SDDLocalCoordDistrib","Local Coord Distrib",1000/nOnline,-4,4,1000/nOnline,-4,4);//position number 9
-  h9->GetXaxis()->SetTitle("X local coord, drift, cm");
-  h9->GetYaxis()->SetTitle("Z local coord, anode, cm");
-  fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h9)),9 +fGenRecPointsOffset,kTRUE);
-  delete h9;
+
+  //------------------------norm--------------------------//
+
+
+  TH1D *h9 = new TH1D("SDDModPatternRPNORM","Modules pattern RP NORM",fgknSDDmodules,239.5,499.5); //position number 9
+  h9->GetXaxis()->SetTitle("Module number"); //spd offset = 240
+  h9->GetYaxis()->SetTitle("Entries");
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h9,9 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
   fSDDhRecPointsTask++;
 
+  
+  TH2D *h10 = new TH2D("SDDModPatternL3RPNORM","Modules pattern L3 RP NORM",12,0.5,6.5,14,0.5,14.5);  //position number 10
+  h10->GetXaxis()->SetTitle("z[#Module L3 ]");
+  h10->GetYaxis()->SetTitle("#varphi[#Ladder L3]");
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h10,10 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO  image
+  fSDDhRecPointsTask++;
 
-    TH1F *h10 = new TH1F("SDDrdistrib_Layer3" ,"SDD r distribution Layer3" ,100,14.,18.);//position number 10 (L3)
-    h10->GetXaxis()->SetTitle("r[cm]");
-    h10->GetXaxis()->CenterTitle();
-    h10->GetYaxis()->SetTitle("Entries");
-    fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h10)),10 +fGenRecPointsOffset,kTRUE);
-    delete h10;
-    fSDDhRecPointsTask++;
+  TH2D *h11 = new TH2D("SDDModPatternL4RPNORM","Modules pattern L4 RP NORM",16,0.5,8.5,22,0.5,22.5); //position number 11
+  h11->GetXaxis()->SetTitle("[#Module L4 ]");
+  h10->GetYaxis()->SetTitle("#varphi[#Ladder L4]");
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h11,11 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);//  expert NO image
+  fSDDhRecPointsTask++;
 
-    TH1F *h11 = new TH1F("SDDrdistrib_Layer4" ,"SDD r distribution Layer4" ,100,22.,26.);// and position number 11 (L4)
-    h11->GetXaxis()->SetTitle("r[cm]");
-    h11->GetXaxis()->CenterTitle();
-    h11->GetYaxis()->SetTitle("Entries");
-    fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h11)),11 +fGenRecPointsOffset,kTRUE);
-    delete h11;
-    fSDDhRecPointsTask++;
+  //--------------------------------------------------------//
 
+  TH2F *h12 = new TH2F("SDDLocalCoordDistrib","Local Coord Distrib",160,-4,4,160,-4,4);//position number 12
+  h12->GetXaxis()->SetTitle("X local coord, drift, cm");
+  h12->GetYaxis()->SetTitle("Z local coord, anode, cm");
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h12,12 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);//  expert  NO image
+  fSDDhRecPointsTask++;
+  
+  //AliInfo("Create SDD recpoints histos\n");
+  
+  TH1F *h13 = new TH1F("SDDrdistrib_Layer3" ,"SDD r distribution Layer3" ,100,14.,16.5);//position number 13 (L3)
+  h13->SetBit(TH1::kCanRebin);
+  h13->GetXaxis()->SetTitle("r[cm]");
+  h13->GetXaxis()->CenterTitle();
+  h13->GetYaxis()->SetTitle("Entries");
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h13,13 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
+  fSDDhRecPointsTask++;
+  
+  TH1F *h14 = new TH1F("SDDrdistrib_Layer4" ,"SDD r distribution Layer4" ,100,23.,25.);// and position number 14 (L4)
+  h14->SetBit(TH1::kCanRebin);
+  h14->GetXaxis()->SetTitle("r[cm]");
+  h14->GetXaxis()->CenterTitle();
+  h14->GetYaxis()->SetTitle("Entries");
+  rv = fAliITSQADataMakerRec->Add2RecPointsList(h14,14 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
+  fSDDhRecPointsTask++;
+  
   for(Int_t iLay=0; iLay<=1; iLay++){
     sprintf(hisnam,"SDDphidistrib_Layer%d",iLay+3);
-    TH1F *h12 = new TH1F(hisnam,hisnam,180,-TMath::Pi(),TMath::Pi());//position number 12 (L3) and position number 13 (L4)
-    h12->GetXaxis()->SetTitle("#varphi[rad]");
-    h12->GetXaxis()->CenterTitle();
-    h12->GetYaxis()->SetTitle("Entries");
-    fAliITSQADataMakerRec->Add2RecPointsList((new TH1F(*h12)),iLay+12+fGenRecPointsOffset,kTRUE);
-    delete h12;
+    TH1F *h15 = new TH1F(hisnam,hisnam,180,-TMath::Pi(),TMath::Pi());//position number 15 (L3) and position number 16 (L4)
+    h15->GetXaxis()->SetTitle("#varphi[rad]");
+    h15->GetXaxis()->CenterTitle();
+    h15->GetYaxis()->SetTitle("Entries");
+    rv = fAliITSQADataMakerRec->Add2RecPointsList(h15,iLay+15+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
     fSDDhRecPointsTask++;
   }
-
-  if(fkOnline)
-    {
-      TH2F *h14 = new TH2F("SDDGlobalCoordDistribYXFSE","YX Global Coord Distrib FSE",5600/nOnline2,-28,28,5600/nOnline2,-28,28);//position number 14
-      h14->GetYaxis()->SetTitle("Y[cm]");
-      h14->GetXaxis()->SetTitle("X[cm]");
-      fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h14)),14+fGenRecPointsOffset,kTRUE);
-      delete h14;
-      fSDDhRecPointsTask++;
-      
-      TH2F *h15 = new TH2F("SDDGlobalCoordDistribRZFSE","RZ Global Coord Distrib FSE",Int_t(6400/nOnline3),-32,32,1400/nOnline4,12,26);//position number 15
-      h15->GetYaxis()->SetTitle("R[cm]");
-      h15->GetXaxis()->SetTitle("Z[cm]");
-      fAliITSQADataMakerRec->Add2RecPointsList((new TH2F(*h15)),15+fGenRecPointsOffset,kTRUE);
-      delete h15;
+  
+  for(Int_t iLay=0; iLay<=1; iLay++){
+    sprintf(hisnam,"SDDdrifttime_Layer%d",iLay+3);
+    TH1F *h17 = new TH1F(hisnam,hisnam,45,-0.5,4499.5);//position number 17 (L3) and position number 18 (L4)
+    h17->SetBit(TH1::kCanRebin);
+    h17->GetXaxis()->SetTitle("drift time[ns]");
+    h17->GetXaxis()->CenterTitle();
+    h17->GetYaxis()->SetTitle("Entries");
+    rv = fAliITSQADataMakerRec->Add2RecPointsList(h17,iLay+17+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], !expert, image);// NON expert  image
+    fSDDhRecPointsTask++;
+  }
+  
+       Float_t hMax = 0.2;
+       
+       TH1F *oL3 = new TH1F("SDDL3_RelativeOccupancy","Layer 3 Relative Occupancy (RecPoints)",200,0.,hMax);
+       rv = fAliITSQADataMakerRec->Add2RecPointsList(oL3,fSDDhRecPointsTask+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image); // 19
+       fSDDhRecPointsTask++;
+       
+       TH1F *oL4 = new TH1F("SDDL4_RelativeOccupancy","Layer 4 Relative Occupancy (RecPoints)",200,0.,hMax);
+       rv = fAliITSQADataMakerRec->Add2RecPointsList(oL4,fSDDhRecPointsTask+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image); // 20
+       fSDDhRecPointsTask++;
+       
+       
+       TH2D *h21 = new TH2D("SDDL3_Rec2Raw_2D","L3 RecPoints to Raws 2D",12,0.5,6.5,14,0.5,14.5);  //position number 21
+       h21->GetXaxis()->SetTitle("z[#Module L3 ]");
+       h21->GetYaxis()->SetTitle("#varphi[#Ladder L3]");
+       rv = fAliITSQADataMakerRec->Add2RecPointsList(h21,21 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO  image
+       fSDDhRecPointsTask++;
+       
+       TH2D *h22 = new TH2D("SDDL4_Rec2Raw_2D","L4 RecPoints to Raws 2D",16,0.5,8.5,22,0.5,22.5); //position number 22
+       h22->GetXaxis()->SetTitle("[#Module L4 ]");
+       h22->GetYaxis()->SetTitle("#varphi[#Ladder L4]");
+       rv = fAliITSQADataMakerRec->Add2RecPointsList(h22,22 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);//  expert NO image
+       fSDDhRecPointsTask++;
+
+        hMax = 0.3;    
+       TH1F *R2RL3 = new TH1F("SDDL3_Rec2Raw","L3 RecPoints to Raws ratio",150,0.,hMax);
+       rv = fAliITSQADataMakerRec->Add2RecPointsList(R2RL3,fSDDhRecPointsTask+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image); // 23
+       fSDDhRecPointsTask++;
+       
+       TH1F *R2RL4 = new TH1F("SDDL4_Rec2Raw","L4 RecPoints to Raws ratio",150,0.,hMax);
+       rv = fAliITSQADataMakerRec->Add2RecPointsList(R2RL4,fSDDhRecPointsTask+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image); // 24
+       fSDDhRecPointsTask++;
+
+       TH1F *dedxL3 = new TH1F("SDDL3_dedx","L3 dE/dX",100,0.,1.);
+       rv = fAliITSQADataMakerRec->Add2RecPointsList(dedxL3,fSDDhRecPointsTask+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image); // 25
+       fSDDhRecPointsTask++;
+       
+       TH1F *dedxL4 = new TH1F("SDDL4_dedx","L4 dE/dX",100,0.,1.);
+       rv = fAliITSQADataMakerRec->Add2RecPointsList(dedxL4,fSDDhRecPointsTask+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image); // 26
+       fSDDhRecPointsTask++;
+       
+       fOnlineOffsetRecPoints = fSDDhRecPointsTask;
+       if(fkOnline){
+      TH2F *h19 = new TH2F("SDDGlobalCoordDistribYXFSE","YX Global Coord Distrib FSE",112,-28,28,112,-28,28);//position number 27
+      h19->GetYaxis()->SetTitle("Y[cm]");
+      h19->GetXaxis()->SetTitle("X[cm]");
+      rv = fAliITSQADataMakerRec->Add2RecPointsList(h19,fSDDhRecPointsTask+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
       fSDDhRecPointsTask++;
       
+      TH2F *h20 = new TH2F("SDDGlobalCoordDistribRZFSE","RZ Global Coord Distrib FSE",128,-32,32,56,12,26);//position number 28
+      h20->GetYaxis()->SetTitle("R[cm]");
+      h20->GetXaxis()->SetTitle("Z[cm]");
+      rv = fAliITSQADataMakerRec->Add2RecPointsList(h20,fSDDhRecPointsTask+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()], expert, !image);// expert NO image
+      fSDDhRecPointsTask++;      
     }//online
-
-  //printf("%d SDD Recs histograms booked\n",fSDDhRecPointsTask);
-
-
-  AliDebug(1,Form("%d SDD Recs histograms booked\n",fSDDhRecPointsTask));
-
-
+  
+  AliDebug(AliQAv1::GetQADebugLevel(),Form("%d SDD Recs histograms booked\n",fSDDhRecPointsTask));
+  
+  return rv ; 
 }
 
 //____________________________________________________________________________ 
-void AliITSQASDDDataMakerRec::MakeRecPoints(TTree * clustersTree) {
+Int_t AliITSQASDDDataMakerRec::MakeRecPoints(TTree * clustersTree)
+{
  // Fill QA for RecPoints - SDD -
+  Int_t rv = 0 ;
+  fNEventRP++; 
   Int_t lay, lad, det; 
-  TBranch *branchRecP = clustersTree->GetBranch("ITSRecPoints");
-  if (!branchRecP) {
-    AliError("can't get the branch with the ITS clusters !");
-    return;
+  //AliInfo("get the branch with the ITS clusters !\n");
+  AliITSRecPointContainer* rpcont=AliITSRecPointContainer::Instance();
+  TClonesArray *recpoints=NULL; 
+  if(fkOnline){recpoints = rpcont->FetchClusters(0,clustersTree,fAliITSQADataMakerRec->GetEventNumber());}
+  else{recpoints = rpcont->FetchClusters(0,clustersTree);}
+  if(!rpcont->GetStatusOK() || !rpcont->IsSDDActive()){
+    AliError("can't get SDD clusters !");
+    return rv;
   }
 
-  static TClonesArray statRecpoints("AliITSRecPoint") ;
-  TClonesArray *recpoints = &statRecpoints;
-  branchRecP->SetAddress(&recpoints);
   Int_t npoints = 0;      
   Float_t cluglo[3]={0.,0.,0.}; 
-  if(fkOnline)
-    {
-      for(Int_t i=14;i<16;i++)
-       {
-         fAliITSQADataMakerRec->GetRecPointsData(i+fGenRecPointsOffset)->Reset();
+  if(fkOnline){
+      for(Int_t i=27;i<29;i++){
+         fAliITSQADataMakerRec->GetRecPointsData(i+fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Reset();
        }
     }
-  for(Int_t module=0; module<clustersTree->GetEntries();module++){
-    branchRecP->GetEvent(module);
+  Int_t firMod=AliITSgeomTGeo::GetModuleIndex(3,1,1);
+  Int_t lasMod=AliITSgeomTGeo::GetModuleIndex(5,1,1);
+  for(Int_t module=firMod; module<lasMod;module++){
+    //AliInfo(Form("Module %d\n",module));
+    recpoints = rpcont->UncheckedGetClusters(module);
     npoints += recpoints->GetEntries();
-    AliITSgeomTGeo::GetModuleId(module, lay, lad, det);
-    //printf("modnumb %d, lay %d, lad %d, det %d \n",module, lay, lad, det);
     for(Int_t j=0;j<recpoints->GetEntries();j++){
-      AliITSRecPoint *recp = (AliITSRecPoint*)recpoints->At(j);    
-      fAliITSQADataMakerRec->GetRecPointsData(6 +fGenRecPointsOffset)->Fill(module);//modpatternrp
+      AliITSRecPoint *recp = (AliITSRecPoint*)recpoints->At(j); 
+      Int_t index = recp->GetDetectorIndex();
+      lay=recp->GetLayer();
+               if(lay < 2 || lay > 3) continue;
+               Int_t modnumb=index+AliITSgeomTGeo::GetModuleIndex(lay+1,1,1);
+               AliITSgeomTGeo::GetModuleId(modnumb, lay, lad, det);  
+//             AliInfo(Form("modnumb %d, lay %d, lad %d, det %d \n",module, lay, lad, det));
+      fAliITSQADataMakerRec->GetRecPointsData(6 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(modnumb);//modpatternrp
       recp->GetGlobalXYZ(cluglo);
       Float_t rad=TMath::Sqrt(cluglo[0]*cluglo[0]+cluglo[1]*cluglo[1]); 
       Float_t phi=TMath::ATan2(cluglo[1],cluglo[0]);
-      fAliITSQADataMakerRec->GetRecPointsData(9 +fGenRecPointsOffset)->Fill(recp->GetDetLocalX(),recp->GetDetLocalZ());//local distribution
-      fAliITSQADataMakerRec->GetRecPointsData(2 +fGenRecPointsOffset)->Fill(cluglo[0],cluglo[1]);//global distribution YX
-      fAliITSQADataMakerRec->GetRecPointsData(3 +fGenRecPointsOffset)->Fill(cluglo[2],rad);//global distribution rz
-      if(fkOnline)
-       {
-         fAliITSQADataMakerRec->GetRecPointsData(14 +fGenRecPointsOffset)->Fill(cluglo[0],cluglo[1]);//global distribution YX FSE
-         fAliITSQADataMakerRec->GetRecPointsData(15 +fGenRecPointsOffset)->Fill(cluglo[2],rad);//global distribution rz FSE
-       }
-      if(recp->GetLayer() ==2) {
-       fAliITSQADataMakerRec->GetRecPointsData(0  +fGenRecPointsOffset)->Fill(recp->GetQ()) ;//total charge of layer 3
-       fAliITSQADataMakerRec->GetRecPointsData(7  +fGenRecPointsOffset)->Fill(lad);//lad pattern layer 3
-       fAliITSQADataMakerRec->GetRecPointsData(10 +fGenRecPointsOffset)->Fill(rad);//r distribution layer 3
-       fAliITSQADataMakerRec->GetRecPointsData(12 +fGenRecPointsOffset)->Fill(phi);// phi distribution layer 3
-       fAliITSQADataMakerRec->GetRecPointsData(4  +fGenRecPointsOffset)->Fill(cluglo[2],phi);// phi distribution layer 3
-      }
-      else if(recp->GetLayer() ==3) {
-       fAliITSQADataMakerRec->GetRecPointsData(1  +fGenRecPointsOffset)->Fill(recp->GetQ()) ;//total charge layer 4
-       fAliITSQADataMakerRec->GetRecPointsData(8  +fGenRecPointsOffset)->Fill(lad);//ladpatternlayer4
-       fAliITSQADataMakerRec->GetRecPointsData(11 +fGenRecPointsOffset)->Fill(rad);//r distribution
-       fAliITSQADataMakerRec->GetRecPointsData(13 +fGenRecPointsOffset)->Fill(phi);//phi distribution
-       fAliITSQADataMakerRec->GetRecPointsData(5  +fGenRecPointsOffset)->Fill(cluglo[2],phi);// phi distribution layer 4
+      Float_t drifttime=recp->GetDriftTime();
+               fAliITSQADataMakerRec->GetRecPointsData(12 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(recp->GetDetLocalX(),recp->GetDetLocalZ());//local distribution
+               fAliITSQADataMakerRec->GetRecPointsData(2 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[0],cluglo[1]);//global distribution YX
+               fAliITSQADataMakerRec->GetRecPointsData(3 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[2],rad);//global distribution rz
+               if(fkOnline) {
+                       fAliITSQADataMakerRec->GetRecPointsData(27 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[0],cluglo[1]);//global distribution YX FSE
+                       fAliITSQADataMakerRec->GetRecPointsData(28 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[2],rad);//global distribution rz FSE
+               }
+               Int_t iside=recp->GetDriftSide();
+                lay=recp->GetLayer();
+               if(lay == 2) {
+                       fAliITSQADataMakerRec->GetRecPointsData(0  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(recp->GetQ()) ;//total charge of layer 3
+                       fAliITSQADataMakerRec->GetRecPointsData(7  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(det+0.5*iside-0.5,lad);//mod pattern layer 3
+                       fAliITSQADataMakerRec->GetRecPointsData(13 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(rad);//r distribution layer 3
+                       fAliITSQADataMakerRec->GetRecPointsData(15 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(phi);// phi distribution layer 3
+                       fAliITSQADataMakerRec->GetRecPointsData(4  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[2],phi);// zphi distribution layer
+                       fAliITSQADataMakerRec->GetRecPointsData(17  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(drifttime);// time distribution layer 3
+                       fAliITSQADataMakerRec->GetRecPointsData(25  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(recp->GetdEdX());// charge distribution layer 3
+               } else if(lay == 3) {
+                       fAliITSQADataMakerRec->GetRecPointsData(1  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(recp->GetQ()) ;//total charge layer 4
+                       fAliITSQADataMakerRec->GetRecPointsData(8  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(det+0.5*iside-0.5,lad);//mod pattern layer 4
+                       fAliITSQADataMakerRec->GetRecPointsData(14 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(rad);//r distribution
+                       fAliITSQADataMakerRec->GetRecPointsData(16 +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(phi);//phi distribution
+                       fAliITSQADataMakerRec->GetRecPointsData(5  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(cluglo[2],phi);// zphi distribution layer 4
+                       fAliITSQADataMakerRec->GetRecPointsData(18  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(drifttime);// time distribution layer 4
+                       fAliITSQADataMakerRec->GetRecPointsData(26  +fGenRecPointsOffset[fAliITSQADataMakerRec->GetEventSpecie()])->Fill(recp->GetdEdX());// charge distribution layer 4
       }
     }
   }
-  statRecpoints.Clear();
+  return rv ; 
+}
+
+//_______________________________________________________________
+
+Int_t AliITSQASDDDataMakerRec::GetOffset(AliQAv1::TASKINDEX_t task, Int_t specie)const
+{
+  // Returns offset number according to the specified task
+  Int_t offset=0;
+  if( task == AliQAv1::kRAWS ){offset=fGenRawsOffset[specie];}
+  else if(task == AliQAv1::kDIGITSR ){offset=fGenDigitsOffset[specie];}
+  else if( task == AliQAv1::kRECPOINTS ){offset=fGenRecPointsOffset[specie];}
+  return offset;
+}
+
+//_______________________________________________________________
 
+void AliITSQASDDDataMakerRec::SetOffset(AliQAv1::TASKINDEX_t task, Int_t offset, Int_t specie) {
+  // Set offset number according to the specified task
+  if( task == AliQAv1::kRAWS ) {fGenRawsOffset[specie]=offset;}
+  else if( task == AliQAv1::kDIGITSR ) {fGenDigitsOffset[specie]=offset;}
+  else if( task == AliQAv1::kRECPOINTS ) {fGenRecPointsOffset[specie]=offset;}
 }
 
 //_______________________________________________________________
 
-void AliITSQASDDDataMakerRec::SetHLTModeFromEnvironment() {
-  // test an environment variable to set HLT mode
-
-   Int_t  hltmode= ::atoi(gSystem->Getenv("HLT_MODE"));
-
-   if(hltmode==1) {
-     AliInfo("Online mode: HLT mode A selected from environment for SDD\n");
-     SetHLTMode(kFALSE);
-   }
-   else if(hltmode==2){
-     AliInfo("Online mode: HLT mode C compressed selected from environment for SDD\n");
-     SetHLTMode(kTRUE);
-   }
-   else {
-     AliError(Form("Illegal value for env. var. HLT_MODE: %d . Nothing done",hltmode));
-   }
+Int_t AliITSQASDDDataMakerRec::GetTaskHisto(AliQAv1::TASKINDEX_t task)
+{
+  //return the number of histo booked for a given Task
+  Int_t histotot=0;
+  if( task == AliQAv1::kRAWS ){ histotot=fSDDhRawsTask ;}
+  else if(task == AliQAv1::kDIGITSR) { histotot=fSDDhDigitsTask;}
+  else if( task == AliQAv1::kRECPOINTS ){ histotot=fSDDhRecPointsTask;}
+  else {AliInfo("No task has been selected. TaskHisto set to zero.\n");}
+  return histotot;
 }
 
 
 //_______________________________________________________________
 
-Int_t AliITSQASDDDataMakerRec::GetOffset(AliQA::TASKINDEX_t task) {
-  // Returns offset number according to the specified task 
-  Int_t offset=0;
-  if( task == AliQA::kRAWS ) {
-    offset=fGenRawsOffset;  
-  }
-  else if( task == AliQA::kRECPOINTS ) {
-    offset=fGenRecPointsOffset;   
-  }
-  else {
-    AliInfo("No task has been selected. Offset set to zero.\n");
-  }
 
-  return offset;
+void AliITSQASDDDataMakerRec::CreateTheMap()
+{
+  //Create the SDD DDL Module Map
+  AliCDBEntry *ddlMapSDD = AliCDBManager::Instance()->Get("ITS/Calib/DDLMapSDD");
+  Bool_t cacheStatus = AliCDBManager::Instance()->GetCacheFlag();
+  if(!ddlMapSDD){
+      AliError("Calibration object retrieval failed! SDD will not be processed");
+      fDDLModuleMap = NULL;
+      //return rv;
+    }
+  fDDLModuleMap = (AliITSDDLModuleMapSDD*)ddlMapSDD->GetObject();
+  if(!cacheStatus)ddlMapSDD->SetObject(NULL);
+  ddlMapSDD->SetOwner(kTRUE);
+  if(!cacheStatus){ delete ddlMapSDD;}
+  AliInfo("DDL Map Created\n ");
 }
 
 //_______________________________________________________________
 
-Int_t AliITSQASDDDataMakerRec::GetTaskHisto(AliQA::TASKINDEX_t task) {
-  // Returns the number of histograms associated to the specified task
-  Int_t histotot=0;
 
-  if( task == AliQA::kRAWS ) {
-    histotot=fSDDhRawsTask;  
-  }
-  else if( task == AliQA::kRECPOINTS ){
-    histotot=fSDDhRecPointsTask;   
-  }
-  else { 
-    AliInfo("No task has been selected. TaskHisto set to zero.\n");
+void AliITSQASDDDataMakerRec::CreateTheCalibration()
+{
+  //Take from the OCDB the calibration information for the SDD 
+    AliCDBEntry *calibSDD = AliCDBManager::Instance()->Get("ITS/Calib/CalibSDD");
+    Bool_t cacheStatus = AliCDBManager::Instance()->GetCacheFlag();
+    if(!calibSDD)
+      {
+       AliError("Calibration object retrieval failed! SDD will not be processed");
+       fCalibration = NULL;;
+      }
+    fCalibration = (TObjArray *)calibSDD->GetObject();
+    
+    if(!cacheStatus)calibSDD->SetObject(NULL);
+    calibSDD->SetOwner(kTRUE);
+    if(!cacheStatus){delete calibSDD;}
+
+    AliITSCalibrationSDD * cal=NULL;
+    for(Int_t imod=0;imod<fgknSDDmodules;imod++)
+      {
+       //cal=NULL;
+       Int_t fillmodhisto1=fgkTotalNumberSDDAnodes;
+       Int_t fillmodhisto2side0=fgkNumberOfSDDAnodesperSide;
+       Int_t fillmodhisto2side1=fgkNumberOfSDDAnodesperSide;
+       Int_t fillmodhisto3side0=fgkNumberOfSDDAnodesperSide;
+       Int_t fillmodhisto3side1=fgkNumberOfSDDAnodesperSide;
+       
+       Int_t badmodhisto1=0;
+       Int_t badmodhisto2side0=0;
+       Int_t badmodhisto2side1=0;
+       Int_t badmodhisto3side0=0;
+       Int_t badmodhisto3side1=0;
+       //printf("imod %i\t ==== \t",imod);
+       Int_t module=imod + 240;
+       //printf("module %i\t ==== \t",module);
+       cal=(AliITSCalibrationSDD*)fCalibration->At(imod);
+       Int_t lay,lad,det;
+       AliITSgeomTGeo::GetModuleId(module,lay,lad,det);
+       Int_t index=1+(det-1)*2;
+       if(cal==0){continue;}
+       if (cal->IsBad()){continue;}//bad module check
+       else{
+         for(Int_t i=0;i<8;i++) //check on bad chips in good modules
+           {
+             if(lay==3){
+               if(cal->IsChipBad(i)){
+                 if(i<4){badmodhisto2side0+=64;}
+                 if(i>=4){badmodhisto2side1+=64;}
+               }//end if chip
+             }//end if  layer3
+             else if(lay==4){
+               if(cal->IsChipBad(i)){
+                 if(i<4){badmodhisto3side0+=64;}
+                 if(i>=4){badmodhisto3side1+=64;}               
+               }//end if  chip
+             }//ens if layer4
+           }//end for  chip
+         for(Int_t iAn=0; iAn<512; iAn++){//anodes loop 
+           Int_t ic=cal->GetChip(iAn);//chip with this anode number
+           if(!cal->IsChipBad(ic) && !cal->IsBad() && cal->IsBadChannel(iAn)){// good chip   good module   bad channel 
+             if(lay==3){
+                 if(ic<4) badmodhisto2side0++;
+                 else if(ic>=4)badmodhisto2side1++;
+               }//end if layer 3
+             else if(lay==4){
+                 if(ic<4) badmodhisto3side0++;
+                 else if(ic>=4)badmodhisto3side1++;
+               }//end if layer 4
+           }//end if chip module channel
+         }//end for anodes
+         if(lay==3){
+           badmodhisto1=badmodhisto2side0+badmodhisto2side1;
+           fillmodhisto1-=badmodhisto1;
+           fillmodhisto2side0-=badmodhisto2side0;
+           fillmodhisto2side1-=badmodhisto2side1;
+           ((TH1D*)(fHistoCalibration->At(0)))->SetBinContent(imod+1,fillmodhisto1);
+           ((TH2D*)(fHistoCalibration->At(1)))->SetBinContent(index,lad,fillmodhisto2side0);
+           ((TH2D*)(fHistoCalibration->At(1)))->SetBinContent(index+1,lad,fillmodhisto2side1);
+         }//end layer 3
+         else if(lay==4){
+           badmodhisto1=badmodhisto3side0+badmodhisto3side1;
+           fillmodhisto1-=badmodhisto1;
+           fillmodhisto3side0-=badmodhisto3side0;
+           fillmodhisto3side1-=badmodhisto3side1;
+           ((TH1D*)(fHistoCalibration->At(0)))->SetBinContent(imod+1,fillmodhisto1);
+           ((TH2D*)(fHistoCalibration->At(2)))->SetBinContent(index,lad,fillmodhisto3side0);
+           ((TH2D*)(fHistoCalibration->At(2)))->SetBinContent(index+1,lad,fillmodhisto2side1);
+         }//end layer 4
+       }//end else bad module
+      }//end module for
+
+}
+
+//____________________________________________________________________
+
+void AliITSQASDDDataMakerRec::InitCalibrationArray()
+{
+  //create the histograms with the calibration informations. The histograms are stored in a TObjArray
+    TH1D *pattern1  = new TH1D("CALSDDModPattern","Calibration HW Modules pattern",fgknSDDmodules,239.5,499.5);
+    pattern1->SetDirectory(0) ;
+    TH2D *patternl3 = new TH2D("CALSDDphizL3","Calibration SDD #varphiz Layer3 ",12,0.5,6.5,14,0.5,14.5);
+    patternl3->SetDirectory(0) ;
+    TH2D *patternl4 = new TH2D("CALSDDphizL4"," Calibration SDD #varphiz Layer4 ",16,0.5,8.5,22,0.5,22.5);
+    patternl4->SetDirectory(0) ;
+
+    if(!fHistoCalibration)fHistoCalibration = new TObjArray(3);
+    fHistoCalibration->AddAtAndExpand(pattern1,0);
+    fHistoCalibration->AddAtAndExpand(patternl3,1);
+    fHistoCalibration->AddAtAndExpand(patternl4,2);
+    fHistoCalibration->SetOwner(kTRUE); 
+    //    printf("Calibration Histograms created!\n");
+}
+
+//____________________________________________________________________
+
+void AliITSQASDDDataMakerRec::ResetDetector(AliQAv1::TASKINDEX_t task)
+{
+  //reset the SDD calibration histograms
+  AliInfo(Form("Reset detector in SDD called for task index %i", task));
+  if(task== AliQAv1::kRAWS ){
+  fDDLModuleMap=NULL;
   }
+  fCalibration=NULL;
 
-  return histotot;
+  ((TH1D*)(fHistoCalibration->At(0)))->Reset();
+  ((TH2D*)(fHistoCalibration->At(1)))->Reset();
+  ((TH2D*)(fHistoCalibration->At(2)))->Reset();
+  //delete fHistoCalibration;
+  //fHistoCalibration=NULL;
+  
 }
+