]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/EveHLT/AliEveHOMERManager.h
From Jochen - EveHLT development accumulated since the end of March.
[u/mrichter/AliRoot.git] / EVE / EveHLT / AliEveHOMERManager.h
index 8792c58db57dab8d834c426432912c5b12f18a24..d89f2d2fb9c21341df71a1868dbdac7d95a1d977 100644 (file)
@@ -6,6 +6,7 @@
  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
  * full copyright notice.                                                 *
  **************************************************************************/
+
 //-*- Mode: C++ -*-
 #ifndef ALIEVEHOMERMANGER_H
 #define ALIEVEHOMERMANGER_H
 #include "TXMLNode.h"
 #include "TList.h"
 
+#include "AliEveHOMERSourceList.h"
 #include "AliHLTHOMERSourceDesc.h"
 #include "AliHLTHOMERBlockDesc.h"
 #include "AliHLTHOMERReader.h"
+#include "AliEveHOMERXMLHandler.h"
 
 #include "AliTPCPreprocessorOnline.h"
 
 
 class AliHLTHOMERLibManager;
 
-/**
- * @class AliEveHOMERManager
- *
- * This class is the main class of the AliEveHOMERManager
- * ... more to come
- *
- * @ingroup alihlt_homer
- */
-
 class AliEveHOMERManager : public TEveElementList
 {
-private:
-  AliEveHOMERManager(const AliEveHOMERManager&);            // Not implemented.
-  AliEveHOMERManager& operator=(const AliEveHOMERManager&); // Not implemented.
-
 public:
 
   /*
@@ -58,11 +48,9 @@ public:
    * ---------------------------------------------------------------------------------
    */
 
-  /** constructor
-   * @param argc    Number of command line arguments.
-   * @param argv    Array of command line arguments.
-   */
+  /** constructor */
   AliEveHOMERManager(TString xmlFile="" );
+
   /** destructor */
   virtual ~AliEveHOMERManager();
 
@@ -75,16 +63,11 @@ public:
   /** Create Sources List from HOMER-Proxy */
   Int_t CreateHOMERSourcesList();
 
-  /** Set state of a source
-   * @param source      Pointer to AliHLTHOMERSourceDesc object.
-   * @param state       New (selected/not selected) state.
-   */
+  /** Set state of a source */
   void SetSourceState( AliHLTHOMERSourceDesc* source, Bool_t state);
 
-  /** Get pointer to source List
-   * @return            returns pointer to TList of sources
-   */
-  TList* GetSourceList() { return fSourceList; }
+  /** Get pointer to source List */
+  TList* GetSourceList() { return fSourceList; } // Get pointer to source List
 
   /*
    * ---------------------------------------------------------------------------------
@@ -92,17 +75,13 @@ public:
    * ---------------------------------------------------------------------------------
    */
 
-  /** Connect to HOMER sources, out of Readout List, which gets created when state has changed
-   * @return            0 on sucess, "HOMER" errors on error
-   */
+  /** Connect to HOMER sources, out of Readout List, which gets created when state has changed */
   Int_t ConnectHOMER();
 
   /** Disconnect from HOMER sources */
   void DisconnectHOMER();
 
-  /** Reconnect from HOMER sources
-   * @return            0 on sucess, "ConnectHOMER()" errors on error
-   */
+  /** Reconnect from HOMER sources */
   Int_t ReconnectHOMER();
 
   /*
@@ -111,71 +90,36 @@ public:
    * ---------------------------------------------------------------------------------
    */
 
-  /** Loads the next Event, after being connected
-   * @return            0 on sucess, "HOMER" errors on error
-   */
+  /** Loads the next Event, after being connected */
   Int_t NextEvent();
 
-  /** Get event ID
-   * @return            Returns eventID
-   */
-  ULong_t GetEventID() { return fEventID; }
+  /** Get event ID */
+  ULong_t GetEventID() { return fEventID; }    // Get event ID
 
-  /** Get pointer to block List
-   * @return            returns pointer to TList of blocks
+  /** Get pointer to block List */
+  TList* GetBlockList() { return fBlockList; } // Get pointer to block List
+  
+  /*
+   * ---------------------------------------------------------------------------------
+   *                            Test Realm ....
+   * ---------------------------------------------------------------------------------
    */
-  TList* GetBlockList() { return fBlockList; }
-
-
-  ///////////////////////////////////////////////////////////////////////////////////
-
-  void SelectRawTPC();
-  void SelectClusterTPC();
-  void SelectESDTPC();
-
-  void TestSelect();
-  void TestSelectClass( TString objectName );
 
+  /** Still under testing ... */
   void DumpTPCCalib(TString objectName, Bool_t dumpToFile);
 
   ///////////////////////////////////////////////////////////////////////////////////
 
 protected:
 
-  /** Dynamic loader manager for the HOMER library */
-  AliHLTHOMERLibManager* fLibManager;             //! transient
+  AliHLTHOMERLibManager* fLibManager;             //! Dynamic loader manager for the HOMER library
 
+  ///////////////////////////////////////////////////////////////////////////////////
 
 private:
 
-  /*
-   * ---------------------------------------------------------------------------------
-   *                            Source Handling - private
-   * ---------------------------------------------------------------------------------
-   */
-
-  /** Get Information out of a TDS process in XML file
-   * @param xmlNode   Pointer to childs of TDS node
-   * @return          0 on sucess, > 0 on error
-   */
-  Int_t GetTDSAttributes( TXMLNode * xmlNode );
-
-  /** Resolve Information of hostname and port for source which has to be used by HOMER
-   * ( due to port mapping inside the HLT )
-   * @param xmlHostname  Hostname out of the XML
-   * @param xmlPort      Port out of the XML
-   * @param hostname     Return of the hostname
-   * @param port         Return of the port
-   * @return             0 on sucess, 1 if hostname couldn't be resolved, 2 if port couldn't be resolved,
-   */
-  Int_t ResolveHostPortInformation( TString xmlHostname, TString xmlPort, TString &hostname, Int_t &port );
-
-  /** Resolve information of source
-   * @param xmlParent   ParentString out of the XML
-   * @param source      Return the filled AliHLTHOMERSourceDesc object
-   * @return            0 on sucess, 1 on error
-   */
-  Int_t ResolveSourceInformation( TString xmlParent, AliHLTHOMERSourceDesc * source );
+  AliEveHOMERManager(const AliEveHOMERManager&);            // Not implemented.
+  AliEveHOMERManager& operator=(const AliEveHOMERManager&); // Not implemented.
 
   /*
    * ---------------------------------------------------------------------------------
@@ -183,20 +127,17 @@ private:
    * ---------------------------------------------------------------------------------
    */
 
-  /** Create a readout list for Hostname and ports
-   * @param socurceHostnames   Array of selected hostnames
-   * @param socurcePorts       Array of selected ports
-   * @param socurceCount       Number of selected hostname:port
-   */
-  void CreateReadoutList( const char** socurceHostnames, UShort_t* sourcePorts, UInt_t &sourceCount);
+  /** Create a readout list for Hostname and ports */
+  void CreateReadoutList( const char** sourceHostnames, UShort_t* sourcePorts, UInt_t &sourceCount);
 
-  /** Checks if already connected to HOMER sources
-   * @return             kTRUE or kFALSE, depending on connection state
-   */
-  Bool_t IsConnected() { return fConnected; }
+  /** Checks if already connected to HOMER sources */
+  Bool_t IsConnected() { return fConnected; }  // Checks if already connected to HOMER sources
+
+  /** Sets realm ( which can be ACR, GPN, HLT, KIP ) */ 
+  void SetRealm( TString s ) { fXMLHandler->SetRealm(s); } // Sets realm ( which can be ACR, GPN, HLT, KIP )
 
   /* ---------------------------------------------------------------------------------
-   *                            Eve AliEveHOMERManager::foo(nt Handling - private
+   *                            Event Handling - private
    * ---------------------------------------------------------------------------------
    */
 
@@ -209,84 +150,46 @@ private:
    * ---------------------------------------------------------------------------------
    */
 
-  /** Get Number of blocks in current event
-   * @return           returns number of blocks in current event
-   */
-  ULong_t GetNBlks() { return fNBlks; }
+  /** Get Number of blocks in current event */
+  ULong_t GetNBlks() { return fNBlks; }                                        // Get Number of blocks in current event
 
-  /** Get pointer to block ndx in current event
-   * @param ndx        Block index
-   * @return           returns pointer to blk, NULL if no block present
-   */
+  /** Get pointer to block ndx in current event */
   void* GetBlk( Int_t ndx );
 
-  /** Get pointer to current block in current event
-   * @param ndx        Block index
-   * @return           returns pointer to blk, NULL if no block present
-   */
-  void* GetBlk() { return GetBlk( fCurrentBlk ); }
+  /** Get pointer to current block in current event */
+  void* GetBlk() { return GetBlk( fCurrentBlk ); }                             // Get pointer to current block in current event
 
-  /** Get first block in current event
-   * @return           returns pointer to blk, NULL if no block present
-   */
-  void* GetFirstBlk() { return GetBlk( 0 ); }
+  /** Get first block in current event */
+  void* GetFirstBlk() { return GetBlk( 0 ); }                                  // Get first block in current event
 
-  /** Get next block in current event
-   * @return           returns pointer to blk, NULL if no block present
-   */
-  void* GetNextBlk() { return GetBlk( ++fCurrentBlk ); }
+  /** Get next block in current event */
+  void* GetNextBlk() { return GetBlk( ++fCurrentBlk ); }                       // Get next block in current event
 
-  /** Get size of block ndx
-   * @param ndx        Block index
-   * @return           returns pointer to blk, 0 if no block present
-   */
+  /** Get size of block ndx */
   ULong_t GetBlkSize( Int_t ndx );
 
-  /** Get size of current block
-   * @param ndx        Block index
-   * @return           returns pointer to blk, 0 if no block present
-   */
-  ULong_t GetBlkSize() { return GetBlkSize( fCurrentBlk ); }
-
-  /** Get origin of block ndx
-   * @param ndx        Block index
-   * @return           origin of block
-   */
+  /** Get size of current block */ 
+  ULong_t GetBlkSize() { return GetBlkSize( fCurrentBlk ); }                   // Get size of current block 
+  /** Get origin of block ndx */
   TString GetBlkOrigin( Int_t ndx );
 
-  /** Get origin of current block
-   * @param ndx        Block index
-   * @return           origin of block
-   */
-  TString GetBlkOrigin(){ return GetBlkOrigin( fCurrentBlk ); }
+  /** Get origin of current block */
+  TString GetBlkOrigin(){ return GetBlkOrigin( fCurrentBlk ); }                // Get origin of current block
 
-  /** Get type of block ndx
-   * @param ndx        Block index
-   * @return           type of block
-   */
-  TString GetBlkType( Int_t ndx );
+  /** Get type of block ndx */
+  TString GetBlkType( Int_t ndx ); 
 
-  /** Get type of current block
-   * @param ndx        Block index
-   * @return           type of block
-   */
-  TString GetBlkType() { return GetBlkType( fCurrentBlk ); }
+  /** Get type of current block */
+  TString GetBlkType() { return GetBlkType( fCurrentBlk ); }                   // Get type of current block
 
-  /** Get specification of block ndx
-   * @param ndx        Block index
-   * @return           specification of block
-   */
+  /** Get specification of block ndx */
   ULong_t GetBlkSpecification( Int_t ndx );
 
-  /** Get specification of current block
-   * @param ndx        Block index
-   * @return           specification of block
-   */
-  ULong_t GetBlkSpecification(){ return GetBlkSpecification( fCurrentBlk ); }
+  /** Get specification of current block */
+  ULong_t GetBlkSpecification() { return GetBlkSpecification( fCurrentBlk ); } // Get specification of current block
 
-  /** Checks if current Block should was requested
-   * @return           returns kTRUE, if block should was requested
-   */
+  /** Checks if current Block should was requested */
   Bool_t CheckIfRequested( AliHLTHOMERBlockDesc* block );
 
   /*
@@ -295,60 +198,34 @@ private:
    * ---------------------------------------------------------------------------------
    */
 
-  // == XML parser ==
-
-  /** XML input file */
-  TString fXMLFile;                               // see above
-
-  /** XML parser into DOM model */
-  TDOMParser* fXMLParser;                         //! transient
-
-  /** Root node of parsed config file */
-  TXMLNode * fRootNode;                           //! transient
+  // == XML handler ==
+  AliEveHOMERXMLHandler* fXMLHandler;             //! Handles HLT XML Config Files
 
   // == sources ==
-
-  /** List to HOMER sources */
-  TList * fSourceList;                            //! transient
+  TList * fSourceList;                            //! List to HOMER sources
 
   // == connection ==
-
-
-  /** Pointer to HOMER reader */
-  AliHLTHOMERReader* fReader;                     //! transient
+  AliHLTHOMERReader* fReader;                     //! Pointer to HOMER reader
 
   // == blocks ==
-
-  /** List to HOMER blocks */
-  TList * fBlockList;                             //! transient
+  TList * fBlockList;                             //! List to HOMER blocks
 
   // == events ==
-
-  /** Number of blockes in current event */
-  ULong_t fNBlks;                                 // see above
-
-  /** EventID of current event */
-  ULong64_t fEventID;                             // see above
-
-  /** Current block in current event */
-  ULong_t fCurrentBlk;                            // see above
+  ULong_t   fNBlks;                               // Number of blockes in current event
+  ULong64_t fEventID;                             // EventID of current event
+  ULong_t   fCurrentBlk;                          // Current block in current event
 
   // == states ==
+  Bool_t fConnected;                              // Shows connection status
+  Bool_t fStateHasChanged;                        // Indicates, if a sources have changes, so that one has to reconnect.
 
-  /** Shows connection status */
-  Bool_t fConnected;                              // see above
-
-  /** Indicates, if a sources have changes,
-   *  so that one has to reconnect .
-   */
-  Bool_t fStateHasChanged;                        // see above
-
-
-  //----
+  // == sources ==
+  AliEveHOMERSourceList* fSrcList;                // List of HOMER Sources
 
-  AliTPCPreprocessorOnline* fTPCPre;
+  //-----------------------------------------------------------------------------------------
+  AliTPCPreprocessorOnline* fTPCPre;              // Preprocessor for TPC calibration.
 
-  ClassDef( AliEveHOMERManager, 0 )
+  ClassDef(AliEveHOMERManager, 0); // Manage connections to HLT data-sources.
 };
 
 #endif