]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixes to histogram ranges. (Alberica)
authoraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 31 Oct 2011 11:16:50 +0000 (11:16 +0000)
committeraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 31 Oct 2011 11:16:50 +0000 (11:16 +0000)
HLT/TPCLib/comp/AliHLTTPCDataCompressionMonitorComponent.cxx

index 5520f04ff800769bacf7568686d200528701effc..de97d585dbf252a5afc05843fca548bfe536be1e 100644 (file)
@@ -385,7 +385,7 @@ int AliHLTTPCDataCompressionMonitorComponent::DoInit( int argc, const char** arg
 
   std::auto_ptr<TH2I> histoNofClusters(new TH2I("NofClusters",
                                               "Number of HLT TPC clusters",
-                                              100, 0., 80000., 500, 0., 1000000.));
+                                              100, 0., 80000., 500, 0., 3000000.));
   if (histoNofClusters.get()) {
     TAxis* xaxis=histoNofClusters->GetXaxis();
     if (xaxis) xaxis->SetTitle("raw data size [kB]");
@@ -395,7 +395,7 @@ int AliHLTTPCDataCompressionMonitorComponent::DoInit( int argc, const char** arg
 
   std::auto_ptr<TH2I> histoNofClustersReductionFactor(new TH2I("ReductionFactorVsNofClusters",
                                                               "Reduction Factor vs. Number of HLT TPC clusters",
-                                                              500, 0., 1000000., 100, 0., 10.));
+                                                              500, 0., 3000000., 100, 0., 10.));
   if (histoNofClustersReductionFactor.get()) {
     TAxis* xaxis=histoNofClustersReductionFactor->GetXaxis();
     if (xaxis) xaxis->SetTitle("N. of clusters");