From ab4351aacf21916a522edbff13d62819c9c8f121 Mon Sep 17 00:00:00 2001 From: schutz Date: Tue, 22 Jan 2008 17:36:24 +0000 Subject: [PATCH] increased the number of allowed histos to an unreasonable number --- STEER/AliQADataMaker.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/STEER/AliQADataMaker.cxx b/STEER/AliQADataMaker.cxx index 834f47456de..ec14c2b19c8 100644 --- a/STEER/AliQADataMaker.cxx +++ b/STEER/AliQADataMaker.cxx @@ -75,9 +75,9 @@ AliQADataMaker::AliQADataMaker(const AliQADataMaker& qadm) : Int_t AliQADataMaker::Add2List(TH1 * hist, const Int_t index, TObjArray * list) { // Set histograms memory resident and add to the list - // Maximm allowed is 100 - if ( index > 100 ) { - AliError("Max number of authorized QA objects is 100") ; + // Maximm allowed is 10000 + if ( index > 10000 ) { + AliError("Max number of authorized QA objects is 10000") ; return -1 ; } else { hist->SetDirectory(0) ; -- 2.43.0