]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/comp/AliHLTCompAgent.cxx
2fc7a916beec3c172fbf889ada5a924c7fe39bc5
[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   
22     @brief  Agent of the libHLTsim library
23 */
24
25 // see header file for class documentation
26 // or
27 // refer to README to build package
28 // or
29 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
30
31 #include <cassert>
32 #include <cerrno>
33 #include "AliHLTCompAgent.h"
34 #include "AliHLTConfiguration.h"
35
36 // header files of library components
37 // ....
38
39 /** global instance for agent registration */
40 AliHLTCompAgent gAliHLTCompAgent;
41
42 /** ROOT macro for the implementation of ROOT specific class methods */
43 ClassImp(AliHLTCompAgent)
44
45 AliHLTCompAgent::AliHLTCompAgent()
46 {
47   // see header file for class documentation
48   // or
49   // refer to README to build package
50   // or
51   // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
52 }
53
54 AliHLTCompAgent::~AliHLTCompAgent()
55 {
56   // see header file for class documentation
57 }
58
59 int AliHLTCompAgent::CreateConfigurations(AliHLTConfigurationHandler* /*handler*/,
60                                           AliRawReader* /*rawReader*/,
61                                           AliRunLoader* /*runloader*/) const
62 {
63   // see header file for class documentation
64   return 0;
65 }
66
67 const char* AliHLTCompAgent::GetReconstructionChains(AliRawReader* /*rawReader*/,
68                                                      AliRunLoader* /*runloader*/) const
69 {
70   // see header file for class documentation
71   return NULL;
72 }
73
74 const char* AliHLTCompAgent::GetRequiredComponentLibraries() const
75 {
76   // see header file for class documentation
77   return NULL;
78 }
79
80 int AliHLTCompAgent::RegisterComponents(AliHLTComponentHandler* pHandler) const
81 {
82   // see header file for class documentation
83   assert(pHandler);
84   if (!pHandler) return -EINVAL;
85   //pHandler->AddComponent(new ...);
86   return 0;
87 }