]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/util/AliHLTAgentUtil.cxx
corrections to write ESD format (Gaute)
[u/mrichter/AliRoot.git] / HLT / BASE / util / AliHLTAgentUtil.cxx
CommitLineData
242bb794 1// @(#) $Id$
2
3/** @file AliHLTAgentUtil.cxx
4 @author Matthias Richter
5 @date
6 @brief Agent of the libAliHLTUtil library
7*/
8
9#include "AliHLTAgentUtil.h"
10#include "AliHLTConfiguration.h"
11
12/** global instance for agent registration */
13AliHLTAgentUtil gAliHLTAgentUtil;
14
15/** ROOT macro for the implementation of ROOT specific class methods */
16ClassImp(AliHLTAgentUtil)
17
18AliHLTAgentUtil::AliHLTAgentUtil()
19{
20 // see header file for class documentation
21 // or
22 // refer to README to build package
23 // or
24 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
25}
26
27AliHLTAgentUtil::~AliHLTAgentUtil()
28{
29 // see header file for class documentation
30}
31
32int AliHLTAgentUtil::CreateConfigurations(AliHLTConfigurationHandler* handler,
33 AliRunLoader* runloader) const
34{
35 // see header file for class documentation
36 if (handler) {
37 }
38 return 0;
39}
40
41const char* AliHLTAgentUtil::GetTopConfigurations(AliRunLoader* runloader) const
42{
43 // see header file for class documentation
44 return NULL;
45}
46
47const char* AliHLTAgentUtil::GetRequiredComponentLibraries() const
48{
49 // see header file for class documentation
50 return "libAliHLTUtil.so";
51}