]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONBlockHeader.cxx
Update HFE v2 analyses
[u/mrichter/AliRoot.git] / MUON / AliMUONBlockHeader.cxx
CommitLineData
47c194a6 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 **************************************************************************/
13985652 15
16/* $Id$ */
47c194a6 17
18#include "AliMUONBlockHeader.h"
19#include "AliMUONDspHeader.h"
20
1ed3c5c2 21#include <Riostream.h>
22
3d1463c8 23//-----------------------------------------------------------------------------
00e86732 24/// \class AliMUONBlockHeader
47c194a6 25/// Block structure for tracker raw data
26/// each DDL contains two blocks,
27/// each block contains at most 5 dsp structure.
28/// Beside the total length and length of the below data
29/// the header of the block contains the front end DSP id, trigger words and paddind word
30///
00e86732 31/// \author Christian Finck
3d1463c8 32//-----------------------------------------------------------------------------
47c194a6 33
b80faac0 34using std::cout;
35using std::endl;
13985652 36/// \cond CLASSIMP
47c194a6 37ClassImp(AliMUONBlockHeader)
13985652 38/// \endcond
47c194a6 39
1c66abf3 40const Int_t AliMUONBlockHeader::fgkHeaderLength = 8;
84ceeb06 41const UInt_t AliMUONBlockHeader::fgkDefaultDataKey = 0xFC0000FC;
1c66abf3 42const UInt_t AliMUONBlockHeader::fgkDdlDataKey = 0xD000000D;
ce350193 43
44//___________________________________________
45AliMUONBlockHeader::AliMUONBlockHeader(TRootIOCtor* /*dummy*/)
46: TObject(),
47fDataKey(0),
48fTotalLength(0),
49fLength(0),
50fDspId(0),
51fL0Trigger(0),
52fMiniEventId(0),
53fEventId1(0),
54fEventId2(0),
55fDspHeaderArray(0x0)
56{
57 ///
58 /// ctor
59 ///
60
61}
62
47c194a6 63//___________________________________________
64AliMUONBlockHeader::AliMUONBlockHeader()
65 : TObject(),
84ceeb06 66 fDataKey(0),
47c194a6 67 fTotalLength(0),
68 fLength(0),
69 fDspId(0),
84ceeb06 70 fL0Trigger(0),
71 fMiniEventId(0),
72 fEventId1(0),
9f5dcca3 73 fEventId2(0),
74 fDspHeaderArray(new TClonesArray("AliMUONDspHeader", 5))
75
47c194a6 76{
00e86732 77 ///
78 /// ctor
79 ///
47c194a6 80
47c194a6 81}
82
83//___________________________________________
84AliMUONBlockHeader::~AliMUONBlockHeader()
85{
00e86732 86 ///
87 /// dtor
88 ///
47c194a6 89 fDspHeaderArray->Delete();
90 delete fDspHeaderArray;
91}
92
93//___________________________________________
94AliMUONBlockHeader::AliMUONBlockHeader(const AliMUONBlockHeader& event)
9f5dcca3 95 : TObject(event),
96 fDataKey(event.fDataKey),
97 fTotalLength(event.fTotalLength),
98 fLength(event.fLength),
99 fDspId(event.fDspId),
100 fL0Trigger(event.fL0Trigger),
101 fMiniEventId(event.fMiniEventId),
102 fEventId1(event.fEventId1),
103 fEventId2(event.fEventId2),
104 fDspHeaderArray(new TClonesArray("AliMUONDspHeader", 5))
47c194a6 105{
00e86732 106 ///
107 /// copy ctor
108 ///
84ceeb06 109
47c194a6 110 for (Int_t index = 0; index < (event.fDspHeaderArray)->GetEntriesFast(); index++) {
111 {new ((*fDspHeaderArray)[fDspHeaderArray->GetEntriesFast()])
112 AliMUONDspHeader(*(AliMUONDspHeader*)(event.fDspHeaderArray)->At(index));}
113 }
114 // fDspHeaderArray->SetOwner();
115}
116
117//___________________________________________
118AliMUONBlockHeader&
119AliMUONBlockHeader::operator=(const AliMUONBlockHeader &event)
120{
00e86732 121 ///
122 /// assignment operator
123 ///
47c194a6 124 if (this == &event) return *this;
125
1ed3c5c2 126 fDataKey = event.fDataKey;
47c194a6 127 fTotalLength = event.fTotalLength;
128 fLength = event.fLength;
129 fDspId = event.fDspId;
84ceeb06 130
131 fL0Trigger = event.fL0Trigger;
132 fMiniEventId = event.fMiniEventId;
133 fEventId1 = event.fEventId1;
134 fEventId2 = event.fEventId2;
47c194a6 135
136 fDspHeaderArray = new TClonesArray("AliMUONDspHeader", 5);
137 for (Int_t index = 0; index < (event.fDspHeaderArray)->GetEntriesFast(); index++) {
138 new ((*fDspHeaderArray)[fDspHeaderArray->GetEntriesFast()])
139 AliMUONDspHeader(*(AliMUONDspHeader*)(event.fDspHeaderArray)->At(index));
140 }
141
142 return *this;
143
144}
145//___________________________________________
146void AliMUONBlockHeader::AddDspHeader(const AliMUONDspHeader& dspHeader)
147{
00e86732 148 ///
149 /// adding the dsp structure
150 /// into the TClonesArray
151 ///
47c194a6 152 TClonesArray &dspArray = *fDspHeaderArray;
153 new(dspArray[dspArray.GetEntriesFast()]) AliMUONDspHeader(dspHeader);
154
155}
156//___________________________________________
157void AliMUONBlockHeader::Clear(Option_t* )
158{
00e86732 159 /// Clear TClones arrays
160 /// instead of deleting
161 ///
47c194a6 162 fDspHeaderArray->Clear("C");
163
164}
1ed3c5c2 165
166//___________________________________________
167void AliMUONBlockHeader::Print(Option_t* /*opt*/) const
168{
169 /// print out
170
171 cout << "CRT info" << endl;
172 cout << "DataKey: " << fDataKey << endl;
173 cout << "TotalLength: " << fTotalLength << endl;
174 cout << "Length: " << fLength << endl;
175 cout << "DspId: " << fDspId << endl;
176
177 cout << "L0Trigger: " << fL0Trigger << endl;
178 cout << "MiniEventId: " << fMiniEventId<< endl;
179 cout << "EventId1: " << fEventId1 << endl;
180 cout << "EventId2: " << fEventId2 << endl;;
181
182}