]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCCalibRaw.cxx
Correct the way primary photons are in EMCAL acceptance, change some histograms title...
[u/mrichter/AliRoot.git] / TPC / AliTPCCalibRaw.cxx
index 77538c8ba424357117a7fd1aef9b7994956c092d..a124cf2b75b34d656f60fbf4913863ec502d54e9 100644 (file)
@@ -61,13 +61,18 @@ h2f->Draw("col");
 
 
 //Root includes
+#include <TROOT.h>
 #include <TH2C.h>
-
+#include <TH1F.h>
+#include <TMap.h>
+#include <TGraph.h>
+#include <TObjString.h>
+#include <TTimeStamp.h>
+#include <TCanvas.h>
 //AliRoot includes
 #include "AliTPCCalROC.h"
 #include "AliAltroRawStream.h"
 #include "AliLog.h"
-
 //class header
 #include "AliTPCCalibRaw.h"
 
@@ -78,7 +83,7 @@ AliTPCCalibRaw::AliTPCCalibRaw() :
   fPeakDetMinus(1),
   fPeakDetPlus(2),
   fNFailL1Phase(0),
-  fFirstTimeStamp(0),
+  fNFailL1PhaseEvent(0),
   fNSecTime(600), //default 10 minutes
   fNBinsTime(60), //default 60*10 minutes = 10 hours
   fPadProcessed(kFALSE),
@@ -92,20 +97,78 @@ AliTPCCalibRaw::AliTPCCalibRaw() :
   fLastSignal(0),
   fNOkPlus(0),
   fNOkMinus(0),
+  fNanoSec(0),
   fArrCurrentPhaseDist(4),
-  fArrALTROL1Phase(1000),
-  fArrALTROL1PhaseEvent(216),
-  fArrALTROL1PhaseFailEvent(216),
-  fHnDrift(0x0)
+  fArrCurrentPhase(kNRCU),
+  fArrFailEventNumber(100),
+  fArrALTROL1Phase(100000),
+  fArrALTROL1PhaseEvent(kNRCU),
+  fArrALTROL1PhaseFailEvent(kNRCU),
+  fHnDrift(0x0),
+  fVOccupancyEvent(100000),
+  fVSignalSumEvent(100000),
+  fVOccupancySenEvent(100000),
+  fVSignalSumSenEvent(100000),
+  fVNfiredPadsSenEvent(100000),
+  fVTimeStampEvent(100000)
+{
+  //
+  // Default ctor
+  //
+  SetNameTitle("AliTPCCalibRaw","AliTPCCalibRaw");
+  CreateDVhist();
+  for (Int_t ircu=0;ircu<kNRCU;++ircu) fArrCurrentPhase.GetMatrixArray()[ircu]=-1;
+  fFirstTimeBin=850;
+  fLastTimeBin=1020;
+}
+//_____________________________________________________________________
+AliTPCCalibRaw::AliTPCCalibRaw(const TMap *config) :
+AliTPCCalibRawBase(),
+fPeakDetMinus(1),
+fPeakDetPlus(2),
+fNFailL1Phase(0),
+fNFailL1PhaseEvent(0),
+fNSecTime(600), //default 10 minutes
+fNBinsTime(60), //default 60*10 minutes = 10 hours
+fPadProcessed(kFALSE),
+fCurrentChannel(-1),
+fCurrentSector(-1),
+fLastSector(-2),
+fCurrentRow(-1),
+fCurrentPad(-1),
+fLastTimeBinProc(0),
+fPeakTimeBin(0),
+fLastSignal(0),
+fNOkPlus(0),
+fNOkMinus(0),
+fNanoSec(0),
+fArrCurrentPhaseDist(4),
+fArrCurrentPhase(kNRCU),
+fArrFailEventNumber(100),
+fArrALTROL1Phase(100000),
+fArrALTROL1PhaseEvent(kNRCU),
+fArrALTROL1PhaseFailEvent(kNRCU),
+fHnDrift(0x0),
+fVOccupancyEvent(100000),
+fVSignalSumEvent(100000),
+fVOccupancySenEvent(100000),
+fVSignalSumSenEvent(100000),
+fVNfiredPadsSenEvent(100000),
+fVTimeStampEvent(100000)
 {
   //
   // Default ctor
   //
   SetNameTitle("AliTPCCalibRaw","AliTPCCalibRaw");
   CreateDVhist();
+  for (Int_t ircu=0;ircu<kNRCU;++ircu) fArrCurrentPhase.GetMatrixArray()[ircu]=-1;
   fFirstTimeBin=850;
-  fLastTimeBin=1000;
+  fLastTimeBin=1020;
+  if (config->GetValue("FirstTimeBin")) fFirstTimeBin = ((TObjString*)config->GetValue("FirstTimeBin"))->GetString().Atoi();
+  if (config->GetValue("LastTimeBin")) fLastTimeBin = ((TObjString*)config->GetValue("LastTimeBin"))->GetString().Atoi();
+  if (config->GetValue("DebugLevel")) fDebugLevel = ((TObjString*)config->GetValue("DebugLevel"))->GetString().Atoi();
 }
+
 //_____________________________________________________________________
 AliTPCCalibRaw::~AliTPCCalibRaw()
 {
@@ -136,13 +199,39 @@ Int_t AliTPCCalibRaw::Update(const Int_t isector, const Int_t iRow, const Int_t
   if (iRow<0) return 0;
   if (iPad<0) return 0;
   if (iTimeBin<0) return 0;
-  if (!fFirstTimeStamp) fFirstTimeStamp=GetTimeStamp();
+  //
+  Int_t iChannel  = fROC->GetRowIndexes(isector)[iRow]+iPad; //  global pad position in sector
+  //occupancy
+  fVOccupancyEvent.GetMatrixArray()[GetNevents()]++;
+  fVSignalSumEvent.GetMatrixArray()[GetNevents()]+=signal;
+  //occupancy in sensitive regions
+  Int_t npads=(Int_t)fROC->GetNPads(isector,iRow);
+  Int_t cpad=iPad-npads/2;
+  if (isector<(Int_t)fROC->GetNInnerSector()){
+    //IROC case (spot)
+    if ( iRow>19 && iRow<46 ){
+      if ( TMath::Abs(cpad)<7 ){
+        fVOccupancySenEvent.GetMatrixArray()[GetNevents()]++;
+        fVSignalSumSenEvent.GetMatrixArray()[GetNevents()]+=signal;
+        if (iChannel!=fCurrentChannel) fVNfiredPadsSenEvent.GetMatrixArray()[GetNevents()]++;
+      }
+    }
+  } else if ( iRow>75 ){
+    //OROC case (outer corners and last three rows are sensitive)
+    Int_t padEdge=(Int_t)TMath::Min(iPad,npads-iPad);
+    Int_t nrows=(Int_t)fROC->GetNRows(isector);
+    if ((nrows-iRow-1)<3 || padEdge<((((Int_t)iRow-76)/4+1))*2){
+      fVOccupancySenEvent.GetMatrixArray()[GetNevents()]++;
+      fVSignalSumSenEvent.GetMatrixArray()[GetNevents()]+=signal;
+      if (iChannel!=fCurrentChannel) fVNfiredPadsSenEvent.GetMatrixArray()[GetNevents()]++;
+    }
+  }
+  //
   if ( (iTimeBin>fLastTimeBin) || (iTimeBin<fFirstTimeBin)   ) return 0;
   //don't process edge pads
   if (IsEdgePad(isector,iRow,iPad)) return 0;
 //   Double_t x[kHnBinsDV]={1,isector,0};
 //   fHnDrift->Fill(x);
-  Int_t iChannel  = fROC->GetRowIndexes(isector)[iRow]+iPad; //  global pad position in sector
   if (fCurrentChannel==iChannel){
     if (fPadProcessed) return 0;
   } else {
@@ -181,18 +270,18 @@ void AliTPCCalibRaw::UpdateDDL(){
   //
   // fill ALTRO L1 information
   //
-//   if (fCurrDDLNum!=fPrevDDLNum){
-    TVectorF *arr=MakeArrL1PhaseRCU(fCurrDDLNum,kTRUE);
-    if (arr->GetNrows()<=fNevents) arr->ResizeTo(arr->GetNrows()+1000);
-    // phase as a position of a quarter time bin
-    Int_t phase=(Int_t)(GetL1PhaseTB()*4.);
-//     printf("DDL: %03d, phase: %d (%f))\n",fCurrDDLNum,phase,GetL1PhaseTB());
-    //Fill pahse information of current rcu and event
-    (arr->GetMatrixArray())[fNevents]=phase;
-    //increase phase counter
-    ++((fArrCurrentPhaseDist.GetMatrixArray())[phase]);
-//     printf("RCUId: %03d (%03d), DDL: %03d, sector: %02d\n",fCurrRCUId, fPrevRCUId, fCurrDDLNum, isector);
-//   }
+  
+  //set nanoseconds
+  if (!fNanoSec) {
+    TTimeStamp s;
+    fNanoSec=s.GetNanoSec();
+  }
+  // current phase
+  Int_t phase=(Int_t)(GetL1PhaseTB()*4.);
+  //Fill pahse information of current rcu and event
+  fArrCurrentPhase.GetMatrixArray()[fCurrDDLNum]=phase;
+  //increase phase counter
+  ++((fArrCurrentPhaseDist.GetMatrixArray())[phase]);
   
 }
 //_____________________________________________________________________
@@ -203,6 +292,8 @@ void AliTPCCalibRaw::ResetEvent()
   //
 
   fCurrentChannel=-1;
+  fCurrentRow=-1;
+  fCurrentPad=-1;
   fArrCurrentPhaseDist.Zero();
 }
 //_____________________________________________________________________
@@ -224,20 +315,41 @@ void AliTPCCalibRaw::EndEvent()
     }
   }
   // store phase of current event
-  if (fArrALTROL1Phase.GetNrows()<=GetNevents())
-    fArrALTROL1Phase.ResizeTo(GetNevents()+1000);
+  if (fArrALTROL1Phase.GetNrows()-1<=GetNevents())
+    fArrALTROL1Phase.ResizeTo(GetNevents()+10000);
   (fArrALTROL1Phase.GetMatrixArray())[GetNevents()]=phaseMaxEntries;
   
   //loop over RCUs and test failures
-  for (Int_t ircu=0;ircu<216;++ircu){
-    const TVectorF *arr=GetALTROL1PhaseEventsRCU(ircu);//MakeArrL1PhaseRCU(ircu);
-    if (!arr) continue;
-    TVectorF *arrF=MakeArrL1PhaseFailRCU(ircu,kTRUE);
-    if (arrF->GetNrows()<=fNevents) arrF->ResizeTo(arrF->GetNrows()+1000);
-    if ((arr->GetMatrixArray())[fNevents]!=phaseMaxEntries){
-      (arrF->GetMatrixArray())[fNevents]=1;
+  UInt_t fail=0;
+  for (Int_t ircu=0;ircu<kNRCU;++ircu){
+    Int_t phase=(Int_t)fArrCurrentPhase[ircu];
+    if (phase<0) continue;
+    if (phase!=phaseMaxEntries){
+      TVectorF *arr=MakeArrL1PhaseRCU(fCurrDDLNum,kTRUE);
+      if (arr->GetNrows()-1<=(Int_t)fNFailL1PhaseEvent) arr->ResizeTo(arr->GetNrows()+100);
+      (arr->GetMatrixArray())[fNFailL1PhaseEvent]=phase;
       ++fNFailL1Phase;
+      fail=1;
       }
+    //reset current phase information
+    fArrCurrentPhase[ircu]=-1;
+  }
+  if (fail){
+    if (fArrFailEventNumber.GetNrows()-1<=(Int_t)fNFailL1PhaseEvent) fArrFailEventNumber.ResizeTo(fArrFailEventNumber.GetNrows()+100);
+    fArrFailEventNumber.GetMatrixArray()[fNFailL1PhaseEvent]=GetNevents();
+  }
+  fNFailL1PhaseEvent+=fail;
+  //time stamps
+  fVTimeStampEvent.GetMatrixArray()[GetNevents()]=GetTimeStamp()-fFirstTimeStamp+fNanoSec*1e-9;
+  fNanoSec=0;
+  //occupance related
+  if (fVOccupancyEvent.GetNrows()-1<=GetNevents()){
+    fVOccupancyEvent.ResizeTo(GetNevents()+10000);
+    fVSignalSumEvent.ResizeTo(GetNevents()+10000);
+    fVOccupancySenEvent.ResizeTo(GetNevents()+10000);
+    fVSignalSumSenEvent.ResizeTo(GetNevents()+10000);
+    fVTimeStampEvent.ResizeTo(GetNevents()+10000);
+    fVNfiredPadsSenEvent.ResizeTo(GetNevents()+10000);
   }
   IncrementNevents();
 }
@@ -248,29 +360,75 @@ TH2C *AliTPCCalibRaw::MakeHistL1RCUEvents(Int_t type)
   // from the mean L1 phase of the event
   //
   //type: 0=Failures, 1=Phases
-  TH2C *h2 = new TH2C("hL1FailRCUEvents","L1 Failures;RCU;Event",216,0,216,GetNevents(),0,GetNevents());
+
+  //number of relavant events, depending on version
+  Int_t nevents=GetNevents();
+  //check version
+  Bool_t newVersion=kFALSE;
+  for (Int_t ircu=0; ircu<kNRCU; ++ircu){
+    const TVectorF *v=GetALTROL1PhaseEventsRCU(ircu);
+    if (!v) continue;
+    if ((UInt_t)(v->GetNrows())==fNFailL1PhaseEvent){
+      newVersion=kTRUE;
+      nevents=fNFailL1PhaseEvent;
+    }
+    break;
+  }
+  TH2C *h2 = new TH2C("hL1FailRCUEvents","L1 Failures;RCU;Event",kNRCU,0,kNRCU,nevents,0,nevents);
   Int_t add=0;
-  for (Int_t ircu=0;ircu<216;++ircu) {
-    const TVectorF *v=0;
+  for (Int_t ircu=0;ircu<kNRCU;++ircu) {
+    const TVectorF *v=GetALTROL1PhaseEventsRCU(ircu);
     if (type==0){
-      v=GetALTROL1PhaseFailEventsRCU(ircu);
       add=1;
       h2->SetMinimum(0);
       h2->SetMaximum(2);
     } else if (type==1) {
-      v=GetALTROL1PhaseEventsRCU(ircu);
       add=0;
       h2->SetMinimum(0);
       h2->SetMaximum(4);
     }
     if (!v) continue;
-    for (Int_t iev=0;iev<GetNevents();++iev) {
-      h2->SetBinContent(ircu+1,iev+1,(*v)(iev)+add);
+    for (Int_t iev=0;iev<nevents;++iev) {
+      Float_t val=(*v)(iev);
+      Float_t phase=fArrALTROL1Phase.GetMatrixArray()[iev];
+      if (newVersion) {
+        Int_t event=(Int_t)fArrFailEventNumber.GetMatrixArray()[iev];
+        phase=fArrALTROL1Phase.GetMatrixArray()[event];
+      }
+      if (type==0) val=(val!=phase);
+      h2->SetBinContent(ircu+1,iev+1,val+add);
     }
   }
   return h2;
 }
 //_____________________________________________________________________
+TH1F *AliTPCCalibRaw::MakeHistL1PhaseDist()
+{
+  //
+  // L1 phase distribution. Should be flat in ideal case
+  //
+  TH1F *h=new TH1F("L1phaseDist","Normalized L1 phase distribution;phase;fraction of events",4,0,4);
+  h->Sumw2();
+  for (Int_t iev=0;iev<GetNevents();++iev) h->Fill(fArrALTROL1Phase.GetMatrixArray()[iev]);
+  if (GetNevents()>0) h->Scale(1./GetNevents());
+  h->SetMinimum(0);
+  h->SetMaximum(1);
+  return h;
+}
+//_____________________________________________________________________
+TVectorF *AliTPCCalibRaw::MakeVectL1PhaseDist()
+{
+  //
+  // L1 phase distribution. Should be flat in ideal case
+  //
+  TVectorF *v=new TVectorF(4);
+  for (Int_t iev=0;iev<GetNevents();++iev) {
+    Int_t phase=(Int_t)fArrALTROL1Phase.GetMatrixArray()[iev];
+    ((v->GetMatrixArray())[phase])+=1./GetNevents();
+  }
+  return v;
+}
+//_____________________________________________________________________
 TH2C *AliTPCCalibRaw::MakeHistL1RCUEventsIROC(Int_t type)
 {
   //
@@ -297,7 +455,7 @@ TH2C *AliTPCCalibRaw::MakeHistL1RCUEventsOROC(Int_t type)
   // from the mean L1 phase of the event
   //
   TH2C *h2 = new TH2C("hL1FailRCUEventsOROC","L1 Failures OROCs;RCU;Event",144,0,36,GetNevents(),0,GetNevents());
-  for (Int_t ircu=72;ircu<216;++ircu) {
+  for (Int_t ircu=72;ircu<kNRCU;++ircu) {
     const TVectorF *v=0;
     if (type==0)      v=GetALTROL1PhaseFailEventsRCU(ircu);
     else if (type==1) v=GetALTROL1PhaseEventsRCU(ircu);
@@ -317,9 +475,9 @@ void AliTPCCalibRaw::CreateDVhist()
   if (fHnDrift) return;
   //HnSparse bins
   //time bin, roc, time
-  Int_t    bins[kHnBinsDV] = {1000, 72, fNBinsTime};
-  Double_t xmin[kHnBinsDV] = {0,0,0};
-  Double_t xmax[kHnBinsDV] = {1000,72,fNBinsTime};
+  Int_t    bins[kHnBinsDV] = {fLastTimeBin-fFirstTimeBin, 72, fNBinsTime};
+  Double_t xmin[kHnBinsDV] = {fFirstTimeBin,0,0};
+  Double_t xmax[kHnBinsDV] = {fLastTimeBin,72,fNBinsTime};
   fHnDrift=new THnSparseI("fHnDrift",Form("Drift velocity using last time bin;time bin[#times 100ns];ROC;Time bin [#times %us]",fNSecTime),kHnBinsDV, bins, xmin, xmax);
     
 }
@@ -332,15 +490,202 @@ void AliTPCCalibRaw::Analyse()
 
   //resize arrays
   fArrALTROL1Phase.ResizeTo(GetNevents());
-  for (Int_t ircu=0;ircu<216;++ircu){
+  for (Int_t ircu=0;ircu<kNRCU;++ircu){
     TVectorF *arr=MakeArrL1PhaseRCU(ircu);//MakeArrL1PhaseRCU(ircu);
     if (!arr) continue;
-    TVectorF *arrF=MakeArrL1PhaseFailRCU(ircu);
-    arr->ResizeTo(GetNevents());
-    arrF->ResizeTo(GetNevents());
+    arr->ResizeTo(fNFailL1PhaseEvent);
+    fArrFailEventNumber.ResizeTo(fNFailL1PhaseEvent);
+//    TVectorF *arrF=MakeArrL1PhaseFailRCU(ircu);
+//     arrF->ResizeTo(1);
+  }
+  //resize occupancy arrays only save event occupancy in sensitive regions by default
+  //save the rest in debub mode
+  fVOccupancySenEvent.ResizeTo(GetNevents());
+  if (fDebugLevel>0){
+    fVOccupancyEvent.ResizeTo(GetNevents());
+    fVSignalSumEvent.ResizeTo(GetNevents());
+    fVSignalSumSenEvent.ResizeTo(GetNevents());
+    fVNfiredPadsSenEvent.ResizeTo(GetNevents());
+    fVTimeStampEvent.ResizeTo(GetNevents());
+  } else {
+    fVOccupancyEvent.ResizeTo(0);
+    fVSignalSumEvent.ResizeTo(0);
+    fVSignalSumSenEvent.ResizeTo(0);
+    fVNfiredPadsSenEvent.ResizeTo(0);
+    fVTimeStampEvent.ResizeTo(0);
   }
+  //Analyse drift velocity TODO
+  
+}
+//_____________________________________________________________________
+TGraph* AliTPCCalibRaw::MakeGraphOccupancy(const Int_t type, const Int_t xType)
+{
+  //
+  // create occupancy graph (of samples abouve threshold)
+  // type=0:   number of samples
+  // type=1:   mean data volume (ADC counts/sample)
+  // type=2:   data volume (ADC counts)
+  // type=3:   samples per ADC count
+  // type=4:   sample occupancy
+  //
+  // type=5: number of sample sensitive / number of samples
+  //
+  // same in sensitive regions:
+  // type=10:  number of samples
+  // type=11:  mean data volume (ADC counts/sample)
+  // type=12:  data volume (ADC counts)
+  // type=13:  samples per ADC count
+  // type=14:  sample occupancy
+  //
+  // type=16: number of samples sensitive / number of pads sensitive
+  // type=17: pad occupancy in sensitive regions
+  // xType=0:  vs. time stamp
+  // xType=1:  vs. event counter
+  //
+
+  TString title("Event occupancy");
+  TString xTitle("Time");
+  TString yTitle("number of samples");
+  TGraph *gr=new TGraph(GetNevents());
+  if (fVSignalSumEvent.GetNrows()==0&&!(type==10||type==14)) return 0;
+  TVectorF *vOcc=&fVOccupancyEvent;
+  TVectorF *vSum=&fVSignalSumEvent;
+  TVectorF *vPads=&fVNfiredPadsSenEvent;
+  Double_t norm=557568.;
+  if (type!=14&&fVOccupancyEvent.GetNrows()==0){
+    AliWarning("In non debug mode only occupancy in sensitive regions vs. event awailable!!!");
+    return 0;
+  }
+  if (type>=10){
+    vOcc=&fVOccupancySenEvent;
+    vSum=&fVSignalSumSenEvent;
+    vPads=&fVNfiredPadsSenEvent;
+    norm=33012.;
+  }
+  for (Int_t i=0;i<GetNevents(); ++i){
+    Double_t nAboveThreshold=vOcc->GetMatrixArray()[i];
+    
+    Double_t nSumADC        =1;
+    Double_t timestamp      =1;
+    Double_t nPads          =1;
+
+    if (fVOccupancyEvent.GetNrows()>0){
+      nSumADC        =vSum->GetMatrixArray()[i];
+      timestamp      =fVTimeStampEvent.GetMatrixArray()[i]+fFirstTimeStamp;
+      nPads          =vPads->GetMatrixArray()[i];
+    }
+    Double_t x=timestamp;
+    Double_t y=0;
+    //
+    if (xType==1)     x=i;
+    //
+    if (type%10==0)            y=nAboveThreshold;
+    if (type%10==1&&nAboveThreshold>0)      y=nSumADC/nAboveThreshold;
+    if (type%10==2)            y=nSumADC;
+    if (type%10==3&&nSumADC>0) y=nAboveThreshold/nSumADC;
+    if (type%10==4)            y=nAboveThreshold/(norm*(fLastTimeBin-fFirstTimeBin));
+    if (type==5)               y=fVOccupancySenEvent.GetMatrixArray()[i]/fVOccupancyEvent.GetMatrixArray()[i];
+    if (type==16&&nPads>0)     y=nAboveThreshold/nPads;
+    if (type==17)              y=nPads/norm;
+    //
+    gr->SetPoint(i,x,y);
+  }
+  if (xType==1) xTitle="Event";
+  if (type%10==1)      yTitle="Mean ADC counts/sample";
+  else if (type%10==2) yTitle="Data volume [ADC counts]";
+  else if (type%10==3) yTitle="samples per ADC count";
+  else if (type%10==4) yTitle="sample occupancy";
+  if (type==5)         yTitle="N samples (sensitive) / N samples";
+  if (type%10==6)      yTitle="N samples / N pads";
+  if (type==17)        yTitle="Pad Occupancy";
+  if (type>=10)        yTitle+=" (sensitive)";
+  title=yTitle+":"+xTitle;
+  title+=";"+xTitle+";"+yTitle;
+  gr->SetTitle(title.Data());
+  gr->SetEditable(kFALSE);
+  return gr;
+}
+//_____________________________________________________________________
+// TGraph* AliTPCCalibRaw::MakeGraphNoiseEvents()
+// {
+  //
+  // Not implemented for the moment
+  //
+//   return 0;  
+// }
+//_____________________________________________________________________
+TCanvas* AliTPCCalibRaw::MakeCanvasOccupancy(const Int_t xType, Bool_t sen)
+{
+  //
+  // Create a canvas with occupancy information of all 'type's (see MakeGraphOccupancy)
+  // xType=0: vs. timestamp
+  // xType=1: vs. event number
+  //
+  // sen=kTRUE: for sensitive regions
+  //
 
-  //Analyse drift velocity
+  TString name("RawOccupancy_");
+  TString title("Raw Occupancy vs. ");
+  if (xType==0){
+    name+="Time";
+    title+="time";
+  } else if (xType==1){
+    name+="Event";
+    title+="event";
+  }
+  if (sen){
+    name+="Sen";
+    title+=" (sensitive)";
+  }
+  TCanvas *c=(TCanvas*)gROOT->GetListOfCanvases()->FindObject(name.Data());
+  if (!c) c=new TCanvas(name.Data(),title.Data());
+  c->Clear();
+  c->Divide(2,2);
+  for (Int_t i=0;i<4;++i){
+    c->cd(i+1);
+    TGraph *gr=MakeGraphOccupancy(i+10*(Int_t)sen,xType);
+    gr->Draw("alp");
+  }
+  return c;
+}
+
+//_____________________________________________________________________
+void AliTPCCalibRaw::Merge(AliTPCCalibRaw * const sig)
+{
+  //
+  // Merge sig with this instance
+  //
+
+  if (!sig) return;
+  MergeBase(sig);
+  //Add last time bin distribution histogram
+  fHnDrift->Add(sig->fHnDrift);
+
+  //Add occupancy data
+  
+}
+
+//_____________________________________________________________________
+Long64_t AliTPCCalibRaw::Merge(TCollection * const list)
+{
+  //
+  // Merge all objects of this type in list
+  //
+  
+  Long64_t nmerged=1;
+  
+  TIter next(list);
+  AliTPCCalibRaw *ce=0;
+  TObject *o=0;
+  
+  while ( (o=next()) ){
+    ce=dynamic_cast<AliTPCCalibRaw*>(o);
+    if (ce){
+      Merge(ce);
+      ++nmerged;
+    }
+  }
   
+  return nmerged;
 }