]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTConfigurationHandler.h
initialization of CDB in wrapper interface;added treatment of reconfiguration event
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTConfigurationHandler.h
CommitLineData
30338a30 1//-*- Mode: C++ -*-
c38ba6f9 2// $Id$
3
4#ifndef ALIHLTCONFIGURATIONHANDLER_H
5#define ALIHLTCONFIGURATIONHANDLER_H
b6800be0 6/* This file is property of and copyright by the ALICE HLT Project *
7 * ALICE Experiment at CERN, All rights reserved. *
c38ba6f9 8 * See cxx source for full Copyright notice */
9
10/** @file AliHLTConfigurationHandler.h
11 @author Matthias Richter
12 @date
b22e91eb 13 @brief Global handling of HLT configurations.
c38ba6f9 14*/
15
30338a30 16// see below for class documentation
17// or
18// refer to README to build package
19// or
20// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
21
c38ba6f9 22#include <TList.h>
c38ba6f9 23
7a436c89 24#include "AliHLTLogging.h"
52c1c164 25class AliHLTConfiguration;
26
b22e91eb 27/**
28 * @class AliHLTConfigurationHandler
29 * @brief Global Handling of HLT configurations.
30 *
31 * This class implements the global handling of @ref AliHLTConfiguration objects.
32 * It is a list of all configuartion descriptor currently available in the system.
33 * Each @ref AliHLTConfiguration object is registerd automatically with the
34 * handler and put into the list.
35 *
36 * @note This class is only used for the @ref alihlt_system.
37 *
38 * @ingroup alihlt_system
39 */
c38ba6f9 40class AliHLTConfigurationHandler : public AliHLTLogging {
41 public:
b22e91eb 42 /** standard constructor */
c38ba6f9 43 AliHLTConfigurationHandler();
b22e91eb 44
c38ba6f9 45 //AliHLTConfigurationHandler(AliHLTConfiguration* pConf);
b22e91eb 46
47 /** destructor */
c38ba6f9 48 virtual ~AliHLTConfigurationHandler();
49
50 /*****************************************************************************
51 * registration
52 */
53
b22e91eb 54 /**
55 * Register a configuration to the global list of configurations.
56 * @param pConf The configuration to register
57 */
c38ba6f9 58 int RegisterConfiguration(AliHLTConfiguration* pConf);
59
b22e91eb 60 /**
61 * Create a configuration and register it.
62 * @param id
63 * @param component
64 * @param sources
65 * @param arguments
66 */
c38ba6f9 67 int CreateConfiguration(const char* id, const char* component, const char* sources, const char* arguments);
68
b22e91eb 69 /**
70 * Remove a configuration from the global list.
71 * @param pConf The configuration to remove
72 */
c38ba6f9 73 int RemoveConfiguration(AliHLTConfiguration* pConf);
b22e91eb 74
75 /**
76 * Remove a configuration from the global list.
77 * @param id The configuration to remove
78 */
c38ba6f9 79 int RemoveConfiguration(const char* id);
80
b22e91eb 81 /**
82 * Find a configuration from the global list.
83 * @param id Id of the configuration to find
84 */
c38ba6f9 85 AliHLTConfiguration* FindConfiguration(const char* id);
86
b22e91eb 87 /**
88 * Print the registered configurations to the logging function.
89 */
c38ba6f9 90 void PrintConfigurations();
91
92
93 private:
b22e91eb 94 /** the list of registered configurations */
fc455fba 95 TList fgListConfigurations; // see above
c38ba6f9 96
fc455fba 97 ClassDef(AliHLTConfigurationHandler, 1);
c38ba6f9 98};
99
100#endif