]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/comp/AliHLTCompAgent.cxx
Merge branch 'flatdev' of https://git.cern.ch/reps/AliRoot into flatdev
[u/mrichter/AliRoot.git] / HLT / comp / AliHLTCompAgent.cxx
1 // $Id$
2
3 /**************************************************************************
4  * This file is property of and copyright by the ALICE HLT Project        * 
5  * ALICE Experiment at CERN, All rights reserved.                         *
6  *                                                                        *
7  * Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no>        *
8  *                  for The ALICE HLT Project.                            *
9  *                                                                        *
10  * Permission to use, copy, modify and distribute this software and its   *
11  * documentation strictly for non-commercial purposes is hereby granted   *
12  * without fee, provided that the above copyright notice appears in all   *
13  * copies and that both the copyright notice and this permission notice   *
14  * appear in the supporting documentation. The authors make no claims     *
15  * about the suitability of this software for any purpose. It is          *
16  * provided "as is" without express or implied warranty.                  *
17  **************************************************************************/
18
19 /// @file   AliHLTCompAgent.cxx
20 /// @author Matthias Richter
21 /// @date   2007-10-30
22 /// @brief  Agent of the libAliHLTComp library
23 ///
24
25 #include <cassert>
26 #include <cerrno>
27 #include "AliHLTCompAgent.h"
28
29 /** global instance for agent registration */
30 AliHLTCompAgent gAliHLTCompAgent;
31
32 /** ROOT macro for the implementation of ROOT specific class methods */
33 ClassImp(AliHLTCompAgent)
34
35 AliHLTCompAgent::AliHLTCompAgent()
36   :
37   AliHLTModuleAgent("Comp")
38 {
39   // see header file for class documentation
40   // or
41   // refer to README to build package
42   // or
43   // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
44 }
45
46 AliHLTCompAgent::~AliHLTCompAgent()
47 {
48   // see header file for class documentation
49 }
50
51 int AliHLTCompAgent::CreateConfigurations(AliHLTConfigurationHandler* /*handler*/,
52                                           AliRawReader* /*rawReader*/,
53                                           AliRunLoader* /*runloader*/) const
54 {
55   // see header file for class documentation
56   return 0;
57 }
58
59 const char* AliHLTCompAgent::GetReconstructionChains(AliRawReader* /*rawReader*/,
60                                                      AliRunLoader* /*runloader*/) const
61 {
62   // see header file for class documentation
63   return NULL;
64 }
65
66 const char* AliHLTCompAgent::GetRequiredComponentLibraries() const
67 {
68   // see header file for class documentation
69
70   // libAliHLTUtil.so for AliRawReaderPublisher
71   //return "libAliHLTUtil.so";
72   return NULL;
73 }
74
75 int AliHLTCompAgent::RegisterComponents(AliHLTComponentHandler* pHandler) const
76 {
77   // see header file for class documentation
78   assert(pHandler);
79   if (!pHandler) return -EINVAL;
80
81   return 0;
82 }
83
84 AliHLTModulePreprocessor* AliHLTCompAgent::GetPreprocessor()
85 {
86   // see header file for class documentation
87   return NULL;
88 }