]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONRegHeader.h
Moving of the QA checker from rec to base, as it is used also during simulation.
[u/mrichter/AliRoot.git] / MUON / AliMUONRegHeader.h
CommitLineData
32def6aa 1#ifndef ALIMUONREGHEADER_H
2#define ALIMUONREGHEADER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/*$Id$*/
7
8/// \ingroup raw
9/// \class AliMUONRegHeader
10/// \brief MUON regional header for trigger
11///
78649106 12// Author Christian Finck
32def6aa 13
14#include <TObject.h>
13425a75 15#include <TClonesArray.h>
32def6aa 16
17class AliMUONLocalStruct;
18
19class AliMUONRegHeader : public TObject{
20
21public:
22 AliMUONRegHeader();
23 AliMUONRegHeader(const AliMUONRegHeader& event);
24 AliMUONRegHeader& operator=(const AliMUONRegHeader& event);
25
26 virtual ~AliMUONRegHeader();
27
71a2d3aa 28 /// Return darc word
bebe0279 29 UInt_t GetDarcWord() const {return fDarcWord;}
71a2d3aa 30 /// Return first reg word
bebe0279 31 UInt_t GetWord() const {return fWord;}
71a2d3aa 32 /// Return regional input
bebe0279 33 UInt_t GetInput(Int_t n) const {return fInput[n];}
71a2d3aa 34 /// Return L0
bebe0279 35 UShort_t GetL0() const {return fL0 & 0xFFFF;}
71a2d3aa 36 /// Return mask
bebe0279 37 UShort_t GetMask() const {return fMask & 0xFFFF;}
32def6aa 38
d622a0ec 39 //word: phys type:1, reset: 6, serialNb:5, Id:4, version: 8, regional output:8
251b70b4 40 //true for phys, false for soft
71a2d3aa 41 /// Return RegPhysFlag
bebe0279 42 Bool_t GetRegPhysFlag() const {return (fWord & 0x80000000);}
71a2d3aa 43 /// Return ResetNb
f9f2650d 44 UChar_t GetResetNb() const {return (UChar_t)(fWord >> 25) & 0x3F;}
71a2d3aa 45 /// Return SerialNb
b6ab2009 46 UChar_t GetSerialNb() const {return (UChar_t)(fWord >> 20) & 0x1F;}
71a2d3aa 47 /// Return Id
b6ab2009 48 UChar_t GetId() const {return (UChar_t)(fWord >> 16) & 0x0F;}
71a2d3aa 49 /// Return Version
b6ab2009 50 UChar_t GetVersion() const {return (UChar_t)(fWord >> 8) & 0xFF;}
71a2d3aa 51 /// Return Output
b6ab2009 52 UChar_t GetOutput() const {return (UChar_t)(fWord & 0xFF);}
251b70b4 53
54 //Darc Status: error:10, #fpag:3, MBZ:3, phys type:1, present:1, not_full:1
55 // not_empty:1, L2Rej:1, L2Acc:1, L1:1, L0:1, #evt:4, busy:4
71a2d3aa 56 /// Return ErrorBits
f9f2650d 57 UShort_t GetErrorBits() const {return (UShort_t)(fDarcWord >> 22) & 0x3FF;}
71a2d3aa 58 /// Return FPGANumber
f9f2650d 59 UChar_t GetFPGANumber() const {return (UChar_t) (fDarcWord >> 19) & 0x7;}
71a2d3aa 60 /// Return DarcPhysFlag
f9f2650d 61 Bool_t GetDarcPhysFlag() const {return (fDarcWord & 0x8000);}
71a2d3aa 62 /// Return PresentFlag
f9f2650d 63 Bool_t GetPresentFlag() const {return (fDarcWord & 0x4000);}
71a2d3aa 64 /// Return RamNotFullFlag
f9f2650d 65 Bool_t GetRamNotFullFlag() const {return (fDarcWord & 0x2000);}
71a2d3aa 66 /// Return RamNotEmptyFlag
f9f2650d 67 Bool_t GetRamNotEmptyFlag() const {return (fDarcWord & 0x1000);}
71a2d3aa 68 /// Return L2RejStatus
f9f2650d 69 Bool_t GetL2RejStatus() const {return (fDarcWord & 0x800);}
71a2d3aa 70 /// Return L2AccStatus
f9f2650d 71 Bool_t GetL2AccStatus() const {return (fDarcWord & 0x400);}
71a2d3aa 72 /// Return L1Status
f9f2650d 73 Bool_t GetL1Status() const {return (fDarcWord & 0x200);}
71a2d3aa 74 /// Return L0Status
f9f2650d 75 Bool_t GetL0Status() const {return (fDarcWord & 0x100);}
71a2d3aa 76 /// Return EventInRam
b6ab2009 77 UChar_t GetEventInRam() const {return (UChar_t) (fDarcWord >> 4) & 0x4;}
71a2d3aa 78 /// Return Busy
b6ab2009 79 UChar_t GetBusy() const {return (UChar_t) (fDarcWord) & 0x4;}
32def6aa 80
71a2d3aa 81 /// Set darc word
00f56161 82 void SetDarcWord(UInt_t w) {fDarcWord = w;}
71a2d3aa 83 /// Set first reg word
bebe0279 84 void SetWord(UInt_t w) {fWord = w;}
71a2d3aa 85 /// Set local mask ("poids faible" 16 bits)
bebe0279 86 void SetMask(UShort_t m) {fMask = m;}
71a2d3aa 87 /// Set L0
bebe0279 88 void SetL0(UShort_t l) {fL0 = (l & 0xFFFF);}
71a2d3aa 89 /// Set regional input
32def6aa 90 void SetInput(UInt_t in, Int_t n) {fInput[n] = in;}
bebe0279 91
92
71a2d3aa 93 /// Return header length in word
32def6aa 94 Int_t GetHeaderLength() const {return fgkHeaderLength;}
71a2d3aa 95 /// Return end of regional info word
32def6aa 96 UInt_t GetEndOfReg() const {return fgkEndOfReg;}
9d14fb2e 97 /// Return error word
98 UInt_t GetErrorWord() const {return fgkErrorWord;}
32def6aa 99
71a2d3aa 100 /// Return header
00f56161 101 UInt_t* GetHeader() {return &fDarcWord;}
32def6aa 102
103 // scalar methods
71a2d3aa 104 /// Return regional clock
32def6aa 105 UInt_t GetClock() const {return fClk;}
71a2d3aa 106 /// Return regional ouput
32def6aa 107 const UInt_t* GetScaler() const {return fScaler;}
71a2d3aa 108 /// Return regional hold (dead time)
32def6aa 109 UInt_t GetHold() const {return fHold;}
110
71a2d3aa 111 /// Return scalers
d622a0ec 112 UInt_t* GetScalers() {return &fClk;}
32def6aa 113
71a2d3aa 114 /// get scaler length
32def6aa 115 Int_t GetScalerLength() const {return fgkScalerLength;}
116
71a2d3aa 117 /// set random numbers to fill variable
32def6aa 118 void SetScalersNumbers();
119
71a2d3aa 120 /// get TClonesArray
32def6aa 121 TClonesArray* GetLocalArray() const {return fLocalArray;}
122
71a2d3aa 123 /// get entries
32def6aa 124 Int_t GetLocalEntries() const {return fLocalArray->GetEntriesFast();}
125
71a2d3aa 126 /// get entry
32def6aa 127 AliMUONLocalStruct* GetLocalEntry(Int_t i) const {
128 return (AliMUONLocalStruct*)fLocalArray->At(i);}
129
130 // clear
131 void Clear(Option_t* opt);
132
133 private:
134
135 // regional header
00f56161 136 UInt_t fDarcWord; ///< darc word
137 UInt_t fWord; ///< first reg word
829425a5 138 UInt_t fInput[2]; ///< regional input
bebe0279 139 UShort_t fMask; ///< local mask ("poids faible" 16 bits)
140 UShort_t fL0; ///< L0 counter (16 bits)
32def6aa 141
142 // regional card scalers
829425a5 143 UInt_t fClk; ///< regional clock
144 UInt_t fScaler[8]; ///< regional ouput
145 UInt_t fHold; ///< regional hold (dead time)
32def6aa 146
829425a5 147 static const Int_t fgkScalerLength; ///< length of regional scaler in word
148 static const Int_t fgkHeaderLength; ///< header length in word
149 static const UInt_t fgkEndOfReg; ///< end of regional info word
9d14fb2e 150 static const UInt_t fgkErrorWord; ///< error word when a regional board is missing
151
829425a5 152 TClonesArray* fLocalArray; ///< array of local structure
32def6aa 153
9d14fb2e 154 ClassDef(AliMUONRegHeader,4) //MUON regional header for trigger
32def6aa 155};
156#endif