]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ANALYSIS/AliBackgroundSelection.cxx
Disable caching for async prefetching
[u/mrichter/AliRoot.git] / ANALYSIS / AliBackgroundSelection.cxx
index 15da23e39e550eb139e8eda7d9f3f6fef771ef5b..c38a8fa22e970eb0c86abe8f7f5be72e191e22ba 100644 (file)
@@ -29,7 +29,7 @@
 #include "TTree.h"
 #include "AliMultiplicity.h"
 #ifdef PASS1RECO
-#include "../ITS/AliITSRecPoint.h"
+#include "AliITSRecPoint.h"
 #endif
 
 
@@ -228,13 +228,13 @@ void AliBackgroundSelection::BookClusterVsTrackletsHisto(const char * trigger_na
   Bool_t oldStatus = TH1::AddDirectoryStatus();
   TH1::AddDirectory(kFALSE);
 
-  TH2F * h1 = new TH2F(GetClusterVsTrackletsHistoName(trigger_name),trigger_name, 50, -0.5, 49.5, 1000, -0.5, 999.5);
+  TH2F * h1 = new TH2F(GetClusterVsTrackletsHistoName(trigger_name),trigger_name, 300, -0.5, 2999.5, 1000, -0.5, 9999.5);
   h1->SetXTitle("Tracklets");
   h1->SetYTitle("SPD Clusters");
-  AliInfo(Form("Creating histos: %s, all and accepted", GetClusterVsTrackletsHistoName(trigger_name)));
+  // AliInfo(Form("Creating histos: %s, all and accepted", GetClusterVsTrackletsHistoName(trigger_name)));
 
   TH2F * h2 = new TH2F(GetClusterVsTrackletsHistoNameAccepted(trigger_name),TString(trigger_name)+ "(accepted)", 
-                      50, -0.5, 49.5, 1000, -0.5, 999.5);
+                      300, -0.5, 2999.5, 1000, -0.5, 9999.5);
   h2->SetXTitle("Tracklets");
   h2->SetYTitle("SPD Clusters");
 
@@ -254,7 +254,7 @@ void AliBackgroundSelection::BookDeltaPhiHisto(const char * trigger_name){
 
   TH1F * h1 = new TH1F(GetDeltaPhiHistoName(trigger_name),trigger_name, 100,0,0.5);
   h1->SetXTitle("#Delta #phi");
-  AliInfo(Form("Creating histos: %s, all and accepted", GetDeltaPhiHistoName(trigger_name)));
+  // AliInfo(Form("Creating histos: %s, all and accepted", GetDeltaPhiHistoName(trigger_name)));
 
   TH1F * h2 = new TH1F(GetDeltaPhiHistoNameAccepted(trigger_name),TString(trigger_name)+ "(accepted)", 100,0,0.5);
   h2->SetXTitle("#Delta #phi");
@@ -382,7 +382,7 @@ Long64_t AliBackgroundSelection::Merge(TCollection* const list)
   // the same order. We thus also have to sort the list (sorting is
   // done by name in TList).
 
-  AliInfo("Merging");
+  //AliInfo("Merging");
 
   if (!list)
     return 0;
@@ -442,7 +442,7 @@ Long64_t AliBackgroundSelection::Merge(TCollection* const list)
 
       while ((hist= iterlist->Next())){ 
        if(!otherlist->FindObject(hist->GetName())){
-         AliInfo(Form("Adding object %s",hist->GetName()));
+         //AliInfo(Form("Adding object %s",hist->GetName()));
          foundDiffinThisIterStep = kTRUE;
          TH1 * hclone =  (TH1*) hist->Clone();
          hclone->Reset();