]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSDigit.cxx
initialize pointer data member to zero in the default ctor to avoid problems with...
[u/mrichter/AliRoot.git] / PHOS / AliPHOSDigit.cxx
CommitLineData
d15a28e7 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
b2a60966 16/* $Id$ */
17
d15a28e7 18//_________________________________________________________________________
b2a60966 19// PHOS digit: Id
20// energy
21// 3 identifiers for the primary particle(s) at the origine of the digit
22// The digits are made in FinishEvent() by summing all the hits in a single PHOS crystal or PPSD gas cell
23// It would be nice to replace the 3 identifiers by an array, but, because digits are kept in a TClonesQArray,
24// it is not possible to stream such an array... (beyond my understqnding!)
25//
26//*-- Author: Laurent Aphecetche & Yves Schutz (SUBATECH)
27
d15a28e7 28
29// --- ROOT system ---
30
31// --- Standard library ---
32
de9ec31b 33#include <iostream.h>
d15a28e7 34
35// --- AliRoot header files ---
36
37#include "AliPHOSDigit.h"
38
39
40ClassImp(AliPHOSDigit)
41
cf239357 42//____________________________________________________________________________
f741ce93 43 AliPHOSDigit::AliPHOSDigit()
cf239357 44{
b2a60966 45 // default ctor
46
83974468 47 fIndexInList = -1 ;
48 fNprimary = 0 ;
49 fPrimary1 = -1 ;
50 fPrimary2 = -1 ;
51 fPrimary3 = -1 ;
cf239357 52}
53
d15a28e7 54//____________________________________________________________________________
83974468 55AliPHOSDigit::AliPHOSDigit(Int_t primary, Int_t id, Int_t DigEnergy, Int_t index)
d15a28e7 56{
b2a60966 57 // ctor with all data
58
83974468 59 fAmp = DigEnergy ;
60 fId = id ;
61 fIndexInList = index ;
4a2ca5e9 62 if( primary != -1){
63 fNprimary = 1 ;
64 fPrimary1 = primary ;
65 }
66 else{ //If the contribution of this primary smaller than fDigitThreshold (AliPHOSv1)
67 fNprimary = 0 ;
68 fPrimary1 = -1 ;
69 }
22b03d33 70 fPrimary2 = -1 ;
71 fPrimary3 = -1 ;
cf239357 72}
73
74//____________________________________________________________________________
75AliPHOSDigit::AliPHOSDigit(const AliPHOSDigit & digit)
b2a60966 76{
77 // copy ctor
78
83974468 79 fAmp = digit.fAmp ;
80 fId = digit.fId;
81 fIndexInList = digit.fIndexInList ;
82 fNprimary = digit.fNprimary ;
83 fPrimary1 = digit.fPrimary1 ;
84 fPrimary2 = digit.fPrimary2 ;
85 fPrimary3 = digit.fPrimary3 ;
ff4c968a 86}
87
d15a28e7 88//____________________________________________________________________________
cf239357 89Int_t AliPHOSDigit::Compare(TObject * obj)
d15a28e7 90{
b2a60966 91 // Compares two digits with respect to its Id
92 // to sort according increasing Id
93
88714635 94 Int_t rv ;
cf239357 95
96 AliPHOSDigit * digit = (AliPHOSDigit *)obj ;
97
98 Int_t iddiff = fId - digit->GetId() ;
99
100 if ( iddiff > 0 )
101 rv = 1 ;
102 else if ( iddiff < 0 )
103 rv = -1 ;
104 else
105 rv = 0 ;
106
107 return rv ;
108
109}
26d4b141 110
111//____________________________________________________________________________
112Int_t AliPHOSDigit::GetPrimary(Int_t index) const
113{
b2a60966 114 // Returns the primary particle id index =1,2,3
115
26d4b141 116 Int_t rv = -1 ;
117 if ( index > 3 )
118 cout << "AliPHOSDigit ERROR > only 3 primaries allowed" << endl ;
119 else {
120 switch (index) {
121 case 1 :
122 rv = fPrimary1 ;
123 break ;
124 case 2 :
125 rv = fPrimary2 ;
126 break ;
127 case 3 :
128 rv = fPrimary3 ;
129 break ;
130 }
131 }
132
133 return rv ;
134
135}
136
cf239357 137//____________________________________________________________________________
138Bool_t AliPHOSDigit::operator==(AliPHOSDigit const & digit) const
139{
b2a60966 140 // Two digits are equal if they have the same Id
141
cf239357 142 if ( fId == digit.fId )
d15a28e7 143 return kTRUE ;
144 else
145 return kFALSE ;
146}
cf239357 147
d15a28e7 148//____________________________________________________________________________
cf239357 149AliPHOSDigit& AliPHOSDigit::operator+(AliPHOSDigit const & digit)
d15a28e7 150{
b2a60966 151 // Adds the amplitude of digits and completes the list of primary particles
4a2ca5e9 152 // if amplitude is larger than
31aa6d6c 153
cf239357 154 fAmp += digit.fAmp ;
31aa6d6c 155
26d4b141 156 // Here comes something crummy ... but I do not know how to stream pointers
4a2ca5e9 157 // because AliPHOSDigit is in a TCLonesArray
158
f741ce93 159 Int_t tempo1[3] ;
160 tempo1[0] = fPrimary1 ;
161 tempo1[1] = fPrimary2 ;
162 tempo1[2] = fPrimary3 ;
163
164 Int_t tempo2[3] ;
165 tempo2[0] = digit.fPrimary1 ;
166 tempo2[1] = digit.fPrimary2 ;
167 tempo2[2] = digit.fPrimary3 ;
168
169 Int_t max1 = fNprimary ;
170 Int_t max2 = digit.fNprimary ;
171
172 if ( fNprimary >= 3 ) {
173 cout << "AliPHOSDigit + operator ERROR > too many primaries, modify AliPHOSDigit" << endl ;
174 }
175 else {
176 fNprimary += digit.fNprimary ;
177 if ( fNprimary > 3 ) {
26d4b141 178 cout << "AliPHOSDigit + operator ERROR > too many primaries, modify AliPHOSDigit" << endl ;
6a3f1304 179 fNprimary = 3 ;
26d4b141 180 }
f741ce93 181
182 Int_t tempo3[3] ;
183 Int_t index ;
31aa6d6c 184 for (index = 0 ; index < 3 ; index++)
185 tempo3[index] = 0 ;
186
f741ce93 187 for (index = 0 ; index < max1 ; index++)
188 tempo3[index] = tempo1[index] ;
31aa6d6c 189
f741ce93 190 for (index = 0 ; index < max2 ; index++)
191 tempo3[index+max1] = tempo2[index] ;
192
193 fPrimary1 = tempo3[0] ;
194 fPrimary2 = tempo3[1] ;
195 fPrimary3 = tempo3[2] ;
26d4b141 196
f741ce93 197 }
26d4b141 198 // end of crummy stuff
199
d15a28e7 200 return *this ;
201}
202
203//____________________________________________________________________________
cf239357 204ostream& operator << ( ostream& out , const AliPHOSDigit & digit)
d15a28e7 205{
b2a60966 206 // Prints the data of the digit
207
208 out << "ID " << digit.fId << " Energy = " << digit.fAmp << endl
209 << "Primary 1 = " << digit.fPrimary1 << endl
210 << "Primary 2 = " << digit.fPrimary2 << endl
83974468 211 << "Primary 3 = " << digit.fPrimary3 << endl
212 << "Position in list = " << digit.fIndexInList << endl ;
d15a28e7 213 return out ;
214}
215
cf239357 216