]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/comp/AliHLTCompAgent.cxx
Add sigma2 jet shape and fill constituent info. for subtracted jets
[u/mrichter/AliRoot.git] / HLT / comp / AliHLTCompAgent.cxx
index 05c9629f41ea29be9881a2bb79d4d92b5f8b5d91..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
-#include "AliHLTCOMPHuffmanAltroComponent.h"
-#include "AliHLTCOMPHuffmanAltroCalibComponent.h"
-
-// header file of the module preprocessor
-#include "AliHLTCompPreprocessor.h"
 
 /** global instance for agent registration */
 AliHLTCompAgent gAliHLTCompAgent;
@@ -91,11 +77,6 @@ int AliHLTCompAgent::RegisterComponents(AliHLTComponentHandler* pHandler) const
   // see header file for class documentation
   assert(pHandler);
   if (!pHandler) return -EINVAL;
-  // use fCompressionSwitch = true for decompressed inputtype (i.e. compressed output)
-  pHandler->AddComponent(new AliHLTCOMPHuffmanAltroComponent(true));
-  // use fCompressionSwitch = false for compressed inputtype (i.e. decompressed output)
-  pHandler->AddComponent(new AliHLTCOMPHuffmanAltroComponent(false));
-  pHandler->AddComponent(new AliHLTCOMPHuffmanAltroCalibComponent);
 
   return 0;
 }
@@ -103,5 +84,5 @@ int AliHLTCompAgent::RegisterComponents(AliHLTComponentHandler* pHandler) const
 AliHLTModulePreprocessor* AliHLTCompAgent::GetPreprocessor()
 {
   // see header file for class documentation
-  return new AliHLTCompPreprocessor;
+  return NULL;
 }