X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=HLT%2FRCU%2FAliHLTRCUAgent.cxx;h=82e66b67aa0e23dc629c70b23346449b8107a096;hp=83f60d164fab7ef0eb5f064ddc869f4cb6fe15cb;hb=132422328f016462e8858650098796f4d0ebfd66;hpb=5e3820e26ac4a93873ac387cd040d9ff472b9c76 diff --git a/HLT/RCU/AliHLTRCUAgent.cxx b/HLT/RCU/AliHLTRCUAgent.cxx index 83f60d164fa..82e66b67aa0 100644 --- a/HLT/RCU/AliHLTRCUAgent.cxx +++ b/HLT/RCU/AliHLTRCUAgent.cxx @@ -24,9 +24,10 @@ #include #include "AliHLTRCUAgent.h" -#include "AliHLTConfiguration.h" // header files of library components +#include "AliHLTAltroChannelSelectorComponent.h" +#include "AliHLTAltroTimebinAverageComponent.h" /** global instance for agent registration */ AliHLTRCUAgent gAliHLTRCUAgent; @@ -35,6 +36,8 @@ AliHLTRCUAgent gAliHLTRCUAgent; ClassImp(AliHLTRCUAgent) AliHLTRCUAgent::AliHLTRCUAgent() + : + AliHLTModuleAgent("RCU") { // see header file for class documentation // or @@ -74,5 +77,7 @@ int AliHLTRCUAgent::RegisterComponents(AliHLTComponentHandler* pHandler) const // see header file for class documentation assert(pHandler); if (!pHandler) return -EINVAL; + pHandler->AddComponent(new AliHLTAltroChannelSelectorComponent); + pHandler->AddComponent(new AliHLTAltroTimebinAverageComponent); return 0; }