]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/util/AliHLTAgentUtil.cxx
- support for event by event reconstruction added to AliHLTSystem
[u/mrichter/AliRoot.git] / HLT / BASE / util / AliHLTAgentUtil.cxx
CommitLineData
242bb794 1// @(#) $Id$
2
9be2600f 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
242bb794 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 */
29AliHLTAgentUtil gAliHLTAgentUtil;
30
31/** ROOT macro for the implementation of ROOT specific class methods */
32ClassImp(AliHLTAgentUtil)
33
34AliHLTAgentUtil::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
43AliHLTAgentUtil::~AliHLTAgentUtil()
44{
45 // see header file for class documentation
46}
47
dee38f1b 48int AliHLTAgentUtil::CreateConfigurations(AliHLTConfigurationHandler* /*handler*/,
49 AliRawReader* /*rawReader*/,
298ef463 50 AliRunLoader* /*runloader*/) const
242bb794 51{
52 // see header file for class documentation
242bb794 53 return 0;
54}
55
dee38f1b 56const char* AliHLTAgentUtil::GetReconstructionChains(AliRawReader* /*rawReader*/,
57 AliRunLoader* /*runloader*/) const
242bb794 58{
59 // see header file for class documentation
60 return NULL;
61}
62
63const char* AliHLTAgentUtil::GetRequiredComponentLibraries() const
64{
65 // see header file for class documentation
dee38f1b 66 return NULL;
242bb794 67}