]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONLocalStruct.h
Changed default OCDB from 2009 to 2010
[u/mrichter/AliRoot.git] / MUON / AliMUONLocalStruct.h
index 69ab6362f5ccc7e293b313675b71f9b4bfd8812c..ba1b269a6daf3c837f8947d679077b5939e43c26 100644 (file)
@@ -7,12 +7,14 @@
 
 /// \ingroup raw
 /// \class AliMUONLocalStruct
-/// \brief rawdata local card structure for trigger
+/// \brief Rawdata local card structure for trigger
 ///
-/// \author Christian Finck
+//  Author Christian Finck
 
 #include <TObject.h>
 #include <TMath.h>
+#include <TArrayS.h>
+
 
 class AliMUONLocalStruct : public TObject{
  
@@ -22,67 +24,112 @@ public:
    AliMUONLocalStruct& operator=(const AliMUONLocalStruct& event);
 
 
-   virtual ~AliMUONLocalStruct(){;}
+   virtual ~AliMUONLocalStruct();
 
    // local board info
+            /// Return local data
    UInt_t  GetData(Int_t n) const {return fData[n];}
 
+            /// Return X2
    UShort_t GetX2() const {return (fData[0]     >> 16) &  0xFFFF;}
+            /// Return X1
    UShort_t GetX1() const {return (fData[0])           &  0xFFFF;}
+            /// Return X4
    UShort_t GetX4() const {return (fData[1] >> 16) &  0xFFFF;}
+            /// Return X3
    UShort_t GetX3() const {return (fData[1])       &  0xFFFF;}
+           /// return X pattern array
+   void    GetXPattern(TArrayS& array) const;
+           /// return Y pattern array
+   void    GetYPattern(TArrayS& array) const;
 
+            /// Return Y2
    UShort_t GetY2() const {return (fData[2] >> 16) &  0xFFFF;}
+            /// Return Y1
    UShort_t GetY1() const {return (fData[2])       &  0xFFFF;}
+            /// Return Y4
    UShort_t GetY4() const {return (fData[3] >> 16) &  0xFFFF;}
+            /// Return Y3
    UShort_t GetY3() const {return (fData[3])       &  0xFFFF;}
 
-   UChar_t   GetId()  const  {return fData[4] >> 19 &  0xF;}
-   UChar_t   GetDec() const  {return fData[4] >> 15 &  0xF;}
-   UChar_t   GetTriggerY() const {return fData[4] >> 14 &  0x1;}
-   UChar_t   GetYPos() const {return fData[4] >> 10 &  0xF;}
-   UChar_t   GetXDev() const {return fData[4] >> 5  &  0x1F;}
-   UChar_t   GetXPos() const {return fData[4]       &  0x1F;}
-
+            /// Return Id
+   UChar_t  GetId()  const  {return fData[4] >> 19 &  0xF;}
+            /// Return Dec
+   UChar_t  GetDec() const  {return fData[4] >> 15 &  0xF;}
+            /// Return TrigY
+   Bool_t   GetTrigY() const {return (fData[4] >> 14 & 0x1);}
+            /// Return TriggerY
+   Bool_t   GetTriggerY() const {return !(GetTrigY() && GetYPos()==15);}
+            /// Return Upos
+   UChar_t  GetYPos() const {return fData[4] >> 10 &  0xF;}
+            /// Get Sign of X deviation 
+   UChar_t  GetSXDev() const {return fData[4] >> 9  &  0x1;}
+            /// Get X deviation 
+   UChar_t  GetXDev() const {return fData[4] >> 5  &  0xF;}
+            /// Return TriggerX
+   Bool_t   GetTriggerX() const {return !(GetSXDev() &&
+                                         !GetXDev() &&
+                                         GetXPos()==0);}   
+            /// Return Xpos
+   UChar_t  GetXPos() const {return fData[4]       &  0x1F;}
+
+            /// Return LPT
    Int_t   GetLpt() const {return (GetDec() & 0x3);}
+            /// Return HPT
    Int_t   GetHpt() const {return (GetDec() >> 2) & 0x3;}
 
+            /// Set local data
    void    SetData(UInt_t d, Int_t n) {fData[n] = d;}
 
+            /// Return data
    UInt_t* GetData() {return &fData[0];}
 
  // Scaler methods
+            /// Return local L0
    UInt_t  GetL0()      const {return fL0;}
+            /// Return local hold (dead time)
    UInt_t  GetHold()    const {return fHold;}
+            /// Return local clock
    UInt_t  GetClock()   const {return fClk;}
-   UChar_t GetSwitch()  const {return (fEOS >> 2) & 0x3FF;}
-   UChar_t GetComptXY() const {return  fEOS & 3;}
+            /// Return switch
+   UShort_t GetSwitch()  const {return (fEOS >> 1) & 0x3FF;}
+            /// Return ComptXY
+   UChar_t GetComptXY() const {return  fEOS & 1;}
 
+            /// Return XY1
    UShort_t GetXY1(Int_t n) const {return  (n % 2 == 0) ?
        (fScaler[TMath::Nint(Float_t(n/2))] &  0xFFFF) : 
        (fScaler[TMath::Nint(Float_t(n/2))] >> 16) &  0xFFFF;}
 
+            /// Return XY2
    UShort_t GetXY2(Int_t n) const {return  (n % 2 == 0) ?
        (fScaler[8 + TMath::Nint(Float_t(n/2))] &  0xFFFF) : 
        (fScaler[8 + TMath::Nint(Float_t(n/2))] >> 16) &  0xFFFF;}
 
+            /// Return XY3
    UShort_t GetXY3(Int_t n) const {return  (n % 2 == 0) ?
        (fScaler[8*2 + TMath::Nint(Float_t(n/2))] &  0xFFFF) : 
        (fScaler[8*2 + TMath::Nint(Float_t(n/2))] >> 16) &  0xFFFF;}
 
+            /// Return XY4
    UShort_t GetXY4(Int_t n) const {return  (n % 2 == 0) ?
        (fScaler[8*3 + TMath::Nint(Float_t(n/2))] &  0xFFFF) : 
        (fScaler[8*3 + TMath::Nint(Float_t(n/2))] >> 16) &  0xFFFF;}
 
+            /// Return scalers
    UInt_t* GetScalers()  {return &fL0;} 
 
    // get  length
+            /// Return scaler length in word
    Int_t  GetScalerLength()  const {return fgkScalerLength;} 
+            /// Return local info length in word
    Int_t  GetLength()        const {return fgkLength;} 
+            /// Return end of local info word
    UInt_t GetEndOfLocal()    const {return fgkEndOfLocal;}
+            /// Return Word for "empty" slots
    UInt_t GetDisableWord()   const {return fgkDisableWord;}
 
-  // set random numbers to fill variable
+   // set random numbers to fill variable
    void SetScalersNumbers();
 
  private:
@@ -116,6 +163,6 @@ public:
    static const UInt_t fgkEndOfLocal;   ///< end of local info word
    static const UInt_t fgkDisableWord;  ///< Word for "empty" slots
 
-   ClassDef(AliMUONLocalStruct,3)
+   ClassDef(AliMUONLocalStruct,3) //Rawdata local card structure for trigger
 };
 #endif