]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/comp/AliHLTCompAgent.cxx
Change "undefined" value of the time stamp from 0 to kMaxUInt, while 0 could be a...
[u/mrichter/AliRoot.git] / HLT / comp / AliHLTCompAgent.cxx
index 81b44dfed49812837fced22ab49869f05dbd4bd0..ed4ba0c9d1531b10d6e25687ba4fd868422c0c3f 100644 (file)
@@ -1,4 +1,4 @@
-// @(#) $Id$
+// $Id$
 
 /**************************************************************************
  * This file is property of and copyright by the ALICE HLT Project        * 
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/** @file   AliHLTCompAgent.cxx
-    @author Matthias Richter
-    @date   
-    @brief  Agent of the libAliHLTComp library
-*/
-
-// see header file for class documentation
-// or
-// refer to README to build package
-// or
-// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
+/// @file   AliHLTCompAgent.cxx
+/// @author Matthias Richter
+/// @date   2007-10-30
+/// @brief  Agent of the libAliHLTComp library
+///
 
 #include <cassert>
 #include <cerrno>
 #include "AliHLTCompAgent.h"
-#include "AliHLTConfiguration.h"
-
-// header files of library components
-// ....
 
 /** global instance for agent registration */
 AliHLTCompAgent gAliHLTCompAgent;
@@ -43,6 +33,8 @@ AliHLTCompAgent gAliHLTCompAgent;
 ClassImp(AliHLTCompAgent)
 
 AliHLTCompAgent::AliHLTCompAgent()
+  :
+  AliHLTModuleAgent("Comp")
 {
   // see header file for class documentation
   // or
@@ -74,6 +66,9 @@ const char* AliHLTCompAgent::GetReconstructionChains(AliRawReader* /*rawReader*/
 const char* AliHLTCompAgent::GetRequiredComponentLibraries() const
 {
   // see header file for class documentation
+
+  // libAliHLTUtil.so for AliRawReaderPublisher
+  //return "libAliHLTUtil.so";
   return NULL;
 }
 
@@ -82,6 +77,12 @@ int AliHLTCompAgent::RegisterComponents(AliHLTComponentHandler* pHandler) const
   // see header file for class documentation
   assert(pHandler);
   if (!pHandler) return -EINVAL;
-  //pHandler->AddComponent(new ...);
+
   return 0;
 }
+
+AliHLTModulePreprocessor* AliHLTCompAgent::GetPreprocessor()
+{
+  // see header file for class documentation
+  return NULL;
+}