]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSDigit.cxx
Changes imposed by HP-UX which ignores the new C++ standart
[u/mrichter/AliRoot.git] / PHOS / AliPHOSDigit.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
18 //_________________________________________________________________________
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
28
29 // --- ROOT system ---
30
31 // --- Standard library ---
32
33 #include <iostream.h>
34
35 // --- AliRoot header files ---
36
37 #include "AliPHOSDigit.h"
38
39
40 ClassImp(AliPHOSDigit)
41
42 //____________________________________________________________________________
43   AliPHOSDigit::AliPHOSDigit() 
44 {
45   // default ctor 
46
47   fNprimary = 0 ;  
48   fPrimary1 = -1 ; 
49   fPrimary2 = -1 ; 
50   fPrimary3 = -1 ;
51 }
52
53 //____________________________________________________________________________
54 AliPHOSDigit::AliPHOSDigit(Int_t primary, Int_t id, Int_t DigEnergy) 
55 {  
56   // ctor with all data 
57
58   fId         = id ;
59   fAmp        = DigEnergy ;
60   fPrimary1   = primary ;
61   fNprimary   = 1 ; 
62 }
63
64 //____________________________________________________________________________
65 AliPHOSDigit::AliPHOSDigit(const AliPHOSDigit & digit) 
66 {
67   // copy ctor
68   
69   fId       = digit.fId;
70   fAmp      = digit.fAmp ;
71   fNprimary = digit.fNprimary ;
72   fPrimary1 = digit.fPrimary1 ;
73   fPrimary2 = digit.fPrimary2 ;
74   fPrimary3 = digit.fPrimary3 ;
75 }
76
77 //____________________________________________________________________________
78 Int_t AliPHOSDigit::Compare(TObject * obj)
79 {
80   // Compares two digits with respect to its Id
81   // to sort according increasing Id
82
83   Int_t rv ; 
84
85   AliPHOSDigit * digit = (AliPHOSDigit *)obj ; 
86
87   Int_t iddiff = fId - digit->GetId() ; 
88
89   if ( iddiff > 0 ) 
90     rv = 1 ;
91   else if ( iddiff < 0 )
92     rv = -1 ; 
93   else
94     rv = 0 ;
95   
96   return rv ; 
97
98 }
99
100 //____________________________________________________________________________
101 Int_t AliPHOSDigit::GetPrimary(Int_t index) const
102 {
103   // Returns the primary particle id index =1,2,3
104  
105   Int_t rv = -1 ; 
106   if ( index > 3 )
107     cout << "AliPHOSDigit  ERROR > only 3 primaries allowed" << endl ; 
108   else {
109     switch (index) {  
110     case 1 :
111       rv = fPrimary1 ; 
112       break ; 
113     case 2 :
114       rv = fPrimary2 ; 
115       break ; 
116     case 3 :
117       rv = fPrimary3 ; 
118       break ; 
119     }
120   } 
121
122   return rv ; 
123
124 }
125
126 //____________________________________________________________________________
127 Bool_t AliPHOSDigit::operator==(AliPHOSDigit const & digit) const 
128 {
129   // Two digits are equal if they have the same Id
130   
131   if ( fId == digit.fId ) 
132     return kTRUE ;
133   else 
134     return kFALSE ;
135 }
136  
137 //____________________________________________________________________________
138 AliPHOSDigit& AliPHOSDigit::operator+(AliPHOSDigit const & digit) 
139 {
140   // Adds the amplitude of digits and completes the list of primary particles
141
142   fAmp += digit.fAmp ;
143   
144   // Here comes something crummy ... but I do not know how to stream pointers
145   // because AliPHOSDigit is in a TCLonesArray
146   
147   Int_t tempo1[3] ; 
148   tempo1[0] = fPrimary1 ; 
149   tempo1[1] = fPrimary2 ; 
150   tempo1[2] = fPrimary3 ; 
151
152   Int_t tempo2[3] ; 
153   tempo2[0] = digit.fPrimary1 ; 
154   tempo2[1] = digit.fPrimary2 ; 
155   tempo2[2] = digit.fPrimary3 ; 
156
157   Int_t max1 = fNprimary ; 
158   Int_t max2 = digit.fNprimary ; 
159  
160   if ( fNprimary >= 3 ) {
161     cout << "AliPHOSDigit + operator  ERROR > too many primaries, modify AliPHOSDigit" << endl ; 
162   } 
163   else {
164     fNprimary += digit.fNprimary ; 
165     if ( fNprimary > 3 ) {
166       cout << "AliPHOSDigit + operator  ERROR > too many primaries, modify AliPHOSDigit" << endl ; 
167       fNprimary = 3 ;
168     }
169     
170     Int_t tempo3[3] ;
171     Int_t index ; 
172     for (index = 0 ; index < 3 ; index++)
173       tempo3[index] = 0 ; 
174
175     for (index = 0 ; index < max1 ; index++)
176       tempo3[index] = tempo1[index] ;
177
178     for (index = 0 ; index < max2 ; index++)
179       tempo3[index+max1] = tempo2[index] ; 
180     
181     fPrimary1 = tempo3[0] ; 
182     fPrimary2 = tempo3[1] ; 
183     fPrimary3 = tempo3[2] ; 
184
185   }
186  // end of crummy stuff      
187
188   return *this ;
189 }
190
191 //____________________________________________________________________________
192 ostream& operator << ( ostream& out , const AliPHOSDigit & digit)
193 {
194   // Prints the data of the digit
195   
196   out << "ID " << digit.fId << " Energy = " << digit.fAmp << endl 
197       << "Primary 1 = " << digit.fPrimary1 << endl 
198       << "Primary 2 = " << digit.fPrimary2 << endl 
199       << "Primary 3 = " << digit.fPrimary3 << endl ;
200
201   return out ;
202 }
203
204