]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONDDLTracker.cxx
New class which will deal with the writing of DDL raw data and the endianess issue
[u/mrichter/AliRoot.git] / MUON / AliMUONDDLTracker.cxx
CommitLineData
f6762c71 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
8c343c7c 15
f6762c71 16#include "AliMUONDDLTracker.h"
69be760c 17#include "AliRawDataHeader.h"
f6762c71 18
19ClassImp(AliMUONDDLTracker)
85fec35d 20
21///
22/// \class AliMUONDDLTracker
23///
24/// A wrapper object for 1 DDL of the MUON tracking chambers.
25///
26/// \author C. Finck
27
c8f4be1a 28 const Int_t AliMUONDDLTracker::fgkBlkHeaderLength = 8;
29 const Int_t AliMUONDDLTracker::fgkDspHeaderLength = 8;
30 const Int_t AliMUONDDLTracker::fgkEndOfDDL = 0x0FFFFFFFF;
69be760c 31
f6762c71 32//___________________________________________
33AliMUONDDLTracker::AliMUONDDLTracker()
34 : TObject(),
69be760c 35 fTotalBlkLength(0),
36 fBlkLength(0),
37 fDSPId(0),
38 fPadding(0x0DEADDEAD),
39 fTotalDspLength(0),
40 fDspLength(0),
41 fDSPId1(0),
42 fEventWord(0)
f6762c71 43{
44 //ctor
69be760c 45 for (Int_t i = 0; i < 4; i++)
46 fBlkTriggerWord[i] = fDspTriggerWord[i] = 0;
f6762c71 47}