]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/BASE/util/AliHLTAgentUtil.cxx
1949ccd7d9a872e74e5fac4776a9d8003180d32d
[u/mrichter/AliRoot.git] / HLT / BASE / util / AliHLTAgentUtil.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   AliHLTAgentUtil.cxx
20     @author Matthias Richter
21     @date   
22     @brief  Agent of the libAliHLTUtil library
23 */
24
25 #include "AliHLTAgentUtil.h"
26 #include "AliHLTConfiguration.h"
27
28 /** global instance for agent registration */
29 AliHLTAgentUtil gAliHLTAgentUtil;
30
31 /** ROOT macro for the implementation of ROOT specific class methods */
32 ClassImp(AliHLTAgentUtil)
33
34 AliHLTAgentUtil::AliHLTAgentUtil()
35 {
36   // see header file for class documentation
37   // or
38   // refer to README to build package
39   // or
40   // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
41 }
42
43 AliHLTAgentUtil::~AliHLTAgentUtil()
44 {
45   // see header file for class documentation
46 }
47
48 int AliHLTAgentUtil::CreateConfigurations(AliHLTConfigurationHandler* /*handler*/,
49                                           AliRawReader* /*rawReader*/,
50                                           AliRunLoader* /*runloader*/) const
51 {
52   // see header file for class documentation
53   return 0;
54 }
55
56 const char* AliHLTAgentUtil::GetReconstructionChains(AliRawReader* /*rawReader*/,
57                                                      AliRunLoader* /*runloader*/) const
58 {
59   // see header file for class documentation
60   return NULL;
61 }
62
63 const char* AliHLTAgentUtil::GetRequiredComponentLibraries() const
64 {
65   // see header file for class documentation
66   return NULL;
67 }