]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTModuleAgent.h
Signal propagation delay value: changed according to a measurement result (5.13 ns...
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTModuleAgent.h
CommitLineData
30338a30 1//-*- Mode: C++ -*-
242bb794 2// @(#) $Id$
3
4#ifndef ALIHLTMODULEAGENT_H
5#define ALIHLTMODULEAGENT_H
79c114b5 6/* This file is property of and copyright by the ALICE HLT Project *
7 * ALICE Experiment at CERN, All rights reserved. *
242bb794 8 * See cxx source for full Copyright notice */
9
10/** @file AliHLTModuleAgent.h
11 @author Matthias Richter
12 @date
13 @brief Agent helper class for component libraries.
14 @note The class is used in Offline (AliRoot) context
15*/
16
30338a30 17// see below for class documentation
18// or
19// refer to README to build package
20// or
21// visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
22
242bb794 23#include <TObject.h>
24#include <TList.h>
164de2ba 25#include <TString.h>
242bb794 26#include "AliHLTLogging.h"
27#include "AliHLTConfiguration.h"
28#include "AliHLTConfigurationHandler.h"
f3506ea2 29#include "AliHLTComponentHandler.h"
242bb794 30
31class AliRunLoader;
dee38f1b 32class AliRawReader;
62bb3cd4 33class AliRawStream;
34class AliHLTOUTHandler;
35class AliHLTOUT;
12ec5482 36class AliHLTModulePreprocessor;
242bb794 37
38/**
39 * @class AliHLTModuleAgent
40 * @brief Agent helper class for HLT sub modules, e.g. PHOS, TPC, Trigger
41 *
c215072c 42 * This class implements the agent base class for the HLT sub modules.
90ebac25 43 * The agent of a library gives information on the features of the library/
44 * components, like the configurations to run and other component libraries
45 * it depends on.
46 * @note There must not be more than one agent per module/library.
47 *
dee38f1b 48 * If a run loader is available, reconstruction is performed on simulated
49 * data as part of <tt>AliSimulation</tt>, if the raw reader is present on
50 * raw data as part of <tt>AliReconstruction</tt>. The configurations
51 * can adapt to the two cases.
52 *
c215072c 53 * All HLT component libraries are loaded on demand through the HLT steering
54 * instance (@ref AliHLTSystem). A library can implement an agent derived
55 * from this base class, and has to define one global object of this agent
56 * in the code. The agent will be registered automatically, and the features
57 * can be queried when required.
58 *
90ebac25 59 * This is usually done during running the AliRoot reconstruction (see AliRoot
3294f81a 60 * documentation on <tt> AliSimulation </tt> and <tt> AliReconstruction </tt>).
dee38f1b 61 * The HLT implemets the @ref AliHLTSimulation and @ref
62 * AliHLTReconstructor which hold the HLT steering object. Several flags can
63 * be specified as options via the <tt>SetRunHLT</tt> method of
64 * <tt>AliSimulation</tt> and the <tt>SetOption</tt> method of
90ebac25 65 * <tt>AliReconstruction</tt>, including the component libraries to be loaded.
66 *
67 * @section alihltmoduleagent_interface Agent interface
68 * The child can implement the following functions:
69 * - @ref CreateConfigurations <br>
dee38f1b 70 * Create HLT configuration forming an HLT analysis chain. <br>
71 * Reconstruction of raw data or simulated data from digits needs
72 * usually different configurations. If a run loader is available,
73 * reconstruction is performed on simulated data, on raw data if the
74 * raw reader is present.
90ebac25 75 *
dee38f1b 76 * - @ref GetReconstructionChains <br>
77 * Configurations run during event reconstruction. <br>
78 * Define chains to be run during the recunstruction step,
79 * Depending on the availability of AliRoot run loader or raw reader
90ebac25 80 * <br>
dee38f1b 81 *
90ebac25 82 * - @ref GetRequiredComponentLibraries <br>
83 * can indicate further libraries which are required for running the
84 * chains (e.g. if components of another library are used).
242bb794 85 *
90ebac25 86 * - @ref RegisterComponents <br>
87 * register componens, this can be used to avoid the component
88 * registration via global objects
89 * @see @ref alihltcomponent-handling
90 * <br>
62bb3cd4 91 * - @ref GetHandlerDescription <br>
92 * the agent can announce which part of the HLTOUT data can be treated
93 * by the library and through which method. Different types of handlers
94 * are defined to fit the various formats of the HLTOUT data.
95 * @see AliHLTOUTHandlerType
96 *
97 * - @ref GetOutputHandler <br>
98 * Return AliHLTOUTHandler for a given data type and specification.
99 * This is mainly intended to treat detector proprietary data.
100 *
90ebac25 101 * @section alihltmoduleagent_references References
102 * @see @ref AliHLTReconstructor interface to the AliRoot reconstruction
103 * @see @ref AliHLTAgentSample agent for the libAliHLTSample library
242bb794 104 *
105 * @ingroup alihlt_system
106 */
107class AliHLTModuleAgent : public TObject, public AliHLTLogging {
108 public:
109 /**
110 * standard constructor. The agent is automatically registered in the
111 * global agent manager
112 */
626bfcc1 113 AliHLTModuleAgent(const char* id);
242bb794 114 /** destructor */
115 virtual ~AliHLTModuleAgent();
116
626bfcc1 117 /**
118 * Get module id.
119 * The module id is a string specifying the detector, or module. The
af2ed151 120 * library must follow the naming scheme \em libAliHLTModule.so, e.g.
121 * \em libAliHLTTPC.so if the module is 'TPC'
626bfcc1 122 */
123 const char* GetModuleId() const;
124
242bb794 125 /**
126 * Print status info.
90ebac25 127 * Short summary on registered agents. This function acts globally on the
128 * list of agents if no specific agent is specified.
242bb794 129 */
130 static void PrintStatus(const char* agent=NULL);
131
132 /**
133 * Get the first agent in the list
134 * @return pointer to first agent in the list, NULL if empty
135 */
136 static AliHLTModuleAgent* GetFirstAgent();
137
138 /**
139 * Get the next agent in the list
140 * @return pointer to next agent in the list, NULL if end of list
141 */
142 static AliHLTModuleAgent* GetNextAgent();
143
f3506ea2 144 /**
145 * Activate a component handler for this agent.
146 * The @ref RegisterComponents method will be called in order to allow
147 * the agent to register components. Once activated, the function can
148 * be called repeatedly with the same handler and gently ignores the
149 * invocation. In the current stage of development, only one handler
150 * can be activated per agent. This is sufficient for the current
151 * operation, but can be extended.
152 * @param pHandler [in] the component handler instance
153 */
154 int ActivateComponentHandler(AliHLTComponentHandler* pHandler);
155
242bb794 156 /**
157 * Register all configurations belonging to this module with the
158 * AliHLTConfigurationHandler. The agent can adapt the configurations
159 * to be registered to the current AliRoot setup by checking the
dee38f1b 160 * runloader and the raw reader. <br>
161 * Run loader and raw reader are usually not present at the same time.
162 * If a run loader is available, reconstruction is performed on simulated
163 * data, if the raw reader is present on raw data. The configurations
164 * can adapt to the two cases.
165 *
96bda103 166 * @param handler [in] the configuration handler
dee38f1b 167 * @param rawReader [in] AliRoot RawReader instance
96bda103 168 * @param runloader [in] AliRoot runloader
242bb794 169 * @return neg. error code if failed
170 */
171 virtual int CreateConfigurations(AliHLTConfigurationHandler* handler,
dee38f1b 172 AliRawReader* rawReader=NULL,
242bb794 173 AliRunLoader* runloader=NULL) const;
174
175 /**
dee38f1b 176 * Get the top configurations for event reconstruction.
242bb794 177 * A top configuration describes a processing chain. It can simply be
178 * described by the last configuration(s) in the chain.
179 * The agent can adapt the configurations to be registered to the current
dee38f1b 180 * AliRoot setup by checking the run loader and the raw reader.
181 * @param rawReader [in] AliRoot RawReader instance
182 * @param runloader [in] AliRoot runloader
90ebac25 183 * @return string containing the top configurations separated by blanks
184 */
dee38f1b 185 virtual const char* GetReconstructionChains(AliRawReader* rawReader=NULL,
186 AliRunLoader* runloader=NULL) const;
242bb794 187
188 /**
dee38f1b 189 * Component libraries which the configurations of this agent depend on. <br>
190 * @note This is not the right place to specify libraries which this component
191 * library depends. Dependencies must be linked or loaded before.
242bb794 192 * @return list of component libraries as a blank-separated string.
193 */
194 virtual const char* GetRequiredComponentLibraries() const;
195
196 /**
f3506ea2 197 * Register components.
242bb794 198 * This method can be used to register components for the module instead
f3506ea2 199 * of the 'static object approach'. Registration is done by passing a
200 * sample object to the AliHLTComponentHandler via
201 * - @ref AliHLTComponentHandler::RegisterComponent <br>
202 * The sample object is owned by the agent, make sure to delete it.
203 * - @ref AliHLTComponentHandler::AddComponent <br>
204 * Same functionality but handler deletes the object at the end.
205 *
206 * @param pHandler [in] instance of the component handler
242bb794 207 */
f3506ea2 208 virtual int RegisterComponents(AliHLTComponentHandler* pHandler) const;
242bb794 209
62bb3cd4 210 /**
211 * IDs for output handlers.
212 * The agent can provide output handlers in order to treat the output
213 * data coming from the HLTOUT nodes.
214 */
215 enum AliHLTOUTHandlerType {
216 kUnknownOutput =0,
164de2ba 217
62bb3cd4 218 /** output is in ESD format */
219 kEsd,
164de2ba 220
221 /** agent provides data for a RawReader
222 * From the data block one or more output blocks can be
223 * created idenditcal to the ddl format. The blocks are
224 * provided to subsequent analysis by a RawReader instance.
225 * The data block can be processed in order to provide the
226 * raw data, e.g. in case of lossless compression.
227 */
228 kRawReader,
229
230 /** agent can create a raw stream
231 * The agent directly generates a detector specific RawStream
232 * object. This is used for pre-analyzed data which will not
233 * be converted back to the raw format.
234 */
235 kRawStream,
236
237 /** agent provides a chain
238 * The data bock is fed into an analysis chain, the treatment
239 * depends on the components in the chain.
240 */
62bb3cd4 241 kChain,
164de2ba 242
62bb3cd4 243 /** agent provides detector specific handler */
244 kProprietary,
245 kLastOutputHandler
246 };
247
248 /**
249 * Output handler description.
250 * \em fModule: module name specific for the handler type
164de2ba 251 * - kRawReader: DDL no printed in ascii format
252 * - kRawStream: class name of the RawStream class
62bb3cd4 253 * - kChain: blank separated list of chains
254 * - kProprietary: name of the handler class
255 */
164de2ba 256 class AliHLTOUTHandlerDesc {
257 public:
258 AliHLTOUTHandlerDesc() : fHType(kUnknownOutput), fDt(kAliHLTVoidDataType), fModule() {}
259
260 AliHLTOUTHandlerDesc(AliHLTOUTHandlerType handlerType, AliHLTComponentDataType dt, const char* module)
261 : fHType(handlerType), fDt(dt), fModule(module) {}
262
626bfcc1 263 AliHLTOUTHandlerDesc(const AliHLTOUTHandlerDesc& src)
264 : fHType(src.fHType), fDt(src.fDt), fModule(src.fModule) {}
265
266 const AliHLTOUTHandlerDesc& operator=(const AliHLTOUTHandlerDesc& src) {
b0914d2e 267 fHType=src.fHType; fDt=src.fDt; fModule=src.fModule; return *this;
626bfcc1 268 }
269
71af1abf 270 ~AliHLTOUTHandlerDesc() {}
164de2ba 271
44dc7683 272 bool operator==(const AliHLTOUTHandlerType handlerType) const {
273 return fHType==handlerType;
274 }
c5123824 275 operator AliHLTOUTHandlerType() {return fHType;}
276 operator AliHLTComponentDataType() {return fDt;}
44dc7683 277
164de2ba 278 private:
62bb3cd4 279 /** type of the handler */
13398559 280 AliHLTOUTHandlerType fHType; //!transient
62bb3cd4 281 /** data type treated by the handler */
13398559 282 AliHLTComponentDataType fDt; //!transient
62bb3cd4 283 /** class or chain name */
13398559 284 TString fModule; //!transient
62bb3cd4 285 };
286
c5123824 287 static const AliHLTOUTHandlerDesc fgkVoidHandlerDesc; //! initializer
288
62bb3cd4 289 /**
290 * Get handler description for a data block.
291 * @param dt [in] data type of the block
292 * @param spec [in] specification of the block
626bfcc1 293 * @param desc [out] handler description
62bb3cd4 294 * @return 1 if the agent can provide a handler, 0 if not
295 */
296 virtual int GetHandlerDescription(AliHLTComponentDataType dt,
297 AliHLTUInt32_t spec,
af2ed151 298 AliHLTOUTHandlerDesc& desc) const;
164de2ba 299
62bb3cd4 300 /**
301 * Get handler for a data block of the HLTOUT data.
164de2ba 302 * The agent can also provide an overloaded @ref DeleteOutputHandler
303 * function to implement customized clean up. It is also possible to
304 * return the same instance of a handler for different data blocks.<br>
305 *
306 * The framework first collects the handlers for all data blocks, and
307 * calls the @ref AliHLTOUTHandler::ProcessData method afterwords for
308 * each handler.
62bb3cd4 309 * @param dt [in] data type of the block
310 * @param spec [in] specification of the block
164de2ba 311 * @return pointer to handler
62bb3cd4 312 */
313 virtual AliHLTOUTHandler* GetOutputHandler(AliHLTComponentDataType dt,
164de2ba 314 AliHLTUInt32_t spec);
315
316 /**
317 * Delete an HLTOUT handler.
318 * Even if the agent returned the handler several times, this is the
319 * final cleanup. The framwork makes sure that the handler is not
320 * used any further outside the agent. The default implementation just
321 * deltetes the object.
322 * @param pInstance pointer to handler
323 */
324 virtual int DeleteOutputHandler(AliHLTOUTHandler* pInstance);
62bb3cd4 325
326 /**
327 * Get raw stream for a data block.
328 * @param dt [in] data type of the block
329 * @param spec [in] specification of the block
330 * @param pData [in] data control object
331 * @return Rawstream object, NULL if no Rawstream available for data type/spec
332 */
164de2ba 333 // this method is likely to be moved to a specific implementation
334 // of AliHLTOUTHandler
335// virtual AliRawStream* GetRawStream(AliHLTComponentDataType dt,
336// AliHLTUInt32_t spec,
337// const AliHLTOUT* pData);
62bb3cd4 338
12ec5482 339 /**
340 * Get the preprocessor for this component library.
341 * Create an instance of the preprocessor for this component library.
342 * The caller will delete it after useage.
343 * @return pointer to AliHLTModulePreprocessor object.
344 */
345 virtual AliHLTModulePreprocessor* GetPreprocessor();
346
90ebac25 347 /**
348 * Old method kept for backward compatibility, redirected to @ref
dee38f1b 349 * GetReconstructionChains.
90ebac25 350 */
351 const char* GetTopConfigurations(AliRunLoader* runloader=NULL) const {
dee38f1b 352 return GetReconstructionChains(NULL,runloader);
90ebac25 353 }
354
242bb794 355 protected:
356
357 private:
626bfcc1 358 /** standard constructor prohibited */
359 AliHLTModuleAgent();
dee38f1b 360 /** copy constructor prohibited */
361 AliHLTModuleAgent(const AliHLTModuleAgent&);
362 /** assignment operator prohibited */
363 AliHLTModuleAgent& operator=(const AliHLTModuleAgent&);
364
242bb794 365 /**
366 * Register agent in the global list.
367 * @return neg. error code if failed
368 */
369 static int Register(AliHLTModuleAgent* pAgent);
370
371 /**
372 * Unregister agent in the global list.
373 * @return neg. error code if failed
374 */
375 static int Unregister(AliHLTModuleAgent* pAgent);
376
377 /** the list of active agents */
13398559 378 static AliHLTModuleAgent* fgAnchor; //! transient
7617ca1e 379
380 /** next element in the list */
381 AliHLTModuleAgent* fpNext; //! transient
242bb794 382
383 /** the current object link (list position) */
13398559 384 static AliHLTModuleAgent* fgCurrent; //! transient
7617ca1e 385
386 /** number of agents */
13398559 387 static int fgCount; //! transient
242bb794 388
626bfcc1 389 /** instance of the active component handler */
f3506ea2 390 AliHLTComponentHandler* fpComponentHandler; //! transient
391
626bfcc1 392 /** id of the module */
393 TString fModuleId; //! transient
394
395 ClassDef(AliHLTModuleAgent, 3);
242bb794 396};
397
398#endif