]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/sim/AliHLTAgentSim.cxx
New CMake build implementation
[u/mrichter/AliRoot.git] / HLT / sim / AliHLTAgentSim.cxx
index ce14e496bc394cdaf57ad0e58f5ee016e761f6a1..67c5a395dbcf438bf3f0a274aed1c95c4d072639 100644 (file)
@@ -31,7 +31,6 @@
 #include <cassert>
 #include <cerrno>
 #include "AliHLTAgentSim.h"
-#include "AliHLTConfiguration.h"
 
 // header files of library components
 #include "AliHLTOUTComponent.h"
@@ -43,6 +42,8 @@ AliHLTAgentSim gAliHLTAgentSim;
 ClassImp(AliHLTAgentSim)
 
 AliHLTAgentSim::AliHLTAgentSim()
+  :
+  AliHLTModuleAgent("sim")
 {
   // see header file for class documentation
   // or
@@ -83,5 +84,7 @@ int AliHLTAgentSim::RegisterComponents(AliHLTComponentHandler* pHandler) const
   assert(pHandler);
   if (!pHandler) return -EINVAL;
   pHandler->AddComponent(new AliHLTOUTComponent);
+  pHandler->AddComponent(new AliHLTOUTComponent(AliHLTOUTComponent::kDigits));
+  pHandler->AddComponent(new AliHLTOUTComponent(AliHLTOUTComponent::kRaw));
   return 0;
 }