]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/BASE/AliHLTSystem.h
Corrected documentation in READMEbase.txt
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTSystem.h
CommitLineData
30338a30 1//-*- Mode: C++ -*-
f23a6e1a 2// @(#) $Id$
3
4#ifndef ALIHLTSYSTEM_H
5#define ALIHLTSYSTEM_H
c5123824 6//* This file is property of and copyright by the ALICE HLT Project *
7//* ALICE Experiment at CERN, All rights reserved. *
8//* See cxx source for full Copyright notice *
f23a6e1a 9
b22e91eb 10/** @file AliHLTSystem.h
11 @author Matthias Richter
12 @date
13 @brief Global HLT module management and AliRoot integration.
14 @note The class is used in Offline (AliRoot) context
15*/
f23a6e1a 16
b22e91eb 17/**
18 * @defgroup alihlt_system HLT integration into AliRoot
19 * This section describes the HLT integration into AliRoot.
20 */
f23a6e1a 21
5ec8e281 22#include "AliHLTLogging.h"
23#include <TList.h>
c043fa2c 24#include <TString.h>
f23a6e1a 25
5ec8e281 26class AliHLTComponentHandler;
27class AliHLTConfiguration;
85465857 28class AliHLTConfigurationHandler;
5ec8e281 29class AliHLTTask;
c5123824 30class AliHLTOUT;
242bb794 31class AliRunLoader;
32class AliRawReader;
af885e0f 33class AliESDEvent;
90ebac25 34class TObjArray;
35class TStopwatch;
f23a6e1a 36
bfccbf68 37/**
38 * @class AliHLTSystem
39 * Main class for the HLT integration into AliRoot.
40 * The class handles a list of configurations. Configurations are translated
41 * into task lists which can be executed.
42 *
b22e91eb 43 * @note This class is only used for the @ref alihlt_system.
44 *
45 * @ingroup alihlt_system
bfccbf68 46 */
5ec8e281 47class AliHLTSystem : public AliHLTLogging {
48 public:
bfccbf68 49 /** default constructor */
f23a6e1a 50 AliHLTSystem();
bfccbf68 51 /** destructor */
f23a6e1a 52 virtual ~AliHLTSystem();
53
bfccbf68 54 /**
55 * Pointer to an instance of @ref AliHLTComponentHandler.
3b35e87c 56 */
70ed7d01 57 AliHLTComponentHandler* fpComponentHandler; //! transient
bfccbf68 58
59 /**
60 * Pointer to an instance of @ref AliHLTConfigurationHandler.
61 */
70ed7d01 62 AliHLTConfigurationHandler* fpConfigurationHandler; //! transient
f23a6e1a 63
bfccbf68 64 /**
65 * Add a configuration to the end of the list.
66 * @param pConf pointer to configuration to add
5ec8e281 67 */
68 int AddConfiguration(AliHLTConfiguration* pConf);
69
bfccbf68 70 /**
70ed7d01 71 * Insert a configuration to the end of the list after the specified
72 * configuration.
bfccbf68 73 * @param pConf pointer to configuration to insert
74 * @param pPrec pointer to configuration to insert the new one after
5ec8e281 75 */
76 int InsertConfiguration(AliHLTConfiguration* pConf, AliHLTConfiguration* pPrec);
77
bfccbf68 78 /**
79 * Remove a configuration from the list.
80 * @param pConf pointer to configuration to delete
5ec8e281 81 */
82 int DeleteConfiguration(AliHLTConfiguration* pConf);
83
bfccbf68 84 /**
a742f6f8 85 * Build a task list
3b35e87c 86 * This method is used to build the tasks from the 'master' configuration
87 * objects which are added to the HLT system handler. This is an iterative
88 * process since the task might depend upon other configurations. For each
89 * configuration object which has not yet been converted into a task, the
90 * method will be called iteratively. Finally, after building all tasks which
91 * the current one depends on have been created, the task is inserted to the
92 * list of tasks with the InsertTask method.
a742f6f8 93 * @param pConf configuration name/id
94 */
95 int BuildTaskList(const char* pConf);
96
97 /**
98 * Build task list from a configuration object.
99 * This method is kept for backward compatibility. Use the version
100 * with the configuration name.
bfccbf68 101 * @param pConf pointer to configuration to build the task list from
5ec8e281 102 */
103 int BuildTaskList(AliHLTConfiguration* pConf);
104
bfccbf68 105 /**
106 * Clean the list of tasks and delete all the task objects.
3b35e87c 107 */
5ec8e281 108 int CleanTaskList();
109
bfccbf68 110 /**
111 * Insert a task to the task list.
112 * The method first checks whether all dependencies are resolved (i.e. exist
70ed7d01 113 * already in the task list). During this iteration the cross links between
114 * the tasks are set as well. If all dependencies are resolved, the task is
115 * added at the end of the list.
bfccbf68 116 * @param pTask pointer to task to add
3b35e87c 117 */
5ec8e281 118 int InsertTask(AliHLTTask* pTask);
119
bfccbf68 120 /**
121 * Find a task with an id.
122 * @param id CONFIGURATION id (not a COMPONENT id!)
3b35e87c 123 */
5ec8e281 124 AliHLTTask* FindTask(const char* id);
125
bfccbf68 126 /**
127 * Print the task list.
3b35e87c 128 */
5ec8e281 129 void PrintTaskList();
130
53feaef5 131 /**
132 * Run the task list.
9ce4bf4a 133 * The method checks whether the task list has already been build. If not,
134 * or the configuration list has been changed, the @ref BuildTaskList
dee38f1b 135 * method is called. <br>
53feaef5 136 * All tasks of the list will be subsequently processed for each event.
dee38f1b 137 * The system can remain started if the \em bStop parameter is 0. In that
138 * case the system just waits for the next event. A specific call with
139 * nofEvents==0 is needed to execute the stop sequence.
53feaef5 140 * @param iNofEvents number of events
dee38f1b 141 * @param bStop stop the chain after processing
242bb794 142 * @return number of reconstructed events, neg error code if failed
53feaef5 143 */
dee38f1b 144 int Run(Int_t iNofEvents=1, int bStop=1);
53feaef5 145
9ce4bf4a 146 /**
147 * Init all tasks from the list.
148 * The @ref AliHLTTask::Init method is called for each task, the components
149 * will be created.
150 * @return neg error code if failed
151 */
152 int InitTasks();
153
90ebac25 154 /**
155 * Init the stopwatches for all tasks.
156 * @param pStopwatches object array of stopwatches, for types
157 * @see AliHLTComponent::AliHLTStopwatchType
158 * @return neg error code if failed
159 */
160 int InitBenchmarking(TObjArray* pStopwatches);
161
032c5e5e 162 /**
163 * Stop the stopwatches for all tasks.
164 * @param pStopwatches object array of stopwatches, for types
165 * @see AliHLTComponent::AliHLTStopwatchType
166 * @return neg error code if failed
167 */
168 int PauseBenchmarking(TObjArray* pStopwatches) const;
169
170 /**
171 * Continue the stopwatches for all tasks.
172 * @param pStopwatches object array of stopwatches, for types
173 * @see AliHLTComponent::AliHLTStopwatchType
174 * @return neg error code if failed
175 */
176 int ResumeBenchmarking(TObjArray* pStopwatches) const;
177
dee38f1b 178 /**
179 * Print benchmarking summary.
180 * Optionak: clean up stop watches.
181 * @param pStopwatches object array of stopwatches
182 * @param bClean delete stop watches if 1
183 * @return neg error code if failed
184 */
032c5e5e 185 int PrintBenchmarking(TObjArray* pStopwatches, int bClean=0) const;
dee38f1b 186
53feaef5 187 /**
188 * Start task list.
70ed7d01 189 * The @ref AliHLTTask::StartRun method is called for each task, the
190 * components will be prepared for event processing.
53feaef5 191 * @return neg error code if failed
192 */
193 int StartTasks();
194
195 /**
196 * Process task list.
197 * The @ref AliHLTTask::ProcessTask method is called for each task.
198 * @return neg error code if failed
199 */
200 int ProcessTasks(Int_t eventNo);
201
202 /**
203 * Stop task list.
204 * The @ref AliHLTTask::EndRun method is called for each task, the components
205 * will be cleaned after event processing.
206 * @return neg error code if failed
5ec8e281 207 */
53feaef5 208 int StopTasks();
5ec8e281 209
457ec821 210 /**
211 * Send a control event trough the chain.
212 * All data sources in the chain are switched to publish a control event like
213 * SOR or EOR. The event is propagated in the same way as a normal event.
214 * @param dt type of the event
215 */
216 int SendControlEvent(AliHLTComponentDataType dt);
217
9ce4bf4a 218 /**
219 * De-init all tasks from the list.
220 * The @ref AliHLTTask::Deinit method is called for each task, the components
221 * will be deleted.
222 * @return neg error code if failed
223 */
224 int DeinitTasks();
225
226 /**
227 * The memory allocation function for components.
228 * This function is part of the running environment of the components.
229 */
230 static void* AllocMemory( void* param, unsigned long size );
231
242bb794 232 /**
dee38f1b 233 * AliRoot embedded reconstruction.
234 * Main entry point to execute the HLT reconstruction from AliRoot. Called
235 * either by the AliHLTReconstructor plugin during AliRoot reconstruction
236 * of raw data, or AliHLTSimulation during simulation of data.
237 *
238 * The two cases are distinguished by the availablility of the run loader
239 * and raw reader.
240 * - AliRoot simulation: run loader is available and is propagated to the
241 * module agents (AliHLTModuleAgent) to generate the corresponding
242 * configurations and chains, and to the AliHLTOfflineSource components.
243 * - AliRoot reconstruction: raw reader is available and is propagated to
244 * the agents and AliHLTOfflineSource components.
245 *
246 * The system remains started after the processing and just waits for the
247 * next event. A specific call with nofEvents==0 is needed to execute the
248 * stop sequence.
249 *
242bb794 250 * The 'runLoader' and 'rawReader' parameters are set to all active
251 * AliHLTOfflineDataSource's and the HLT chain is processed for the given
252 * number of events. If the rawReader is NULL, reconstruction is done on
253 * simulated data, from real data if a RawReader is specified.
254 * @param nofEvents number of events
255 * @param runLoader the AliRoot runloader
256 * @param rawReader the AliRoot RawReader
257 * @return number of reconstructed events, neg. error code if failed
258 */
259 int Reconstruct(int nofEvents, AliRunLoader* runLoader,
260 AliRawReader* rawReader=NULL);
261
262 /**
263 * Fill ESD for one event.
264 * To be called by the AliHLTReconstructor plugin during the event loop
265 * and FillESD method of the AliRoot reconstruction.
c5123824 266 *
267 * The method is most likely deprecated as the scheme has been slightly
268 * changed. The ESD is filled by the HLTOUT handlers u=implemented by the
269 * HLT modules rather than by components within the reconstruction chain.
270 * Still, HLT reconstruction chains can be run during the AliRoot
271 * reconstruction, data produced by such chains is automatically added
272 * to the HLTOUT stream in order to be equivalent to the online HLT.
273 * The HLTOUT is processed during AliReconstruction at the end of the
274 * HLT event processing, literally during the FillESD method of the AliRoot
275 * reconstruction interface. The HLT module must implement HLTOUT handlers
276 * and provide those through the module agent.
277 *
242bb794 278 * This method is called on event basis, and thus must copy the previously
279 * reconstructed data of the event from the 'ESD' recorder. The FillESD
280 * method of all active AliHLTOfflineDataSink's is called.
281 * @param eventNo current event no (Note: this event number is just a
282 * processing counter and is not related to the nature/
283 * origin of the event
284 * @param runLoader the AliRoot runloader
af885e0f 285 * @param esd an AliESDEvent instance
242bb794 286 * @return neg. error code if failed
287 */
af885e0f 288 int FillESD(int eventNo, AliRunLoader* runLoader, AliESDEvent* esd);
242bb794 289
c5123824 290 /**
291 * Process the HLTOUT data.
292 */
293 int ProcessHLTOUT(AliHLTOUT* pHLTOUT, AliESDEvent* esd);
294
242bb794 295 /**
296 * Load component libraries.
297 * @param libs string of blank separated library names
298 * @return neg. error code if failed
299 */
300 int LoadComponentLibraries(const char* libs);
301
85f0cede 302 /**
303 * Find a symbol in a dynamically loaded library.
304 * @param library library
305 * @param symbol the symbol to find
306 * @return void pointer to function
307 */
308 void* FindDynamicSymbol(const char* library, const char* symbol);
309
242bb794 310 /**
311 * Prepare the HLT system for running.
312 * - module agents are requested to register configurations
313 * - task lists are built from the top configurations of the modules
c043fa2c 314 *
dee38f1b 315 * @param rawReader instance of the raw reader or NULL
c043fa2c 316 * @param runloader optional instance of the run loader
242bb794 317 * @return neg. error code if failed <br>
318 * -EBUSY system is in kRunning state <br>
319 */
dee38f1b 320 int Configure(AliRawReader* rawReader, AliRunLoader* runloader=NULL);
242bb794 321
dee38f1b 322 /**
323 * Old method kept for backward compatibilty.
324 *
325 * @param runloader optional instance of the run loader
326 * @return neg. error code if failed <br>
327 * -EBUSY system is in kRunning state <br>
328 */
329 int Configure(AliRunLoader* runloader=NULL);
c043fa2c 330
331 /**
332 * Scan options.
333 * Known options
334 * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formating -->
335 * \li loglevel=<i>level</i> <br>
336 * logging level for this processing
dba03d72 337 * \li frameworklog=<i>level</i> <br>
338 * logging level for framework classes
c043fa2c 339 * \li alilog=off
340 * disable redirection of log messages to AliLog class
341 * \li config=<i>macro</i>
342 * configuration macro
dee38f1b 343 * \li chains=<i>configuration</i>
c043fa2c 344 * comma separated list of configurations to be run during local
345 * reconstruction
dba03d72 346 * \li libmode=<i>static,dynamic(default)</i>
347 * libraries are persistent if loaded in mode <i>static</i>, i.e. they
348 * can't be unloaded
c043fa2c 349 */
350 int ScanOptions(const char* options);
351
242bb794 352 /**
353 * Reset the HLT system.
354 * Reset is not possible while the system is in running state.
355 * @param bForce force the reset
356 * @return neg. error code if failed <br>
357 * -EBUSY system is in kRunning state <br>
358 */
359 int Reset(int bForce=0);
360
361 /**
362 * Load the configurations specified by the module agents.
363 * The runLoader is passed to the agent and allows configuration
364 * selection.
dee38f1b 365 * @param rawReader instance of the raw reader or NULL
366 * @param runloader optional instance of the run loader
242bb794 367 * @return neg. error code if failed
368 */
dee38f1b 369 int LoadConfigurations(AliRawReader* rawReader, AliRunLoader* runloader=NULL);
242bb794 370
371 /**
372 * Get the top configurations of all agents and build the task lists.
dee38f1b 373 * @param rawReader instance of the raw reader or NULL
374 * @param runloader optional instance of the run loader
242bb794 375 * @return neg. error code if failed
376 */
f3506ea2 377 int BuildTaskListsFromReconstructionChains(AliRawReader* rawReader,
378 AliRunLoader* runloader=NULL);
242bb794 379
6a8e0bb4 380 enum AliHLTSystemState {
242bb794 381 kUninitialized = 0x0,
382 kLibrariesLoaded = 0x1,
383 kConfigurationLoaded = 0x2,
384 kTaskListCreated = 0x4,
385 kReady = 0x7,
dee38f1b 386 kStarted = 0x8,
387 kRunning = 0x10,
242bb794 388 kError = 0x1000
9253e11b 389 };
242bb794 390
391 /**
392 * Check status of the system.
6a8e0bb4 393 * @param flag AliHLTSystemState value to check for
242bb794 394 * @return 1 if set, 0 if not
395 */
396 int CheckStatus(int flag);
397
398 /**
399 * Get the current status.
6a8e0bb4 400 * @return status flags of @ref AliHLTSystemState
242bb794 401 */
402 int GetStatusFlags();
403
e642a402 404 /**
405 * Set logging level for framework classes.
406 * This sets the local logging level of this instance and all subsequent
407 * framework classes to \em level.
408 * @param level local logging level for the framework classes
409 */
410 void SetFrameworkLog(AliHLTComponentLogSeverity level);
411
5ec8e281 412 protected:
5ec8e281 413
414 private:
c043fa2c 415 /** copy constructor prohibited */
416 AliHLTSystem(const AliHLTSystem&);
417 /** assignment operator prohibited */
418 AliHLTSystem& operator=(const AliHLTSystem&);
419
242bb794 420 /**
421 * Set status flags.
422 */
423 int SetStatusFlags(int flags);
424
425 /**
426 * clear status flags.
427 */
428 int ClearStatusFlags(int flags);
429
85869391 430/* TList fConfList; */
431/* int fbListChanged; */
5ec8e281 432
242bb794 433 /** list of tasks */
70ed7d01 434 TList fTaskList; // see above
f23a6e1a 435
fc455fba 436 /** the number of instances of AliHLTSystem */
437 static int fgNofInstances; // see above
438
242bb794 439 /** state of the object */
440 int fState; // see above
441
dee38f1b 442 /** chains to be run during reconstruction */
443 TString fChains; //!transient
444
6a8e0bb4 445 /** array of stopwatches */
dee38f1b 446 TObjArray* fStopwatches; //!transient
447
6a8e0bb4 448 /** number of events processed in total */
dee38f1b 449 int fEventCount; //!transient
450
6a8e0bb4 451 /** number of events processed successfully */
dee38f1b 452 int fGoodEvents; //!transient
c043fa2c 453
675cb68b 454 /** switch whether to write to the global hltesd or not
455 * since this causes a crash outside the HLT code this
456 * can be enabled by the 'globalesd' argument
457 */
458 bool bWriteGlobalEsd; //!transient
459
6a8e0bb4 460 /** array of default libraries */
461 static const char* fgkHLTDefaultLibs[]; //!transient
462
675cb68b 463 ClassDef(AliHLTSystem, 6);
f23a6e1a 464};
f23a6e1a 465
c043fa2c 466#endif