]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG0/AliPWG0Helper.cxx
Added forward declaration
[u/mrichter/AliRoot.git] / PWG0 / AliPWG0Helper.cxx
index 8f488a097f8fc047b26621713f3b1453cc232227..5466eec538dace8ceeb9d4bd0dc6e1a6a90bcab3 100644 (file)
@@ -5,7 +5,7 @@
 #include <TParticle.h>
 #include <TParticlePDG.h>
 #include <TH1.h>
-#include <TH3F.h>
+#include <TH3.h>
 
 #include <AliLog.h>
 #include <AliESD.h>
 ClassImp(AliPWG0Helper)
 
 //____________________________________________________________________
-Bool_t AliPWG0Helper::IsEventTriggered(AliESD* aEsd)
+Bool_t AliPWG0Helper::IsEventTriggered(AliESD* aEsd, Trigger trigger)
 {
   // check if the event was triggered
   //
+  // this function needs the branch fTriggerMask
+  //
   // MB should be
   // ITS_SPD_GFO_L0  : 32
   // VZERO_OR_LEFT   : 1
@@ -26,8 +28,21 @@ Bool_t AliPWG0Helper::IsEventTriggered(AliESD* aEsd)
 
   ULong64_t triggerMask = aEsd->GetTriggerMask();
 
-  if (triggerMask&32 && ((triggerMask&1) || (triggerMask&2)))
-    return kTRUE;
+  switch (trigger)
+  {
+    case kMB1:
+    {
+      if (triggerMask&32 || ((triggerMask&1) || (triggerMask&2)))
+        return kTRUE;
+      break;
+    }
+    case kMB2:
+    {
+      if (triggerMask&32 && ((triggerMask&1) || (triggerMask&2)))
+        return kTRUE;
+      break;
+    }
+  }
 
   return kFALSE;
 }
@@ -36,6 +51,9 @@ Bool_t AliPWG0Helper::IsEventTriggered(AliESD* aEsd)
 Bool_t AliPWG0Helper::IsVertexReconstructed(AliESD* aEsd)
 {
   // checks if the vertex is reasonable
+  //
+  // this function needs the branches fSPDVertex*
+
 
   const AliESDVertex* vtxESD = aEsd->GetVertex();
 
@@ -51,21 +69,26 @@ Bool_t AliPWG0Helper::IsVertexReconstructed(AliESD* aEsd)
   if (vtx_res[2]==0 || vtx_res[2]>0.1)
     return kFALSE;
 
+  // check Ncontributors, if <0 it means error *gna*
+
   return kTRUE;
 }
 
 //____________________________________________________________________
-Bool_t AliPWG0Helper::IsPrimaryCharged(TParticle* aParticle, Int_t aTotalPrimaries)
+Bool_t AliPWG0Helper::IsPrimaryCharged(TParticle* aParticle, Int_t aTotalPrimaries, Bool_t adebug)
 {
   //
-  // Returns if the given particle is a primary particle
+  // this function checks if a particle from the event generator (i.e. among the nPrim particles in the stack)
+  // shall be counted as a primary particle
+  //
   // This function or a equivalent should be available in some common place of AliRoot
   //
 
   // if the particle has a daughter primary, we do not want to count it
   if (aParticle->GetFirstDaughter() != -1 && aParticle->GetFirstDaughter() < aTotalPrimaries)
   {
-    //AliDebug(AliLog::kDebug+1, "Dropping particle because it has a daughter among the primaries.");
+    if (adebug)
+      printf("Dropping particle because it has a daughter among the primaries.\n");
     return kFALSE;
   }
 
@@ -74,13 +97,15 @@ Bool_t AliPWG0Helper::IsPrimaryCharged(TParticle* aParticle, Int_t aTotalPrimari
   // skip quarks and gluon
   if (pdgCode <= 10 || pdgCode == 21)
   {
-    //AliDebug(AliLog::kDebug+1, "Dropping particle because it is a quark or gluon.");
+    if (adebug)
+      printf("Dropping particle because it is a quark or gluon.\n");
     return kFALSE;
   }
 
   if (strcmp(aParticle->GetName(),"XXX") == 0)
   {
-    //AliDebug(AliLog::kDebug, Form("WARNING: There is a particle named XXX."));
+    if (adebug)
+      printf("WARNING: There is a particle named XXX.\n");
     return kFALSE;
   }
 
@@ -88,13 +113,15 @@ Bool_t AliPWG0Helper::IsPrimaryCharged(TParticle* aParticle, Int_t aTotalPrimari
 
   if (strcmp(pdgPart->ParticleClass(),"Unknown") == 0)
   {
-    //AliDebug(AliLog::kDebug, Form("WARNING: There is a particle with an unknown particle class (pdg code %d).", pdgCode));
+    if (adebug)
+      printf("WARNING: There is a particle with an unknown particle class (pdg code %d).\n", pdgCode);
     return kFALSE;
   }
 
   if (pdgPart->Charge() == 0)
   {
-    //AliDebug(AliLog::kDebug+1, "Dropping particle because it is not charged.");
+    if (adebug)
+      printf("Dropping particle because it is not charged.\n");
     return kFALSE;
   }
 
@@ -102,7 +129,7 @@ Bool_t AliPWG0Helper::IsPrimaryCharged(TParticle* aParticle, Int_t aTotalPrimari
 }
 
 //____________________________________________________________________
-void AliPWG0Helper::CreateProjections(TH3F* hist)
+void AliPWG0Helper::CreateProjections(TH3* hist, Bool_t save)
 {
   // create projections of 3d hists to all 2d combinations
   // the histograms are not returned, just use them from memory or use this to create them in a file
@@ -110,18 +137,24 @@ void AliPWG0Helper::CreateProjections(TH3F* hist)
   TH1* proj = hist->Project3D("yx");
   proj->SetXTitle(hist->GetXaxis()->GetTitle());
   proj->SetYTitle(hist->GetYaxis()->GetTitle());
+  if (save)
+    proj->Write();
 
   proj = hist->Project3D("zx");
   proj->SetXTitle(hist->GetXaxis()->GetTitle());
   proj->SetYTitle(hist->GetZaxis()->GetTitle());
+  if (save)
+    proj->Write();
 
   proj = hist->Project3D("zy");
   proj->SetXTitle(hist->GetYaxis()->GetTitle());
   proj->SetYTitle(hist->GetZaxis()->GetTitle());
+  if (save)
+    proj->Write();
 }
 
 //____________________________________________________________________
-void AliPWG0Helper::CreateDividedProjections(TH3F* hist, TH3F* hist2, const char* axis)
+void AliPWG0Helper::CreateDividedProjections(TH3* hist, TH3* hist2, const char* axis, Bool_t putErrors, Bool_t save)
 {
   // create projections of the 3d hists divides them
   // axis decides to which plane, if axis is 0 to all planes
@@ -129,22 +162,78 @@ void AliPWG0Helper::CreateDividedProjections(TH3F* hist, TH3F* hist2, const char
 
   if (axis == 0)
   {
-    CreateDividedProjections(hist, hist2, "yx");
-    CreateDividedProjections(hist, hist2, "zx");
-    CreateDividedProjections(hist, hist2, "zy");
+    CreateDividedProjections(hist, hist2, "yx", putErrors, save);
+    CreateDividedProjections(hist, hist2, "zx", putErrors, save);
+    CreateDividedProjections(hist, hist2, "zy", putErrors, save);
 
     return;
   }
 
   TH1* proj = hist->Project3D(axis);
-  proj->SetXTitle(hist->GetXaxis()->GetTitle());
-  proj->SetYTitle(hist->GetYaxis()->GetTitle());
+
+  if (strlen(axis) == 2)
+  {
+    proj->SetYTitle(GetAxisTitle(hist, axis[0]));
+    proj->SetXTitle(GetAxisTitle(hist, axis[1]));
+  }
+  else if (strlen(axis) == 1)
+    proj->SetXTitle(GetAxisTitle(hist, axis[0]));
 
   TH1* proj2 = hist2->Project3D(axis);
-  proj2->SetXTitle(hist2->GetXaxis()->GetTitle());
-  proj2->SetYTitle(hist2->GetYaxis()->GetTitle());
+  if (strlen(axis) == 2)
+  {
+    proj2->SetYTitle(GetAxisTitle(hist2, axis[0]));
+    proj2->SetXTitle(GetAxisTitle(hist2, axis[1]));
+  }
+  else if (strlen(axis) == 1)
+    proj2->SetXTitle(GetAxisTitle(hist2, axis[0]));
 
   TH1* division = dynamic_cast<TH1*> (proj->Clone(Form("%s_div_%s", proj->GetName(), proj2->GetName())));
-  division->Divide(proj2);
+  //printf("doing axis: %s, x axis has %d %d bins, min %f %f max %f %f\n", axis, division->GetNbinsX(), proj2->GetNbinsX(), division->GetXaxis()->GetBinLowEdge(1), proj2->GetXaxis()->GetBinLowEdge(1), division->GetXaxis()->GetBinUpEdge(division->GetNbinsX()), proj2->GetXaxis()->GetBinUpEdge(proj2->GetNbinsX()));
+  //printf("doing axis: %s, y axis has %d %d bins, min %f %f max %f %f\n", axis, division->GetNbinsY(), proj2->GetNbinsY(), division->GetYaxis()->GetBinLowEdge(1), proj2->GetYaxis()->GetBinLowEdge(1), division->GetYaxis()->GetBinUpEdge(division->GetNbinsY()), proj2->GetYaxis()->GetBinUpEdge(proj2->GetNbinsY()));
+  division->Divide(proj, proj2, 1, 1, "B");
+  division->SetTitle(Form("%s divided %s", proj->GetTitle(), proj2->GetTitle()));
+
+  if (putErrors)
+  {
+    division->Sumw2();
+    if (division->GetDimension() == 1)
+    {
+      Int_t nBins = division->GetNbinsX();
+      for (Int_t i = 1; i <= nBins; ++i)
+        if (proj2->GetBinContent(i) != 0)
+          division->SetBinError(i, TMath::Sqrt(proj->GetBinContent(i)) / proj2->GetBinContent(i));
+    }
+    else if (division->GetDimension() == 2)
+    {
+      Int_t nBinsX = division->GetNbinsX();
+      Int_t nBinsY = division->GetNbinsY();
+      for (Int_t i = 1; i <= nBinsX; ++i)
+        for (Int_t j = 1; j <= nBinsY; ++j)
+          if (proj2->GetBinContent(i, j) != 0)
+            division->SetBinError(i, j, TMath::Sqrt(proj->GetBinContent(i, j)) / proj2->GetBinContent(i, j));
+    }
+  }
+
+  if (save)
+  {
+    proj->Write();
+    proj2->Write();
+    division->Write();
+  }
 }
 
+//____________________________________________________________________
+const char* AliPWG0Helper::GetAxisTitle(TH3* hist, const char axis)
+{
+  // returns the title of the axis given in axis (x, y, z)
+
+  if (axis == 'x')
+    return hist->GetXaxis()->GetTitle();
+  else if (axis == 'y')
+    return hist->GetYaxis()->GetTitle();
+  else if (axis == 'z')
+    return hist->GetZaxis()->GetTitle();
+
+  return 0;
+}