]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONBlockHeader.h
Update for the value of the density of the foam inside the support cylinder between...
[u/mrichter/AliRoot.git] / MUON / AliMUONBlockHeader.h
index aa824a353e0d8acaa5daaec4a1dc1bdd5f8c7dd4..aec5b12d61f78f467eaac9573bf753dbc5df188c 100644 (file)
@@ -20,6 +20,7 @@ class AliMUONBlockHeader : public TObject {
 
 public:
    AliMUONBlockHeader();
+   AliMUONBlockHeader(TRootIOCtor* dummy);
    AliMUONBlockHeader(const AliMUONBlockHeader &event);
    AliMUONBlockHeader& operator=(const AliMUONBlockHeader &event);
 
@@ -49,7 +50,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 +89,9 @@ public:
    // clear
    void Clear(Option_t* opt);
 
+   // print out
+   void Print(Option_t* /*opt*/) const;
+
  private:
 
    // block header
@@ -100,11 +105,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