From: aszostak Date: Mon, 31 Oct 2011 11:16:50 +0000 (+0000) Subject: Fixes to histogram ranges. (Alberica) X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=3b5a860643671514f0cb5de45f37db434b388c85;p=u%2Fmrichter%2FAliRoot.git Fixes to histogram ranges. (Alberica) --- diff --git a/HLT/TPCLib/comp/AliHLTTPCDataCompressionMonitorComponent.cxx b/HLT/TPCLib/comp/AliHLTTPCDataCompressionMonitorComponent.cxx index 5520f04ff80..de97d585dbf 100644 --- a/HLT/TPCLib/comp/AliHLTTPCDataCompressionMonitorComponent.cxx +++ b/HLT/TPCLib/comp/AliHLTTPCDataCompressionMonitorComponent.cxx @@ -385,7 +385,7 @@ int AliHLTTPCDataCompressionMonitorComponent::DoInit( int argc, const char** arg std::auto_ptr 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 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");