]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFT0maker.cxx
Getter for number of MPI
[u/mrichter/AliRoot.git] / TOF / AliTOFT0maker.cxx
index 5dc950667004defff4c4a827f9de023e37caf734..88d542f768e2e8c38344fe12de8917505bd5a143 100644 (file)
@@ -46,6 +46,7 @@
 #include "AliTOFT0v1.h"
 #include "AliTOFT0maker.h"
 #include "AliPID.h"
+#include "AliLog.h"
 #include "AliESDpid.h"
 #include "AliESDEvent.h"
 #include "TFile.h"
@@ -53,6 +54,7 @@
 #include "AliTOFcalib.h"
 #include "AliTOFRunParams.h"
 #include "TRandom.h"
+#include "AliTOFHeader.h"
 
 ClassImp(AliTOFT0maker)
            
@@ -64,11 +66,15 @@ AliTOFT0maker::AliTOFT0maker():
   fExternalPIDFlag(kFALSE),
   fTOFcalib(NULL),
   fNoTOFT0(0),
+  fNmomBins(0),
   fTimeResolution(100),
   fT0sigma(1000),
   fHmapChannel(0),
   fKmask(0),
-  fT0width(150.)
+  fT0width(150.),
+  fT0spreadExt(-1.),
+  fT0fillExt(0),
+  fTOFT0algorithm(1)
 {
   // ctr
   fCalculated[0] = 0;
@@ -76,38 +82,18 @@ AliTOFT0maker::AliTOFT0maker():
   fCalculated[2] = 0;
   fCalculated[3] = 0;
 
-  fT0TOF = new AliTOFT0v1();
+  fT0cur[0]=0.;
+  fT0cur[1]=0.;
+
   if(AliPID::ParticleMass(0) == 0) new AliPID();
 
   fPIDesd = new AliESDpid();
 
-  fPtCutMin[0] = 0.3;
-  fPtCutMin[1] = 0.5;
-  fPtCutMin[2] = 0.6;
-  fPtCutMin[3] = 0.7;
-  fPtCutMin[4] = 0.8;
-  fPtCutMin[5] = 0.9;
-  fPtCutMin[6] = 1;
-  fPtCutMin[7] = 1.2;
-  fPtCutMin[8] = 1.5;
-  fPtCutMin[9] = 2;
-
-  fPtCutMax[0] = 0.5;
-  fPtCutMax[1] = 0.6;
-  fPtCutMax[2] = 0.7;
-  fPtCutMax[3] = 0.8;
-  fPtCutMax[4] = 0.9;
-  fPtCutMax[5] = 1;
-  fPtCutMax[6] = 1.2;
-  fPtCutMax[7] = 1.5;
-  fPtCutMax[8] = 2;
-  fPtCutMax[9] = 3;
-
-  /* init arrays */
-  for (Int_t i = 0; i < 10; i++) {
-    fT0pt[i] = 0.;
-    fT0ptSigma[i] = 0.;
-  }
+  fNmomBins = fPIDesd->GetTOFResponse().GetNmomBins();
+  SetTOFResponse();
+
+  fT0TOF = new AliTOFT0v1(fPIDesd);
+
 }
 //____________________________________________________________________________ 
 AliTOFT0maker::AliTOFT0maker(AliESDpid *externalPID, AliTOFcalib *tofCalib):
@@ -117,11 +103,15 @@ AliTOFT0maker::AliTOFT0maker(AliESDpid *externalPID, AliTOFcalib *tofCalib):
     fExternalPIDFlag(kTRUE),
     fTOFcalib(tofCalib),
     fNoTOFT0(0),
+    fNmomBins(0),
     fTimeResolution(100),
     fT0sigma(1000),
     fHmapChannel(0),
     fKmask(0),
-    fT0width(150.)
+    fT0width(150.),
+    fT0spreadExt(-1.),
+    fT0fillExt(0),
+    fTOFT0algorithm(1)
 {
   // ctr
   fCalculated[0] = 0;
@@ -129,7 +119,9 @@ AliTOFT0maker::AliTOFT0maker(AliESDpid *externalPID, AliTOFcalib *tofCalib):
   fCalculated[2] = 0;
   fCalculated[3] = 0;
 
-  fT0TOF = new AliTOFT0v1();
+  fT0cur[0]=0.;
+  fT0cur[1]=0.;
+
   if(AliPID::ParticleMass(0) == 0) new AliPID();
 
   if(!fPIDesd){
@@ -137,76 +129,17 @@ AliTOFT0maker::AliTOFT0maker(AliESDpid *externalPID, AliTOFcalib *tofCalib):
     fExternalPIDFlag = kFALSE;
   }
 
-  fPtCutMin[0] = 0.3;
-  fPtCutMin[1] = 0.5;
-  fPtCutMin[2] = 0.6;
-  fPtCutMin[3] = 0.7;
-  fPtCutMin[4] = 0.8;
-  fPtCutMin[5] = 0.9;
-  fPtCutMin[6] = 1;
-  fPtCutMin[7] = 1.2;
-  fPtCutMin[8] = 1.5;
-  fPtCutMin[9] = 2;
-
-  fPtCutMax[0] = 0.5;
-  fPtCutMax[1] = 0.6;
-  fPtCutMax[2] = 0.7;
-  fPtCutMax[3] = 0.8;
-  fPtCutMax[4] = 0.9;
-  fPtCutMax[5] = 1;
-  fPtCutMax[6] = 1.2;
-  fPtCutMax[7] = 1.5;
-  fPtCutMax[8] = 2;
-  fPtCutMax[9] = 3;
-
-  /* init arrays */
-  for (Int_t i = 0; i < 10; i++) {
-    fT0pt[i] = 0.;
-    fT0ptSigma[i] = 0.;
-  }
-}
-
-/* copy-constructor and operator= suppressed
-
-
-//____________________________________________________________________________ 
-AliTOFT0maker::AliTOFT0maker(const AliTOFT0maker & t) :
-  TObject(t),
-  fT0TOF(t.fT0TOF),
-  fPIDESD(t.fPIDESD),
-  fNoTOFT0(t.fNoTOFT0),
-  fTimeResolution(t.fTimeResolution),
-  fT0sigma(t.fT0sigma),
-  fHmapChannel(t.fHmapChannel),
-  fKmask(t.fKmask)
-  {
-  // copy ctr
-}
-
-//____________________________________________________________________________ 
-AliTOFT0maker& AliTOFT0maker::operator=(const AliTOFT0maker &t)
-{
-  //
-  // assign. operator
-  //
-
-  if (this == &t)
-    return *this;
+  fNmomBins = fPIDesd->GetTOFResponse().GetNmomBins();
+  SetTOFResponse();
 
-  TObject::operator=(t);
-  fTimeResolution = t.fTimeResolution;
-  fT0sigma = t.fT0sigma;
+  fT0TOF = new AliTOFT0v1(fPIDesd);
 
-  return *this;
 }
 
-*/
-
 //____________________________________________________________________________ 
 AliTOFT0maker::~AliTOFT0maker()
 {
   // dtor
-
   delete fT0TOF;
   if (!fExternalPIDFlag) delete fPIDesd;
 }
@@ -215,35 +148,59 @@ Double_t* AliTOFT0maker::ComputeT0TOF(AliESDEvent *esd,Double_t t0time,Double_t
   //
   // Remake TOF PID probabilities
   //
-
-  Double_t t0tof[4];
+  Double_t t0tof[6];
 
   if(fKmask) ApplyMask(esd);
 
+  Double_t t0fill = 0.;
+
+  fPIDesd->GetTOFResponse().ResetT0info();
+
   /* get T0 spread from TOFcalib if available otherwise use default value */
   if (fTOFcalib && esd) {
     AliTOFRunParams *runParams = fTOFcalib->GetRunParams();
     if (runParams && runParams->GetTimestamp(0) != 0) {
       Float_t t0spread = runParams->EvalT0Spread(esd->GetTimeStamp());
-      SetT0FillWidth(t0spread);
+      if(fT0spreadExt > 0) SetT0FillWidth(fT0spreadExt);
+      else{
+       SetT0FillWidth(t0spread);
+       t0fill = fT0fillExt;
+      }
+    }
+    else{
+      if(fT0spreadExt > 0) SetT0FillWidth(fT0spreadExt);
+      t0fill = fT0fillExt;
     }
   }
+  else if(esd){
+      Float_t t0spread = esd->GetSigma2DiamondZ(); // vertex pread ^2
+      if(t0spread > 0) t0spread = TMath::Sqrt(t0spread)/0.0299792458;
+
+      if(fT0spreadExt > 0) SetT0FillWidth(fT0spreadExt);
+      else{
+         SetT0FillWidth(t0spread);
+         t0fill = fT0fillExt;
+      }
+  }
 
-  fT0TOF->Init(esd);
-  AliTOFT0v1* t0maker= fT0TOF;
-  t0maker->SetTimeResolution(fTimeResolution*1e-12);
+  Float_t thrGood = TMath::Max(Float_t(500.),fT0width*3);
 
+
+  fT0TOF->Init(esd);
+  AliTOFT0v1* t0maker = fT0TOF;
+  if (fTOFT0algorithm==2) t0maker->SetOptimization(kTRUE);
   t0maker->DefineT0("all",1.5,3.0);
   t0tof[0] = t0maker->GetResult(0);
   t0tof[1] = t0maker->GetResult(1);
   t0tof[2] = t0maker->GetResult(2);
   t0tof[3] = t0maker->GetResult(3);
+  t0tof[4] = t0maker->GetResult(4);
+  t0tof[5] = t0maker->GetResult(5);
 
   Float_t lT0Current=0.;
   fT0sigma=1000;
 
 //   Int_t nrun = esd->GetRunNumber();
-  Double_t t0fill = 0.;
 
   t0time += t0fill;
 
@@ -260,7 +217,13 @@ Double_t* AliTOFT0maker::ComputeT0TOF(AliESDEvent *esd,Double_t t0time,Double_t
   fCalculated[6]=sigmaFill; // sigma t0 fill
   fCalculated[7] = t0tof[3];  // n TOF tracks used for T0
 
-  if(fCalculated[1] < sigmaFill && TMath::Abs(fCalculated[0] - t0fill) < 500 && fCalculated[1] < fTimeResolution*1.2){
+  if(fCalculated[7] > 30) thrGood = 10000000;
+
+  //statistics
+  fCalculated[8] = t0tof[4]; // real time in s
+  fCalculated[9] = t0tof[5]; // cpu time in s
+
+  if(fCalculated[1] < sigmaFill && TMath::Abs(fCalculated[0] - t0fill) < thrGood && fCalculated[1] < fTimeResolution*1.2){
     fT0sigma=fCalculated[1];
     lT0Current=fCalculated[0];
   }
@@ -291,7 +254,7 @@ Double_t* AliTOFT0maker::ComputeT0TOF(AliESDEvent *esd,Double_t t0time,Double_t
     }
   }
 
-  if(fT0sigma < sigmaFill && TMath::Abs(lT0Current - t0fill) < 500){
+  if(fT0sigma < sigmaFill && TMath::Abs(lT0Current - t0fill) < thrGood){
     fCalculated[1]=fT0sigma;
     fCalculated[0]=lT0Current;
   }
@@ -305,48 +268,75 @@ Double_t* AliTOFT0maker::ComputeT0TOF(AliESDEvent *esd,Double_t t0time,Double_t
   }
 
   // T0 pt bin
-  for(Int_t i=0;i<10;i++){
-   t0maker->DefineT0("all",fPtCutMin[i],fPtCutMax[i]);
-    t0tof[0] = t0maker->GetResult(0);
-    t0tof[1] = t0maker->GetResult(1);
-    t0tof[2] = t0maker->GetResult(2);
-    t0tof[3] = t0maker->GetResult(3);
-    fT0pt[i] =-1000*t0tof[0]; // best t0
-    fT0ptSigma[i] =1000*t0tof[1]; // sigma best t0
-
-    if(fT0ptSigma[i] < sigmaFill  && fT0ptSigma[i] < fTimeResolution * 1.2 && TMath::Abs(fT0pt[i] - t0fill) < 500){
-      // Ok T0
+  Float_t *t0values = new Float_t[fNmomBins];
+  Float_t *t0resolution = new Float_t[fNmomBins];
+  if(fCalculated[7] < 100){
+    for(Int_t i=0;i<fNmomBins;i++){
+      t0maker->DefineT0("all",fPIDesd->GetTOFResponse().GetMinMom(i),fPIDesd->GetTOFResponse().GetMaxMom(i));
+      t0tof[0] = t0maker->GetResult(0);
+      t0tof[1] = t0maker->GetResult(1);
+      t0tof[2] = t0maker->GetResult(2);
+      t0tof[3] = t0maker->GetResult(3);
+
+      Float_t t0bin =-1000*t0tof[0]; // best t0
+      Float_t t0binRes =1000*t0tof[1]; // sigma best t0
+      
+      if(t0binRes < sigmaFill  && t0binRes < fTimeResolution * 1.2 && TMath::Abs(t0bin - t0fill) < thrGood){
+       // Ok T0
+       if(t0sigma < 1000){
+         Double_t w1 = 1./t0sigma/t0sigma;
+         Double_t w2 = 1./t0binRes/t0binRes;
+         
+         Double_t wtot = w1+w2;
+         
+         t0bin = (w1*t0time + w2*t0bin) / wtot;
+         t0binRes = TMath::Sqrt(1./wtot);
+       }
+      }
+      else{
+       t0bin = t0fill;
+       t0binRes = sigmaFill;
+       if(t0sigma < 1000){
+         t0bin = t0time;
+          t0binRes= t0sigma;     
+       }
+      }
+      t0values[i] = t0bin;
+      t0resolution[i] = t0binRes;
     }
-    else{
-      fT0pt[i] = t0fill;
-      fT0ptSigma[i] = sigmaFill;
+  }
+  else{
+    for(Int_t i=0;i<fNmomBins;i++){
+      t0values[i] = lT0Current;
+      t0resolution[i] = fT0sigma;
     }
   }
-  //----
-  SetTOFResponse();
+  for(Int_t i=0;i<fNmomBins;i++){
+    fPIDesd->GetTOFResponse().SetT0bin(i,t0values[i]);
+    fPIDesd->GetTOFResponse().SetT0binRes(i,t0resolution[i]);
+  }
+  
+  delete[] t0values;
+  delete[] t0resolution;
 
   return fCalculated;
 }
 //____________________________________________________________________________ 
 Double_t  *AliTOFT0maker::GetT0p(Float_t p){// [0]=to -- [1] = sigma T0
-  Int_t i=0;
-  while(p > fPtCutMin[i] && i < 10) i++;
-  if(i > 0) i--;
+  Int_t i=fPIDesd->GetTOFResponse().GetMomBin(p);
   
-  fT0cur[0] = fT0pt[i];
-  fT0cur[1] = fT0ptSigma[i];
+  fT0cur[0] = fPIDesd->GetTOFResponse().GetT0bin(i);
+  fT0cur[1] = fPIDesd->GetTOFResponse().GetT0binRes(i);
+
   return fT0cur;
 }
 //____________________________________________________________________________ 
 void AliTOFT0maker::SetTOFResponse(){
-    fPIDesd->GetTOFResponse().SetTimeResolution(TMath::Sqrt(fT0sigma*fT0sigma + fTimeResolution*fTimeResolution));
+  fPIDesd->GetTOFResponse().SetTimeResolution(fTimeResolution);
 }
 //____________________________________________________________________________ 
 Float_t AliTOFT0maker::GetExpectedSigma(Float_t mom, Float_t tof, Float_t mass){
-  Double_t *sigmaT0 = GetT0p(mom);
-  fPIDesd->GetTOFResponse().SetTimeResolution(TMath::Sqrt(sigmaT0[1]*sigmaT0[1] + fTimeResolution*fTimeResolution));
   Float_t sigma = fPIDesd->GetTOFResponse().GetExpectedSigma(mom,tof,mass);
-  fPIDesd->GetTOFResponse().SetTimeResolution(TMath::Sqrt(fT0sigma*fT0sigma + fTimeResolution*fTimeResolution));
 
   return sigma;
 }
@@ -356,25 +346,30 @@ void AliTOFT0maker::ApplyT0TOF(AliESDEvent *esd){
   // Recalculate TOF PID probabilities
   //
 
-  // subtruct t0 for each track
-  Int_t ntracks = esd->GetNumberOfTracks();
+// subtruct t0 for each track
+   Int_t ntracks = esd->GetNumberOfTracks();
   
-  while (ntracks--) {
-    AliESDtrack *t=esd->GetTrack(ntracks);
+   while (ntracks--) {
+       AliESDtrack *t=esd->GetTrack(ntracks);
     
-    if ((t->GetStatus()&AliESDtrack::kTOFout)==0) continue;
+       if ((t->GetStatus()&AliESDtrack::kTOFout)==0) continue;
     
-    Double_t time=t->GetTOFsignal();
-    Float_t p = t->GetP();
-
-    Double_t *t0=GetT0p(p);
-    time -= t0[0];
-    t->SetTOFsignal(time);
-  }
+       Double_t time=t->GetTOFsignal();
+       Float_t p = t->GetP();
+
+       Double_t *t0=GetT0p(p);
+       time -= t0[0];
+       t->SetTOFsignal(time);
+   }
+
+   for(Int_t i=0;i<fNmomBins;i++){
+       fPIDesd->GetTOFResponse().SetT0bin(i,0.0);
+   }
+   
   //
 }
 //____________________________________________________________________________ 
-void  AliTOFT0maker::LoadChannelMap(char *filename){
+void  AliTOFT0maker::LoadChannelMap(const char *filename){
   // Load the histo with the channel off map
   TFile *f= new TFile(filename);
   if(!f){
@@ -438,12 +433,14 @@ AliTOFT0maker::TuneForMC(AliESDEvent *esd){ // return true T0 event
     if ((t->GetStatus()&AliESDtrack::kTOFout)==0) continue;
     
     /* check if channel is enabled */
-    if (fTOFcalib && !fTOFcalib->IsChannelEnabled(t->GetTOFCalChannel())) {
-      /* reset TOF status */
-      t->ResetStatus(AliESDtrack::kTOFin);
-      t->ResetStatus(AliESDtrack::kTOFout);
-      t->ResetStatus(AliESDtrack::kTOFrefit);
-      t->ResetStatus(AliESDtrack::kTOFpid);
+    if (fTOFcalib){
+       if(!fTOFcalib->IsChannelEnabled(t->GetTOFCalChannel())) {
+           /* reset TOF status */
+           t->ResetStatus(AliESDtrack::kTOFin);
+           t->ResetStatus(AliESDtrack::kTOFout);
+           t->ResetStatus(AliESDtrack::kTOFmismatch);
+           t->ResetStatus(AliESDtrack::kTOFpid);
+       }
     }
 
     Double_t time=t->GetTOFsignal();
@@ -460,3 +457,91 @@ AliTOFT0maker::TuneForMC(AliESDEvent *esd){ // return true T0 event
   //
   return t0;
 }
+//_________________________________________________________________________
+void     AliTOFT0maker::WriteInESD(AliESDEvent *esd){
+  //
+  // Write t0Gen, t0ResGen, nt0;
+  //       t0resESD[0:nt0], it0ESD[0:nt0]
+  // in the AliESDEvent
+  //
+    Int_t nMomBins = fPIDesd->GetTOFResponse().GetNmomBins();
+
+    Int_t nt0=0;
+    Float_t *t0 = new Float_t[nMomBins];
+    Float_t *t0res = new Float_t[nMomBins];
+    Int_t *multT0 = new Int_t[nMomBins];
+
+    for(Int_t i=0;i<nMomBins;i++){
+//     printf("START %i) %f %f\n",i,fT0event[i],fT0resolution[i]);
+       multT0[i]=0;
+       Bool_t kNewT0=kTRUE;
+       for(Int_t j=0;j < nt0;j++){
+           if(TMath::Abs(fPIDesd->GetTOFResponse().GetT0bin(i) - t0[j])<0.1){
+               kNewT0=kFALSE;
+               multT0[j]++;
+               j=nMomBins*10;
+           }
+       }
+       if(kNewT0){
+           t0[nt0]=fPIDesd->GetTOFResponse().GetT0bin(i);
+           t0res[nt0]=fPIDesd->GetTOFResponse().GetT0binRes(i);
+           nt0++;
+       }
+    }
+
+    Int_t iMultT0=0,nmult=0;
+    for(Int_t j=0;j < nt0;j++){ // find the most frequent
+       if(multT0[j] > nmult){
+           iMultT0 = j;
+           nmult = multT0[j];
+       }
+    }
+
+    Float_t *t0ESD = new Float_t[nMomBins];
+    Float_t *t0resESD = new Float_t[nMomBins];
+    Int_t *it0ESD = new Int_t[nMomBins];
+    
+    Float_t t0Gen,t0ResGen;
+    t0Gen = t0[iMultT0];
+    t0ResGen = t0res[iMultT0];
+    nt0=0;
+    //  printf("T0 to ESD\n%f %f\n",t0Gen,t0ResGen);
+    for(Int_t i=0;i<nMomBins;i++){
+       if(TMath::Abs(fPIDesd->GetTOFResponse().GetT0bin(i) - t0Gen)>0.1){
+           t0ESD[nt0]=fPIDesd->GetTOFResponse().GetT0bin(i);
+           t0resESD[nt0]=fPIDesd->GetTOFResponse().GetT0binRes(i);
+           it0ESD[nt0]=i;
+//         printf("%i) %f %f %i\n",nt0,t0ESD[nt0],t0resESD[nt0],it0ESD[nt0]);
+           nt0++;
+       }
+    }
+
+    // Write  t0Gen,t0ResGen; nt0; t0resESD[0:nt0],it0ESD[0:nt0] in the AliESDEvent
+
+   AliTOFHeader *tofHeader =
+       new AliTOFHeader(t0Gen,t0ResGen,nt0,
+                        t0ESD,t0resESD,it0ESD,fTimeResolution,fT0width);
+  
+    esd->SetTOFHeader(tofHeader);
+
+    delete tofHeader;
+
+    AliDebug(1,Form("resTOF=%f T0spread=%f t0Gen=%f t0resGen=%f",fTimeResolution,fT0width,t0Gen,t0ResGen));
+    AliDebug(1,Form("%d ",nt0));
+    for (Int_t ii=0; ii<nt0; ii++)
+      AliDebug(1,Form("pBin=%d t0val=%f t0res=%f",it0ESD[ii],t0ESD[ii],t0resESD[ii]));
+    
+    delete[] t0;
+    t0 = NULL;
+    delete[] t0res;
+    t0res = NULL;
+    delete[] multT0;
+    multT0 = NULL;
+    delete[] t0ESD;
+    t0ESD = NULL;
+    delete[] t0resESD;
+    t0resESD = NULL;
+    delete[] it0ESD;
+    it0ESD = NULL;
+
+}