]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/trigger/AliHLTGlobalTriggerComponent.h
Updated macros for PHOS alignment calculation
[u/mrichter/AliRoot.git] / HLT / trigger / AliHLTGlobalTriggerComponent.h
index 11a36d9be72bfae83951a3ba5300c6311725f955..a4a138a5167bf6ffc79ba8d1c9194065b8c9692f 100644 (file)
@@ -1,3 +1,5 @@
+//-*- Mode: C++ -*-
+// $Id$
 #ifndef ALIHLTGLOBALTRIGGERCOMPONENT_H
 #define ALIHLTGLOBALTRIGGERCOMPONENT_H
 /* This file is property of and copyright by the ALICE HLT Project        *
@@ -10,6 +12,9 @@
 /// @brief  Declaration of the AliHLTGlobalTriggerComponent component class.
 
 #include "AliHLTTrigger.h"
+#include "AliHLTTriggerDecision.h"
+#include "TClonesArray.h"
+#include "AliHLTCDHWrapper.h"
 
 class AliHLTTriggerMenu;
 class AliHLTGlobalTrigger;
@@ -19,7 +24,99 @@ class AliHLTGlobalTrigger;
  * This class applies the global HLT trigger to all trigger information produced
  * by components deriving from AliHLTTrigger.
  * Any information delivered by other components in data blocks that contain
- * TObjects can also be used for the trigger algorithm.
+ * TObjects can also be used for the trigger algorithm. In such cases a symbol
+ * needs to be defined in the global trigger menu which can then be used inside
+ * the trigger condition expressions.
+ *
+ * <h2>General properties:</h2>
+ *
+ * Component ID: \b HLTGlobalTrigger <br>
+ * Library: \b libAliHLTTrigger.so   <br>
+ * Input Data Types: ::kAliHLTAnyDataType <br>
+ * Output Data Types: kAliHLTDataTypeGlobalTrigger and kAliHLTDataTypeReadoutList <br>
+ *
+ * <h2>Mandatory arguments:</h2>
+ * None.
+ *
+ * <h2>Optional arguments:</h2>
+ * <!-- NOTE: ignore the \li. <i> and </i>: it's just doxygen formatting -->
+ * \li -config <i>filename</i> <br>
+ *      Indicates the configuration macro file to use for the global HLT trigger menu.
+ * \li -includepath <i>path</i> <br>
+ *      Indicates the include path to use if the automatically generated code that
+ *      implements the global HLT trigger requires non-standard includes.
+ * \li -include <i>filename</i> <br>
+ *      Indicates a file name that should be included in the automatically generated
+ *      trigger implementation code.
+ * \li -debug <br>
+ *      If specified the automatically generated class will contain extra debugging
+ *      code and the ACLiC system will have debugging compilation turned on.
+ * \li -cint <br>
+ *      Use CINT to interprete the generated global trigger instead of compiling it.
+ *      This will also be the case if no compiler is available.
+ * \li -usecode <i>filename</i> <i>classname</i> <br>
+ *      Used to force the component to use an existing class for the global HLT trigger
+ *      class implementation, with the name of <i>classname</i> and found in the file
+ *      <i>filename</i>.
+ * \li -skipctp <br>
+ *      Indicates that the CTP data should not be added to the global HLT trigger decision.
+ * \li -forward-input <br>
+ *      Forward the input objects instead of adding them to the global HLT trigger decision.
+ *      This will also add a short info on the input objects and decisions, like
+ *      -include-input=short, to switch off -include-input=none can be placed after the
+ *      parameter
+ * \li -include-input[=none,short,objects,both] <br>
+ *      Steer adding of input objects to the global HLT trigger decision.
+ *      Options: none - include nothing, short - include a short TNames array,
+ *               objects - include objects, by default on
+ *               both - include both objects and short info
+ * \li -process-all-events <br>
+ *      Indicates that all events should be processed with the global trigger logic and
+ *      not just the data events. The default is not to process just the data events.
+ * \li -monitoring[=n] <br>
+ *      enable monitoring trigger once every n seconds, enable for every event if
+ *      parameter n is omitted
+ * \li -dont-make-software-triggers <br>
+ *      This option prevents the Common Data Header from being interpreted to generate
+ *      software event input triggers for the trigger menu. Normally the following default
+ *      triggers are available in the trigger menu:
+ *        START_OF_DATA - start of data event.
+ *        END_OF_DATA - end of data event.
+ *        SOFTWARE - general software trigger.
+ *        CALIBRATION - calibration trigger.
+ *      With this option these will not be automatically generated by the global trigger.
+ * \li -randomseed <i>number</i> <br>
+ *      Specifies the random number seed to give to the internal random number generator.
+ *      This is only useful for debugging to generate reproducible number sequences.
+ *      The random numbers are only used if a trigger is scaled down using the scale down
+ *      option in a trigger menu item. The seed is normally randomly chosen by default.
+ *
+ * <h2>Configuration:</h2>
+ * Configured from CDB but can be overridden with the -config argument.
+ *
+ * <h2>Default CDB entries:</h2>
+ * HLT/ConfigHLT/HLTGlobalTrigger - Contains the global trigger menu.
+ *
+ * <h2>Performance:</h2>
+ * This is a linear function of the number of input triggers (AliHLTTrigger) that
+ * need to be processed.
+ * For a modest trigger menu configurations the processing time per event should
+ * be on the order of a few milliseconds.
+ *
+ * <h2>Memory consumption:</h2>
+ * Memory consumption is minimal. It should be on the order of 2 or 3 MBytes.
+ *
+ * <h2>Output size:</h2>
+ * This will depend almost linearly on the number of intput triggers and summary
+ * data objects used. Thus, for every trigger (AliHLTTrigger object) specified
+ * in the trigger menu the output size will require about 1 kBytes.
+ * Then for every summary data object (i.e. TObject symbol defined in the trigger
+ * menu configuration) one will need an extra few kBytes, depending on the size
+ * of the summary objects.
+ * In total one would expect no more than a MByte output size for a large trigger
+ * configuration and typically only a few kBytes for a small or optimised one.
+ *
+ * \ingroup alihlt_trigger_components
  */
 class AliHLTGlobalTriggerComponent : public AliHLTTrigger
 {
@@ -33,14 +130,20 @@ class AliHLTGlobalTriggerComponent : public AliHLTTrigger
    * @return string containing the global trigger name.
    */
   virtual const char* GetTriggerName() const { return "HLTGlobalTrigger"; };
+
+  /**
+   * Inherited from AliHLTTrigger.
+   * This returns kAliHLTDataTypeGlobalTrigger by default.
+   * @param [out] list The list of data types to be filled.
+   */
+  virtual void GetOutputDataTypes(AliHLTComponentDataTypeList& list) const;
   
   /**
    * Get a ratio by how much the data volume is shrunk or enhanced.
    * The method returns a size proportional to the trigger name string length
    * for constBase, and 1 for inputMultiplier.
-   * @param constBase        <i>[out]</i>: additive part, independent of the
-   *                                   input data volume  
-   * @param inputMultiplier  <i>[out]</i>: multiplication ratio
+   * @param [out] constBase        Additive part, independent of the input data volume.
+   * @param [out] inputMultiplier  Multiplication ratio.
    */
   virtual void GetOutputDataSize(unsigned long& constBase, double& inputMultiplier);
   
@@ -64,12 +167,22 @@ class AliHLTGlobalTriggerComponent : public AliHLTTrigger
    */
   virtual AliHLTComponent* Spawn();
 
- protected:
+  enum StatusBits {
+    kForwardInput       = BIT(14),  // forward input objects instead of adding them to the decision object
+    kIncludeInput       = BIT(15),  // include input objects in the decision object
+    kIncludeShort       = BIT(16),  // include short description of input objects: name, title, decision
+    kSkipCTP            = BIT(17),  // skip CTP data object in the decision object
+  };
 
-  /// Not implemented. Do not allow copying of this object.
-  AliHLTGlobalTriggerComponent(const AliHLTGlobalTriggerComponent& obj);
-  /// Not implemented. Do not allow copying of this object.
-  AliHLTGlobalTriggerComponent& operator = (const AliHLTGlobalTriggerComponent& obj);
+  void   SetBit(AliHLTUInt32_t f, bool set) {
+    if (set) SetBit(f);
+    else ResetBit(f);
+  }
+  void   SetBit(AliHLTUInt32_t f) { fBits |= f; }
+  void   ResetBit(AliHLTUInt32_t f) { fBits &= ~f; }
+  bool   TestBit(AliHLTUInt32_t f) const { return (bool) ((fBits & f) != 0); }
+
+ protected:
 
   /**
    * Applies the global HLT trigger.
@@ -77,7 +190,38 @@ class AliHLTGlobalTriggerComponent : public AliHLTTrigger
    */
   virtual int DoTrigger();
   
+  /**
+   * Reconfigures the component by loading the trigger menu from the given
+   * CDB entry.
+   * \param cdbEntry  The CDB path to the trigger menu to load.
+   * \param chainId   The ID of the component in the chain.
+   * \returns  Zero on success and non-zero values otherwise.
+   */
+  virtual int Reconfigure(const char* cdbEntry, const char* chainId);
+  
  private:
+
+  /// Not implemented. Do not allow copying of this object.
+  AliHLTGlobalTriggerComponent(const AliHLTGlobalTriggerComponent& obj);
+  /// Not implemented. Do not allow copying of this object.
+  AliHLTGlobalTriggerComponent& operator = (const AliHLTGlobalTriggerComponent& obj);
+  
+  /**
+   * Loads a trigger menu object from the CDB.
+   * \param [in] cdbPath The path in the CDB to load the trigger menu object from.
+   * \param [out] menu   A pointer that gets filled with the new trigger menu object.
+   * \returns  Zero if the trigger menu object was found and the pointer to it
+   *   set in the <i>menu</i> variable. If a non-zero error code is returned then
+   *   the <i>menu</i> variable is not changed at all.
+   */
+  int LoadTriggerMenu(const char* cdbPath, const AliHLTTriggerMenu*& menu);
+  
+  /**
+   * Generates a file name for the generated on the fly code using a GUID.
+   * \param [out] name The name of the class to use.
+   * \param [out] filename The name of the file containing the code.
+   */
+  void GenerateFileName(TString& name, TString& filename);
   
   /**
    * Generates the code for the global trigger to apply the given trigger menu.
@@ -87,13 +231,114 @@ class AliHLTGlobalTriggerComponent : public AliHLTTrigger
    *  AliHLTGlobalTrigger::CreateNew(name)
    * \endcode
    * where name is the name of the generated class as returned by this method.
+   *
+   * The name of the generated code file is stored in the variable fCodeFileName
+   * and the fDeleteCodeFile is set to true.
+   *
+   * \param [in] menu The trigger menu to create the global trigger class from.
+   * \param [out] name The name of the generated class.
+   * \param [out] filename The name of the generated file containing the code.
+   * \param [in] includePaths The list of include path strings.
+   * \param [in] includeFiles The list of include file strings.
+   * \returns  The error code suitable to return in DoInit. Zero on success.
+   */
+  int GenerateTrigger(
+      const AliHLTTriggerMenu* menu, TString& name, TString& filename,
+      const TClonesArray& includePaths, const TClonesArray& includeFiles
+    );
+  
+  /**
+   * Loads the code for the generated HLT global trigger class. The code is compiled
+   * on the fly if possible, otherwise the CINT interpreter is used to interpret
+   * the class.
+   * \param [in] filename  The name of the file containing the code for the global trigger class.
+   * \param [in] includePaths The list of include path strings.
+   * \returns  The error code suitable to return in DoInit. Zero on success.
+   */
+  int LoadTriggerClass(const char* filename, const TClonesArray& includePaths);
+  
+  /**
+   * Unloads the code that was previously loaded by LoadTriggerClass.
+   * \param filename  The name of the file containing the global trigger class logic to be unloaded.
+   * \returns  The error code suitable to return in DoInit. Zero on success.
+   */
+  int UnloadTriggerClass(const char* filename);
+  
+  /**
+   * Searches for the specified symbol name in the given list.
+   * \param name  The name of the symbol to find.
+   * \param list  The list to search for the symbol in.
+   * \returns  The position (index) of the symbol found or -1 if it was not found.
+   */
+  int FindSymbol(const char* name, const TClonesArray& list);
+  
+  /**
+   * Builds the list of symbols to use in the custom global trigger menu
+   * implementation class.
    * \param  menu  The trigger menu to create the global trigger class from.
-   * \param  name  The name of the generated class.
+   * \param  list  The list to fill with symbols.
    * \returns  The error code suitable to return in DoInit. Zero on success.
    */
-  int GenerateTrigger(const AliHLTTriggerMenu* menu, TString& name);
+  int BuildSymbolList(const AliHLTTriggerMenu* menu, TClonesArray& list);
+  
+  /**
+   * Extracts the trailing operator in a C++ expression and returns the found
+   * operator in a separate output string.
+   * \param [in,out]  expr  The C++ expression to check. The trailing operator
+   *      is removed from the expression if found.
+   * \param [out]  op   The output variable which will be filled with the
+   *      operator found in the expression.
+   * \return  true if the trailing operator was found in the expression and
+   *      false otherwise.
+   */
+  bool ExtractedOperator(TString& expr, TString& op);
+
+  /**
+   * Add trigger decisions according to the active CTP trigger classes
+   * An internal TClonesArray holds the trigger decisions to be added. The trigger
+   * decisions are updated according to the active CTP trigger mask.
+   * \param pTrigger  The instance of the global trigger
+   * \param pCTPData  Instance of the CTP data
+   * \param trigData  Current trigger data, if NULL, the active trigger data from the CTP data is used
+   */
+  int AddCTPDecisions(AliHLTGlobalTrigger* pTrigger, const AliHLTCTPData* pCTPData, const AliHLTComponentTriggerData* trigData);
+  
+  /**
+   * This method handles the software trigger by checking the Common Data Header
+   * and filling fSoftwareTrigger with appropriate information for one of the
+   * following triggers: START_OF_DATA, END_OF_DATA, SOFTWARE or CALIBRATION, if
+   * it is indicated in the CDH L1 trigger message.
+   * \returns true if the trigger decision object was filled and false otherwise.
+   */
+  bool FillSoftwareTrigger();
+
+  /**
+   * Print some statistics based on the trigger counters
+   */
+  int PrintStatistics(const AliHLTGlobalTrigger* pTrigger, AliHLTComponentLogSeverity level=kHLTLogInfo, int offset=1) const;
   
   AliHLTGlobalTrigger* fTrigger;  //! Trigger object which implements the global trigger menu.
+  bool fDebugMode;  //! Indicates if the generated global trigger class should be in debug mode.
+  bool fRuntimeCompile;  //! Indicates if the generated global trigger class should be compiled
+  bool fDeleteCodeFile; //! If true then the code file indicated by fCodeFileName should be deleted during DoDeinit.
+  bool fMakeSoftwareTriggers;  //! Indicates if the software triggers should be filled automatically or not.
+  TString fCodeFileName; //! base file name of the generated code for the global trigger
+  TString fClassName;  //! The generated/loaded trigger class name.
+  TClonesArray* fCTPDecisions; //! AliHLTTriggerDecision objects for the CTP classes
+  unsigned long fBufferSizeConst; //! Constant size estimate for GetOutputDataSize.
+  double fBufferSizeMultiplier; //! Buffer size multiplier estimate for GetOutputDataSize.
+  TClonesArray fIncludePaths; //! Paths specified by the -includepath command line option.
+  TClonesArray fIncludeFiles; //! Files specified by the -include command line option.
+  TString fLibStateAtLoad; //! This stores the loaded libraries just before we tell CINT to load the interpreted file.
+  AliHLTUInt32_t fBits; //! Status bits
+  bool fDataEventsOnly; //! Flag indicating if only data events are processed with trigger logic.
+  int fMonitorPeriod; //! Period of the monitoring trigger in s, -1 means monitoring trigger off
+  UInt_t fUniqueID; //! Unique ID for the decision output objects.
+  AliHLTTriggerDecision fSoftwareTrigger; //! Software or calibration trigger decision object to be added to trigger logic.
+  AliHLTUInt64_t fTotalEventCounter; //! Counts the total number of events handled.
+  AliHLTCDHWrapper fCDH; //! The extracted CDH from the trigger data passed by the framework.
+
+  static const char* fgkTriggerMenuCDBPath; //! The path string to read the trigger menu from the CDB.
   
   ClassDef(AliHLTGlobalTriggerComponent, 0) // Global HLT trigger component class which produces the final trigger decision and readout list.
 };