]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Minor bug fix: GetOutputDataTypes was calling the wrong const method internally.
authoraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 27 Feb 2009 11:12:21 +0000 (11:12 +0000)
committeraszostak <aszostak@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 27 Feb 2009 11:12:21 +0000 (11:12 +0000)
HLT/trigger/AliHLTTrigger.cxx

index f7ef490f864c375353023a4cf1ad98e612343857..4d61337bf4f8cc1123377c81e5fee2989abd5eec 100644 (file)
@@ -119,7 +119,7 @@ void AliHLTTrigger::GetInputDataTypes(AliHLTComponentDataTypeList& list)
   // Assign to const temporary variable to make sure we call the constant version
   // of the GetOutputDataTypes method.
   const AliHLTTrigger* t = this;
-  t->GetOutputDataTypes(list);
+  t->GetInputDataTypes(list);
 }