]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONRegHeader.cxx
TPCNoiseMapComponent included into build (Kelly)
[u/mrichter/AliRoot.git] / MUON / AliMUONRegHeader.cxx
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  **************************************************************************/
15
16 /* $Id$ */
17 #include <TClonesArray.h>
18
19 #include "AliMUONRegHeader.h"
20 #include "AliMUONLocalStruct.h"
21
22 //-----------------------------------------------------------------------------
23 /// \class AliMUONRegHeader
24 /// Regional structure for trigger raw data.
25 /// Each Reg structure contains 16 (at most) local card structure.
26 /// The structure includes the information of the Reg. boards and
27 /// regional inputs
28 /// 
29 /// \author Christian Finck
30 //-----------------------------------------------------------------------------
31
32 /// \cond CLASSIMP
33 ClassImp(AliMUONRegHeader)
34 /// \endcond
35  
36  const Int_t  AliMUONRegHeader::fgkHeaderLength = 5;
37  const Int_t  AliMUONRegHeader::fgkScalerLength = 10;
38  const UInt_t AliMUONRegHeader::fgkEndOfReg     = 0xBEEFFACE;
39
40 //___________________________________________
41 AliMUONRegHeader::AliMUONRegHeader()
42   :  TObject(),
43      fDarcWord(0),
44      fWord(0),
45      fMask(0),
46      fL0(0),
47      fClk(0),
48      fHold(0),
49      fLocalArray(new TClonesArray("AliMUONLocalStruct",16))
50 {
51   /// ctor
52  
53   fInput[0] = fInput[1] = 0;
54
55   for (Int_t i = 0; i < 8; i++)
56     fScaler[i] = 0;
57
58 }
59
60 //___________________________________________
61 AliMUONRegHeader::~AliMUONRegHeader()
62 {
63   /// dtor
64  
65   fLocalArray->Delete();
66   delete fLocalArray;
67 }
68
69 //___________________________________________
70 AliMUONRegHeader::AliMUONRegHeader(const AliMUONRegHeader& event)
71   :  TObject(event),
72      fDarcWord(event.fDarcWord),
73      fWord(event.fWord),
74      fMask(event.fMask),
75      fL0(event.fL0),
76      fClk(event.fClk),
77      fHold(event.fHold),
78      fLocalArray(new TClonesArray("AliMUONLocalStruct", 16))
79 {
80   ///
81   /// copy ctor
82   ///
83
84   fInput[0] = event.fInput[0];
85   fInput[1] = event.fInput[1];
86
87   for (Int_t i = 0; i < 8; i++)
88     fScaler[i] = event.fScaler[i];
89
90   for (Int_t index = 0; index < (event.fLocalArray)->GetEntriesFast(); index++) {
91     {new ((*fLocalArray)[fLocalArray->GetEntriesFast()]) 
92         AliMUONLocalStruct(*(AliMUONLocalStruct*)(event.fLocalArray)->At(index));}
93   }
94 }
95
96 //___________________________________________
97 AliMUONRegHeader& AliMUONRegHeader::operator=(const AliMUONRegHeader& event)
98 {
99   /// 
100   /// assignment operator
101   ///
102
103   if (this == &event) return *this;
104
105   fDarcWord = event.fDarcWord;
106   fWord     = event.fWord;
107   fClk      = event.fClk;
108   fHold     = event.fHold;
109   fL0       = event.fL0;
110   fMask     = event.fMask;
111
112   fInput[0] = event.fInput[0];
113   fInput[1] = event.fInput[1];
114
115   for (Int_t i = 0; i < 8; i++)
116     fScaler[i] = event.fScaler[i];
117
118   fLocalArray = new TClonesArray("AliMUONLocalStruct", 16);
119   for (Int_t index = 0; index < (event.fLocalArray)->GetEntriesFast(); index++) {
120     {new ((*fLocalArray)[fLocalArray->GetEntriesFast()]) 
121         AliMUONLocalStruct(*(AliMUONLocalStruct*)(event.fLocalArray)->At(index));}
122   }
123
124   return *this;
125 }
126
127 //___________________________________________
128 void AliMUONRegHeader::SetScalersNumbers()
129 {
130   /// set numbers for scaler events for Regional header
131   /// since this is provided by the experiment
132   /// put dummy numbers to check the monitoring
133   
134   fClk  = 10000;
135   fHold = 100; 
136   
137   for (Int_t i = 0; i < 8; i++)
138     fScaler[i] = i;  
139 }
140
141 //___________________________________________
142 void AliMUONRegHeader::Clear(Option_t* )
143 {
144   /// Clear TClones arrays
145   /// instead of deleting
146   ///
147   fLocalArray->Clear("C");
148  
149 }