]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONRegHeader.cxx
- Fix problem with EventSpecie when running online in DQM. The problem prevented...
[u/mrichter/AliRoot.git] / MUON / AliMUONRegHeader.cxx
index c72330af095e44466fdedd4870f3240303ea42d3..3a6be0e01dd8fb2fd0039c5224f5c9d82cf335ef 100644 (file)
  **************************************************************************/
 
 /* $Id$ */
+
 #include <TClonesArray.h>
 
 #include "AliMUONRegHeader.h"
 #include "AliMUONLocalStruct.h"
 
+//-----------------------------------------------------------------------------
 /// \class AliMUONRegHeader
 /// Regional structure for trigger raw data.
 /// Each Reg structure contains 16 (at most) local card structure.
@@ -26,6 +28,7 @@
 /// regional inputs
 /// 
 /// \author Christian Finck
+//-----------------------------------------------------------------------------
 
 /// \cond CLASSIMP
 ClassImp(AliMUONRegHeader)
@@ -34,6 +37,25 @@ ClassImp(AliMUONRegHeader)
  const Int_t  AliMUONRegHeader::fgkHeaderLength = 5;
  const Int_t  AliMUONRegHeader::fgkScalerLength = 10;
  const UInt_t AliMUONRegHeader::fgkEndOfReg     = 0xBEEFFACE;
+ const UInt_t AliMUONRegHeader::fgkErrorWord    = 0xCAFEDEAD;
+
+//___________________________________________
+AliMUONRegHeader::AliMUONRegHeader(TRootIOCtor* /*dummy*/)
+:  TObject(),
+fDarcWord(0),
+fWord(0),
+fMask(0),
+fL0(0),
+fClk(0),
+fHold(0),
+fLocalArray(0x0)
+{
+  /// ctor
+  fInput[0] = fInput[1] = 0;
+  
+  for (Int_t i = 0; i < 8; i++)
+    fScaler[i] = 0;  
+}
 
 //___________________________________________
 AliMUONRegHeader::AliMUONRegHeader()