]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
extended limit of number of allowed histos
authorschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 23 Jan 2008 15:47:44 +0000 (15:47 +0000)
committerschutz <schutz@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 23 Jan 2008 15:47:44 +0000 (15:47 +0000)
STEER/AliQADataMaker.cxx

index ec14c2b19c88d0663c91a2e64acf858009c7fea0..d094866c309dcab12a69040b209a74ed66a97a08 100644 (file)
@@ -97,8 +97,8 @@ void AliQADataMaker::Finish() const
 TObject * AliQADataMaker::GetData(TObjArray * list, const Int_t index)  
 { 
        // Returns the QA object at index. Limit is 100. 
-       if ( index > 100 ) {
-               AliError("Max number of authorized QA objects is 100") ; 
+       if ( index > 10000 ) {
+               AliError("Max number of authorized QA objects is 10000") ; 
                return NULL; 
        } else {
                return list->At(index) ;