]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/BASE/AliHLTSystem.h
Move cluster sorting from CA tracker component inside CA tracker and pipeline with...
[u/mrichter/AliRoot.git] / HLT / BASE / AliHLTSystem.h
index 5feeae69e1c68dcd058cc6cb3b96cbffe1981ae6..f25c687ede49354eec08884023d0db71b6489536 100644 (file)
@@ -1,5 +1,5 @@
 //-*- Mode: C++ -*-
-// @(#) $Id$
+// $Id$
 
 #ifndef ALIHLTSYSTEM_H
 #define ALIHLTSYSTEM_H
@@ -7,12 +7,12 @@
 //* ALICE Experiment at CERN, All rights reserved.                         *
 //* See cxx source for full Copyright notice                               *
 
-/** @file   AliHLTSystem.h
-    @author Matthias Richter
-    @date   
-    @brief  Global HLT module management and AliRoot integration.
-    @note   The class is used in Offline (AliRoot) context
-*/
+/ @file   AliHLTSystem.h
+//  @author Matthias Richter
+//  @date   2007
+//  @brief  Global HLT module management and AliRoot integration.
+//  @note   The class is used in Offline (AliRoot) context
+// 
 
 /**
  * @defgroup alihlt_system HLT integration into AliRoot
@@ -25,9 +25,9 @@
  * - AliRoot simulation (AliSimulation)
  * - AliRoot reconstruction (AliReconstruction)
  *
- * The foundation of the off-line applications is a HLT chain described 
- * by the means of AliHLTConfiguration. Special components exist, which 
- * emulate the behavoir of the components of the HLT on-line data 
+ * In either case an HLT chain described by means of AliHLTConfiguration
+ * builds the core of any HLT application. Special components exist, which 
+ * emulate the behavior of the components of the HLT on-line data 
  * transportation framework. Together with the analysis components, this 
  * allows the full emulation of the behavoir of HLT analysis chain off-line.
  *
@@ -93,71 +93,70 @@ class TStopwatch;
 /**
  * @class AliHLTSystem
  * Main class for the HLT integration into AliRoot.
- * The class handles a list of configurations. Configurations are translated
- * into task lists which can be executed. 
- *
  * @note This class is only used for the @ref alihlt_system.
  *
+ * @section alihltsystem_overview Main functionality
+ * The class implements the main binding functionality to run HLT
+ * embedded in AliRoot:
+ * - creates handlers for HLT components (AliHLTComponentHandler)
+ * and configurations (AliHLTConfigurationHandler).
+ * - implements the creation of a task list from configurations
+ * - runs the tasks of the task list
+ * - implements the interface to AliHLTReconstructor and AliHLTSimulation
+ * - manages the registered module agents (AliHLTModuleAgent) 
+ *
+ * @section alihltsystem_functions Main functions
+ * The following list gives the most important functions, see documentation
+ * of functions for details.
+ * - ScanOptions(const char*) initialize the system from arguments
+ * - BuildTaskList(const char*) build task list for a reconstruction chain
+ * - Run() processing loop for task list
+ * - Reconstruct() interface to AliHLTReconstructor
+ * - ProcessHLTOUT() process an HLTOUT colection
+ *
+ * @section alihltsystem_initialization Initialization
+ * AliHLTSystem is initialized with a list of component libraries which determine
+ * the actual functionality. See ScanOptions() for description of options.
+ *
+ * @section alihltsystem_usage Usage
+ * The class AliHLTPluginBase handles the global instance of AliHLTSystem,
+ * the instance is created and fetched like 
+ * <pre>
+ * // setup the HLT system
+ * AliHLTSystem* pHLT=AliHLTPluginBase::GetInstance();
+ * </pre>
+ *
  * @ingroup alihlt_system
  */
 class AliHLTSystem : public AliHLTLogging {
  public:
   /** default constructor */
-  AliHLTSystem(AliHLTComponentLogSeverity loglevel=kHLTLogDefault, const char* name="");
+  AliHLTSystem(AliHLTComponentLogSeverity loglevel=kHLTLogDefault,
+              const char* name="",
+              AliHLTComponentHandler* pCompHandler=NULL,
+              AliHLTConfigurationHandler* pConfHandler=NULL
+              );
   /** destructor */
   virtual ~AliHLTSystem();
 
-  /**
-   * Pointer to an instance of @ref AliHLTComponentHandler.
-   */
-  AliHLTComponentHandler* fpComponentHandler;                      //! transient
-
-  /**
-   * Pointer to an instance of @ref AliHLTConfigurationHandler.
-   */
-  AliHLTConfigurationHandler* fpConfigurationHandler;              //! transient
-
-  /**
-   * Add a configuration to the end of the list.
-   * @param pConf    pointer to configuration to add
-   */
-  int AddConfiguration(AliHLTConfiguration* pConf);
-
-  /**
-   * Insert a configuration to the end of the list after the specified
-   * configuration.
-   * @param pConf    pointer to configuration to insert
-   * @param pPrec    pointer to configuration to insert the new one after
-   */
-  int InsertConfiguration(AliHLTConfiguration* pConf, AliHLTConfiguration* pPrec);
-
-  /**
-   * Remove a configuration from the list.
-   * @param pConf    pointer to configuration to delete
-   */
-  int DeleteConfiguration(AliHLTConfiguration* pConf);
-
   /**
    * Build a task list 
-   * This method is used to build the tasks from the 'master' configuration
-   * objects which are added to the HLT system handler. This is an iterative
-   * process since the task might depend upon other configurations. For each
-   * configuration object which has not yet been converted into a task, the
-   * method will be called iteratively. Finally, after building all tasks which
-   * the current one depends on have been created, the task is inserted to the
-   * list of tasks with the InsertTask method.
+   * This method is used to build the list of tasks from the configuration
+   * id of a single 'master' configuration.
+   *
+   * Configuration entries might depend upon other configurations. For each
+   * configuration which has not yet been converted into an AliHLTTask, the
+   * method will be called iteratively. Finally, after building all tasks
+   * providing the input for the current one, the task is inserted to the
+   * list of tasks with the InsertTask() method.
+   *
+   * The function can be called multiple times in order to add more than one
+   * chain to the system.
+   *
    * @param pConf    configuration name/id
    */
   int BuildTaskList(const char* pConf);
 
-  /**
-   * Build task list from a configuration object.
-   * This method is kept for backward compatibility. Use the version
-   * with the configuration name.
-   * @param pConf    pointer to configuration to build the task list from
-   */
-  int BuildTaskList(AliHLTConfiguration* pConf);
-
   /**
    * Clean the list of tasks and delete all the task objects.
    */
@@ -183,6 +182,8 @@ class AliHLTSystem : public AliHLTLogging {
   int AddHLTOUTTask(const char* chains);
 
   AliHLTOUTTask* GetHLTOUTTask() const {return fpHLTOUTTask;}
+  AliHLTComponentHandler* GetComponentHandler() const {return fpComponentHandler;}
+  AliHLTConfigurationHandler* GetConfigurationHandler() const {return fpConfigurationHandler;}
 
   /**
    * Find a task with an id.
@@ -196,19 +197,35 @@ class AliHLTSystem : public AliHLTLogging {
   void PrintTaskList();
 
   /**
-   * Run the task list.
-   * The method checks whether the task list has already been build. If not,
-   * or the configuration list has been changed, the @ref BuildTaskList
-   * method is called.                                                    <br>
+   * Run one or more events.
+   * Core of the processing loop. The method expects the task list to be
+   * already created by a previous call to BuildTaskList(const char*)
+   *
    * All tasks of the list will be subsequently processed for each event.
    * The system can remain started if the \em bStop parameter is 0. In that
    * case the system just waits for the next event. A specific call with
    * nofEvents==0 is needed to execute the stop sequence.
    * @param iNofEvents number of events
    * @param bStop      stop the chain after processing
+   * @param trgMask    ctp trigger mask from the rawreader
+   * @param timestamp  timestamp of the event, read from the rawreader
+   * @param eventtype  event type, read from the rawreader
+   * @param participatingDetectors  the bit flags of the participating detectors
+   *           as will we inserted into the Common Data Header. This should only
+   *           be used for software event types.
    * @return number of reconstructed events, neg error code if failed
    */
-  int Run(Int_t iNofEvents=1, int bStop=1);
+  int Run(Int_t iNofEvents, int bStop, AliHLTUInt64_t trgMask,
+         AliHLTUInt32_t timestamp, AliHLTUInt32_t eventtype,
+         AliHLTUInt32_t participatingDetectors = 0);
+
+  /**
+   * Run the tasklist
+   * Somehow the 64bit variable/default value did not work out on mac.
+   * Re-introducing the original function, and forwarding it.
+   */
+  int Run(Int_t iNofEvents=1, int bStop=1)
+  {return Run(iNofEvents, bStop, 0, 0, 0);}
 
   /**
    * Init all tasks from the list.
@@ -264,7 +281,9 @@ class AliHLTSystem : public AliHLTLogging {
    * The @ref AliHLTTask::ProcessTask method is called for each task.
    * @return neg error code if failed
    */
-  int ProcessTasks(Int_t eventNo);
+  int ProcessTasks(Int_t eventNo, AliHLTUInt64_t trgMask,
+                  AliHLTUInt32_t timestamp, AliHLTUInt32_t eventtype,
+                  AliHLTUInt32_t participatingDetectors = 0);
 
   /**
    * Stop task list.
@@ -292,39 +311,55 @@ class AliHLTSystem : public AliHLTLogging {
 
   /**
    * Cleanup all internal objects from HLTOUT processing.
+   * Go through the list of HLTOUT handlers and release them.
    */
-  int CleanHLTOUT();
+  int CleanupHLTOUTHandlers();
 
   /**
    * The memory allocation function for components.
-   * This function is part of the running environment of the components.
+   * This function is part of the running environment of the components, 
+   * see AliHLTAnalysisEnvironment
    */
   static void* AllocMemory( void* param, unsigned long size );
 
+  /**
+   * The allocation function for component EventDoneData.
+   * This function is part of the running environment of the components,
+   * see AliHLTAnalysisEnvironment
+   */
+  static int AllocEventDoneData( void* param, AliHLTEventID_t eventID, unsigned long size, AliHLTComponentEventDoneData** edd );
+
   /**
    * AliRoot embedded reconstruction.
    * Main entry point to execute the HLT reconstruction from AliRoot. Called
    * either by the AliHLTReconstructor plugin during AliRoot reconstruction
    * of raw data, or AliHLTSimulation during simulation of data.
    *
-   * The two cases are distinguished by the availablility of the run loader
+   * The two cases are distinguished by the availablility of the AliRunLoader
    * and raw reader.
-   * - AliRoot simulation: run loader is available and is propagated to the
+   * - AliRoot simulation: AliRunLoader is available and is propagated to the
    *   module agents (AliHLTModuleAgent) to generate the corresponding
    *   configurations and chains, and to the AliHLTOfflineSource components.
+   *   raw reader might be available depending on whether raw data was
+   *   simulated or not.
    * - AliRoot reconstruction: raw reader is available and is propagated to
-   *   the agents and AliHLTOfflineSource components.
+   *   the agents and AliHLTOfflineSource components. AliRunLoader is always
+   *   NULL.
    *
    * The system remains started after the processing and just waits for the
    * next event. A specific call with nofEvents==0 is needed to execute the
    * stop sequence.
    *
-   * The 'runLoader' and 'rawReader' parameters are set to all active
+   * The 'runLoader' and 'rawReader' parameters are propagated to all active
    * AliHLTOfflineDataSource's and the HLT chain is processed for the given
    * number of events. If the rawReader is NULL, reconstruction is done on
    * simulated data, from real data if a RawReader is specified.
+   *
+   * After setting up the system with the reconstruction parameters the
+   * Run() method is called and carries out the processing of the chain.
+   *
    * @param nofEvents     number of events
-   * @param runLoader     the AliRoot runloader
+   * @param runLoader     the AliRoot RunLoader
    * @param rawReader     the AliRoot RawReader
    * @return number of reconstructed events, neg. error code if failed 
    */
@@ -337,7 +372,7 @@ class AliHLTSystem : public AliHLTLogging {
    * and FillESD method of the AliRoot reconstruction.
    *
    * The method is most likely deprecated as the scheme has been slightly
-   * changed. The ESD is filled by the HLTOUT handlers u=implemented by the
+   * changed. The ESD is filled by the HLTOUT handlers implemented by the
    * HLT modules rather than by components within the reconstruction chain.
    * Still, HLT reconstruction chains can be run during the AliRoot
    * reconstruction, data produced by such chains is automatically added
@@ -347,9 +382,6 @@ class AliHLTSystem : public AliHLTLogging {
    * reconstruction interface. The HLT module must implement HLTOUT handlers
    * and provide those through the module agent.
    *
-   * This method is called on event basis, and thus must copy the previously
-   * reconstructed data of the event from the 'ESD' recorder. The FillESD
-   * method of all active AliHLTOfflineDataSink's is called.
    * @param eventNo       current event no (Note: this event number is just a
    *                      processing counter and is not related to the nature/
    *                      origin of the event
@@ -359,15 +391,51 @@ class AliHLTSystem : public AliHLTLogging {
    */
   int FillESD(int eventNo, AliRunLoader* runLoader, AliESDEvent* esd);
 
+  /**
+   * Init the HLTOUT instance for the current event.
+   * The instance can be used by other classes to get hold on the data
+   * from HLTOUT.
+   * @param  instance     instance to be set as the active HLTOUT
+   * @return -EBUSY other active instance already existing
+   */
+  int InitHLTOUT(AliHLTOUT* instance);
+
+  /**
+   * Invalidate the HLTOUT instance.
+   * @param  instance     target variable for the instance
+   * @return -EBUSY if instance in use
+   */
+  int InvalidateHLTOUT(AliHLTOUT** instance=NULL);
+
+  /**
+   * Get the HLTOUT instance.
+   * User method for processing classes. To be released after use.
+   * @return pointer to HLTOUT instance
+   */
+  AliHLTOUT* RequestHLTOUT();
+
+  /**
+   * Release the HLTOUT instance after use.
+   * @param instance      pointer to instance to be released
+   * @return -ENOENT if instance does not match
+   */
+  int ReleaseHLTOUT(const AliHLTOUT* instance);
+
   /**
    * Process the HLTOUT data.
+   * The provided instance of AliHLTOUT provides the access to the data.
+   * AliHLTSystem queries all registered module agents (AliHLTModuleAgent)
+   * for the ability to treat a specific data block. As the last step the
+   * ESD object is filled. Please note that the provided ESD is the hltEsd
+   * in case of AliReconstructor (switched in AliReconstruction).
    */
   int ProcessHLTOUT(AliHLTOUT* pHLTOUT, AliESDEvent* esd);
 
   /**
    * Process all kChain-type data blocks of the HLTOUT data.
-   * The function is involed from ProcessHLTOUT as the first step in
-   * the processing.
+   * Handlers of type AliHLTModuleAgent::kChain are executed as the first
+   * step of the processing. The function is invoked from ProcessHLTOUT(),
+   * eventual output of the chain is added to the HLTOUT collection.
    */
   int ProcessHLTOUTkChain(AliHLTOUT* pHLTOUT);
 
@@ -384,15 +452,15 @@ class AliHLTSystem : public AliHLTLogging {
    * @param symbol       the symbol to find
    * @return void pointer to function
    */
-  void* FindDynamicSymbol(const char* library, const char* symbol);
+  AliHLTfctVoid FindDynamicSymbol(const char* library, const char* symbol);
 
   /**
    * Prepare the HLT system for running.
    * - module agents are requested to register configurations
-   * - task lists are built from the top configurations of the modules
+   * - task lists are built from the reconstruction chains of the modules
    *
    * @param rawReader    instance of the raw reader or NULL
-   * @param runloader    optional instance of the run loader
+   * @param runloader    optional instance of the AliRunLoader
    * @return neg. error code if failed <br>
    *         -EBUSY      system is in kRunning state <br>
    */
@@ -401,7 +469,7 @@ class AliHLTSystem : public AliHLTLogging {
   /**
    * Old method kept for backward compatibilty.
    *
-   * @param runloader    optional instance of the run loader
+   * @param runloader    optional instance of the AliRunLoader
    * @return neg. error code if failed <br>
    *         -EBUSY      system is in kRunning state <br>
    */
@@ -410,7 +478,9 @@ class AliHLTSystem : public AliHLTLogging {
   /**
    * Scan options and load component libraries.
    * The options consist of blank separated tokens. Libraries can be just
-   * specified by their name. Further options
+   * specified by their name, and can be excluded by adding a '!'-mark in
+   * front. <br>
+   * Further options
    * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
    * \li loglevel=<i>level</i> <br>
    *     logging level for this processing
@@ -442,16 +512,22 @@ class AliHLTSystem : public AliHLTLogging {
    * Load the configurations specified by the module agents.
    * The runLoader is passed to the agent and allows configuration
    * selection.
+   * - AliSimulation: runloader valid, raw reader might be valid
+   * - AliReconstruction: runloader always NULL, raw reader valid
+   *
    * @param rawReader    instance of the raw reader or NULL
-   * @param runloader    optional instance of the run loader
+   * @param runloader    optional instance of the AliRunLoader
    * @return neg. error code if failed 
    */
   int LoadConfigurations(AliRawReader* rawReader, AliRunLoader* runloader=NULL);
 
   /**
-   * Get the top configurations of all agents and build the task lists.
+   * Get the reconstruction chains from all agents and build the task lists.
+   * AliHLTModuleAgent implementations can define reconstruction chains
+   * depending on the availibility of AliRunLoader and AliRawReader parameters.
+   *
    * @param rawReader    instance of the raw reader or NULL
-   * @param runloader    optional instance of the run loader
+   * @param runloader    optional instance of the AliRunLoader
    * @return neg. error code if failed 
    */
   int BuildTaskListsFromReconstructionChains(AliRawReader* rawReader, 
@@ -489,6 +565,15 @@ class AliHLTSystem : public AliHLTLogging {
    */
   void SetFrameworkLog(AliHLTComponentLogSeverity level);
 
+  /**
+   * Customized logging function.
+   * The name of the system and pointer is added at the beginning of each
+   * message if name was set.
+   */
+  int LoggingVarargs(AliHLTComponentLogSeverity severity, 
+                    const char* originClass, const char* originFunc,
+                    const char* file, int line, ... ) const;
+
  protected:
  
  private:
@@ -497,6 +582,16 @@ class AliHLTSystem : public AliHLTLogging {
   /** assignment operator prohibited */
   AliHLTSystem& operator=(const AliHLTSystem&);
 
+  /**
+   * Build task list from a configuration object. 
+   * This method implements the configuration parsing and transformation into
+   * a list of AliHLTTask objects. It has been made private in April 2007. 
+   * Use BuildTaskList(const char*) instead.
+   *
+   * @param pConf    pointer to configuration to build the task list from
+   */
+  int BuildTaskList(AliHLTConfiguration* pConf);
+
   /**
    * Set status flags.
    */
@@ -507,8 +602,11 @@ class AliHLTSystem : public AliHLTLogging {
    */
   int ClearStatusFlags(int flags);
 
-/*   TList fConfList; */
-/*   int fbListChanged; */
+  /// Pointer to an instance of @ref AliHLTComponentHandler.
+  AliHLTComponentHandler* fpComponentHandler;                      //! transient
+
+  /// Pointer to an instance of @ref AliHLTConfigurationHandler.
+  AliHLTConfigurationHandler* fpConfigurationHandler;              //! transient
 
   /** list of tasks */
   TList fTaskList;                                                 // see above
@@ -546,13 +644,25 @@ class AliHLTSystem : public AliHLTLogging {
   /** active HLTOUT task for the reconstruction */
   AliHLTOUTTask* fpHLTOUTTask;                                     //!transient
 
+  /** HLTOUT instance for the current event */
+  AliHLTOUT* fpHLTOUT;                                            //!transient
+
+  /** HLTOUT use counter */
+  int fHLTOUTUse;                                                  //!transient
+
   /** special task to publish the control events */
   AliHLTControlTask* fpControlTask;                                //!transient
 
   /** name of this system instance */
   TString fName;                                                   //!transient
 
-  ClassDef(AliHLTSystem, 12);
+  /// ECS parameter string
+  TString fECSParams;                                              //!transient
+
+  /// indicate the argument 'hltout-type'
+  bool fUseHLTOUTComponentTypeGlobal;                              //!transient
+
+  ClassDef(AliHLTSystem, 0);
 };
 
 #endif