]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
- fixing binning
authorodjuvsla <odjuvsla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 29 Mar 2010 10:50:47 +0000 (10:50 +0000)
committerodjuvsla <odjuvsla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 29 Mar 2010 10:50:47 +0000 (10:50 +0000)
HLT/global/physics/AliHLTCaloHistoClusterEnergy.cxx
HLT/global/physics/AliHLTCaloHistoMatchedTracks.cxx

index 7eec22ae0abfa9195cfa7807836664a75ac64376..73e4510493622167012d44615a70707c92b16fe3 100644 (file)
@@ -41,12 +41,12 @@ AliHLTCaloHistoClusterEnergy::AliHLTCaloHistoClusterEnergy(TString det) :
   fHistClusterEnergyVsNCells(NULL)
 {
   // See header file for documentation
-  fHistClusterEnergy = new TH1F(Form("%s fHistClusterEnergy", det.Data()), Form("%s Distribution of total energy in clusters", det.Data()), 800, 0, 200);
+  fHistClusterEnergy = new TH1F(Form("%s fHistClusterEnergy", det.Data()), Form("%s Distribution of total energy in clusters", det.Data()), 5000, 0, 100);
   fHistClusterEnergy->GetXaxis()->SetTitle("E GeV");
   fHistClusterEnergy->GetYaxis()->SetTitle("Number of counts");
   fHistArray->AddLast(fHistClusterEnergy);
 
-  fHistClusterEnergyVsNCells = new TH2F(Form("%s fHistClusterEnergyVsNCells", det.Data()), Form("%s Distribution of Energy vs Number of Cells in cluster", det.Data()), 800, 0, 200, 50, 0 , 50);
+  fHistClusterEnergyVsNCells = new TH2F(Form("%s fHistClusterEnergyVsNCells", det.Data()), Form("%s Distribution of Energy vs Number of Cells in cluster", det.Data()), 1000, 0, 100, 50, 0 , 50);
   fHistClusterEnergyVsNCells->GetXaxis()->SetTitle("Energy in cluster (GeV)");
   fHistClusterEnergyVsNCells->GetYaxis()->SetTitle("Number of Cells in cluster");
   fHistArray->AddLast(fHistClusterEnergyVsNCells);
index d553cc38b2ac05ec74f780084aeab2b5737a1e4a..ac287744f84bd1139c55d7249d02ccd52bc0ac0c 100644 (file)
@@ -50,13 +50,13 @@ AliHLTCaloHistoMatchedTracks::AliHLTCaloHistoMatchedTracks(TString det) :
   fHistMatchDistance->SetMarkerStyle(21);
   fHistArray->AddLast(fHistMatchDistance);
 
-  fHistMatchedEnergy = new TH1F( Form("%s fHistMatchedEnergy", det.Data()), Form("%s Energy distribution of clusters with matching tracks", det.Data()), 200, 0, 200);
+  fHistMatchedEnergy = new TH1F( Form("%s fHistMatchedEnergy", det.Data()), Form("%s Energy distribution of clusters with matching tracks", det.Data()), 5000, 0, 100);
   fHistMatchedEnergy->GetXaxis()->SetTitle("Cluster Energy (GeV)");
   fHistMatchedEnergy->GetYaxis()->SetTitle("Number of clusters");
   fHistMatchedEnergy->SetMarkerStyle(21);
   fHistArray->AddLast(fHistMatchedEnergy);
 
-  fHistUnMatchedEnergy = new TH1F( Form("%s fHistUnMatchedEnergy", det.Data()), Form("%s Energy distribution of clusters with no matching track", det.Data()), 200, 0, 200);
+  fHistUnMatchedEnergy = new TH1F( Form("%s fHistUnMatchedEnergy", det.Data()), Form("%s Energy distribution of clusters with no matching track", det.Data()), 5000, 0, 100);
   fHistUnMatchedEnergy->GetXaxis()->SetTitle("Cluster Energy (GeV)");
   fHistUnMatchedEnergy->GetYaxis()->SetTitle("Number of clusters");
   fHistUnMatchedEnergy->SetMarkerStyle(21);