]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Implementation of disable word for empty and not-notified boards (Christian)
authorpcrochet <pcrochet@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 9 Aug 2006 07:28:43 +0000 (07:28 +0000)
committerpcrochet <pcrochet@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 9 Aug 2006 07:28:43 +0000 (07:28 +0000)
MUON/AliMUONLocalStruct.cxx
MUON/AliMUONLocalStruct.h

index c29f91c70fab8da5d31a626876b6ce4b9dff58c0..cf578b21ccecdbe5ae27c8c6bbadf1ef72c85a77 100644 (file)
@@ -32,7 +32,7 @@ ClassImp(AliMUONLocalStruct)
  const Int_t  AliMUONLocalStruct::fgkLength = 5;
  const Int_t  AliMUONLocalStruct::fgkScalerLength = 45;
  const UInt_t AliMUONLocalStruct::fgkEndOfLocal   = 0xCAFEFADE;
+ const UInt_t AliMUONLocalStruct::fgkDisableWord  = 0x010CDEAD;
 //___________________________________________
 AliMUONLocalStruct::AliMUONLocalStruct()
   :  TObject(),
index 64f4be1f99ff63da8e044eb677160d74db1df88d..4ba4bd316ab21d4107bd6bab655d1eada2b98cab 100644 (file)
@@ -72,6 +72,7 @@ public:
    Int_t  GetScalerLength()  const {return fgkScalerLength;} 
    Int_t  GetLength()        const {return fgkLength;} 
    UInt_t GetEndOfLocal()    const {return fgkEndOfLocal;}
+   UInt_t GetDisableWord()   const {return fgkDisableWord;}
 
   // set random numbers to fill variable
    void SetScalersNumbers();
@@ -105,6 +106,7 @@ public:
    static const Int_t  fgkLength;       ///< local info length in word
    static const Int_t  fgkScalerLength; ///< scaler length in word
    static const UInt_t fgkEndOfLocal;   ///< end of local info word
+   static const UInt_t fgkDisableWord; ///< Word for "empty" slots
 
    ClassDef(AliMUONLocalStruct,3)
 };