]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONBlockHeader.h
Fixed a bug in the Digit reader, moved clusterfinder to initialize from OCDB, Added...
[u/mrichter/AliRoot.git] / MUON / AliMUONBlockHeader.h
index aa824a353e0d8acaa5daaec4a1dc1bdd5f8c7dd4..509b9b13456d85d61698f0ef95fd1b9f4bd61cff 100644 (file)
@@ -49,7 +49,8 @@ public:
    Int_t   GetHeaderLength()   const {return fgkHeaderLength;}
            /// Return default data key word for CRT header
    UInt_t  GetDefaultDataKey() const {return fgkDefaultDataKey;}
-
+         /// Return  data key end word for CRT header
+   UInt_t  GetDdlDataKey() const {return fgkDdlDataKey;}
 
            /// Set data key word for CRT header
    void    SetDataKey(Int_t d)     {fDataKey = d;}
@@ -87,6 +88,9 @@ public:
    // clear
    void Clear(Option_t* opt);
 
+   // print out
+   void Print(Option_t* /*opt*/) const;
+
  private:
 
    // block header
@@ -100,11 +104,12 @@ public:
    Int_t     fEventId2;       ///< Event Id in orbit number
 
 
-   static const Int_t fgkHeaderLength;   ///< header length in word
-   static const UInt_t fgkDefaultDataKey; ///< default data key word for CRT header 
+   static const Int_t  fgkHeaderLength;    ///< header length in word
+   static const UInt_t fgkDefaultDataKey;  ///< default data key word for CRT header 
+   static const UInt_t fgkDdlDataKey;      ///< data key end word for CRT header 
 
    TClonesArray*  fDspHeaderArray;  ///< array of block header
 
-   ClassDef(AliMUONBlockHeader,2)  // MUON block header for Tracker event
+   ClassDef(AliMUONBlockHeader,3)  // MUON block header for Tracker event
 };
 #endif