]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSPpsdRecPoint.cxx
can now read from HPSS
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPpsdRecPoint.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 **************************************************************************/
b2a60966 15/* $Id$ */
d15a28e7 16//_________________________________________________________________________
b2a60966 17// A RecPoint (cluster) in the PPSD
18// A PPSD RecPoint ends up to be a single digit
2f04ed65 19// Why should I put meaningless comments
20// just to satisfy
21// the code checker
b2a60966 22//
23//*-- Yves Schutz (SUBATECH)
d15a28e7 24
25// --- ROOT system ---
b2a60966 26
9f616d61 27#include "TPad.h"
b2a60966 28
d15a28e7 29// --- Standard library ---
30
de9ec31b 31#include <iostream.h>
d15a28e7 32
33// --- AliRoot header files ---
34
35#include "AliPHOSGeometry.h"
36#include "AliPHOSPpsdRecPoint.h"
c4073cad 37#include "AliPHOSCpvRecPoint.h"
d15a28e7 38#include "AliRun.h"
39
40ClassImp(AliPHOSPpsdRecPoint)
41
42//____________________________________________________________________________
43AliPHOSPpsdRecPoint::AliPHOSPpsdRecPoint(void)
44{
b2a60966 45 // ctor
46
d15a28e7 47 fMulDigit = 0 ;
ad8cfaf4 48 fGeom = AliPHOSGeometry::GetInstance() ;
d15a28e7 49 fLocPos.SetX(1000000.) ; //Local position should be evaluated
50}
51
d15a28e7 52//____________________________________________________________________________
83974468 53void AliPHOSPpsdRecPoint::AddDigit(AliPHOSDigit & digit, Float_t Energy)
d15a28e7 54{
55 // adds a digit to the digits list
56 // and accumulates the total amplitude and the multiplicity
57
58
59 if ( fMulDigit >= fMaxDigit ) { // increase the size of the lists
9f616d61 60 fMaxDigit*=2 ;
61 int * tempo = new ( int[fMaxDigit] ) ;
d15a28e7 62 Int_t index ;
63
64 for ( index = 0 ; index < fMulDigit ; index++ )
65 tempo[index] = fDigitsList[index] ;
66
9f616d61 67 delete [] fDigitsList ;
68 fDigitsList = new ( int[fMaxDigit] ) ;
69
70 for ( index = 0 ; index < fMulDigit ; index++ )
71 fDigitsList[index] = tempo[index] ;
72
73 delete [] tempo ;
d15a28e7 74 }
9f616d61 75
83974468 76 fDigitsList[fMulDigit++] = digit.GetIndexInList() ;
d15a28e7 77 fAmp += Energy ;
2731cd1e 78 EvalPHOSMod(&digit) ;
d15a28e7 79}
80
d15a28e7 81//____________________________________________________________________________
2a941f4e 82Int_t AliPHOSPpsdRecPoint::Compare(const TObject * obj) const
d15a28e7 83{
b2a60966 84 // Compares according to the position
2731cd1e 85 Float_t delta = 1 ; //width of the "Sorting row"
86
d15a28e7 87 Int_t rv ;
88
c4073cad 89 if( (strcmp(obj->ClassName() , "AliPHOSPpsdRecPoint" )) == 0) // PPSD Rec Point
90 {
91 AliPHOSPpsdRecPoint * clu = (AliPHOSPpsdRecPoint *)obj ;
92
2731cd1e 93 Float_t x1 , z1 ; //This rec point
94 Float_t x2 , z2 ; //
c4073cad 95
96 Int_t phosmod1 ;
97 Int_t phosmod2 ;
98
99 Int_t up1 ;
100 Int_t up2 ;
d15a28e7 101
c4073cad 102 if(GetUp()) // upper layer
103 up1 = 0 ;
104 else // lower layer
105 up1 = 1 ;
106
107 if(clu->GetUp()) // upper layer
108 up2 = 0 ;
109 else // lower layer
110 up2 = 1 ;
111
112 TVector3 posloc ;
2731cd1e 113 GetLocalPosition(posloc) ;
c4073cad 114 x1 = posloc.X() ;
115 z1 = posloc.Z() ;
2731cd1e 116 phosmod1 = GetPHOSMod();
c4073cad 117 clu->GetLocalPosition(posloc) ;
118 x2 = posloc.X() ;
119 z2 = posloc.Z() ;
120 phosmod2 = clu->GetPHOSMod();
121
122 if(phosmod1 == phosmod2 ) {
123
124 if(up1 == up2 ){
2731cd1e 125 Int_t rowdif = (Int_t)TMath::Ceil(x1/delta) - (Int_t) TMath::Ceil(x2/delta) ;
c4073cad 126
127 if (rowdif> 0)
2731cd1e 128 rv = 1 ;
129 else if(rowdif < 0)
c4073cad 130 rv = -1 ;
c4073cad 131 else if(z1>z2)
132 rv = -1 ;
133 else
134 rv = 1 ;
135 }
136
137 else {
138
139 if(up1 < up2 ) // Upper level first (up = True or False, True > False)
2731cd1e 140 rv = -1 ;
c4073cad 141 else
2731cd1e 142 rv = 1 ;
c4073cad 143 }
144
145 } // if phosmod1 == phosmod2
146
147 else {
148
149 if(phosmod1 < phosmod2 )
150 rv = -1 ;
151 else
152 rv = 1 ;
153
154 }
155
156 return rv ;
d15a28e7 157 }
c4073cad 158 else
159 {
160 AliPHOSCpvRecPoint * clu = (AliPHOSCpvRecPoint *) obj ;
2731cd1e 161 if(GetPHOSMod() < clu->GetPHOSMod() )
c4073cad 162 rv = -1 ;
d15a28e7 163 else
c4073cad 164 rv = 1 ;
165 return rv ;
d15a28e7 166 }
d15a28e7 167
d15a28e7 168
d15a28e7 169}
170
171//____________________________________________________________________________
2731cd1e 172void AliPHOSPpsdRecPoint::EvalAll(Float_t logWeight,TClonesArray * digits ){
173 AliPHOSRecPoint::EvalAll(logWeight,digits) ;
174 EvalLocalPosition(logWeight,digits) ;
175 EvalUp(digits) ;
ad8cfaf4 176}
177
178//____________________________________________________________________________
2731cd1e 179void AliPHOSPpsdRecPoint::EvalLocalPosition(Float_t logWeight,TClonesArray * digits )
b2a60966 180{
181 // Calculates the local position in the PHOS-PPSD-module corrdinates
182
d15a28e7 183 Int_t relid[4] ;
184
185 Float_t x = 0. ;
186 Float_t z = 0. ;
187
92862013 188 AliPHOSGeometry * phosgeom = (AliPHOSGeometry *) fGeom ;
d15a28e7 189
190 AliPHOSDigit * digit ;
191 Int_t iDigit;
192
6ad0bfa0 193 for(iDigit = 0; iDigit < fMulDigit; iDigit++) {
2731cd1e 194 digit = (AliPHOSDigit *) digits->At(fDigitsList[iDigit]) ;
d15a28e7 195
196 Float_t xi ;
197 Float_t zi ;
92862013 198 phosgeom->AbsToRelNumbering(digit->GetId(), relid) ;
199 phosgeom->RelPosInModule(relid, xi, zi);
d15a28e7 200 x += xi ;
201 z += zi ;
202 }
203
6ad0bfa0 204 x /= fMulDigit ;
205 z /= fMulDigit ;
d15a28e7 206
207 fLocPos.SetX(x) ;
208 fLocPos.SetY(0.) ;
209 fLocPos.SetZ(z) ;
210
d15a28e7 211}
212
213//____________________________________________________________________________
2731cd1e 214void AliPHOSPpsdRecPoint::EvalUp(TClonesArray * digits)
d15a28e7 215{
6c370def 216 // Are we in the uper PPSD module ?
217
d15a28e7 218 Int_t relid[4] ;
219
92862013 220 AliPHOSGeometry * phosgeom = (AliPHOSGeometry *) fGeom ;
d15a28e7 221
83974468 222
2731cd1e 223 AliPHOSDigit *digit = (AliPHOSDigit *) digits->At(fDigitsList[0]) ;
d15a28e7 224
92862013 225 phosgeom->AbsToRelNumbering(digit->GetId(),relid);
d15a28e7 226
227 if((Int_t)TMath::Ceil((Float_t)relid[1]/
92862013 228 (phosgeom->GetNumberOfModulesPhi()*phosgeom->GetNumberOfModulesZ())-0.0001 ) > 1)
2731cd1e 229 fUp = kFALSE ;
d15a28e7 230 else
2731cd1e 231 fUp = kTRUE ;
d15a28e7 232
d15a28e7 233}
9f616d61 234//______________________________________________________________________________
235void AliPHOSPpsdRecPoint::Paint(Option_t *)
236{
b2a60966 237 //*-*-*-*-*-*-*-*-*-*-*Paint this ALiRecPoint as a TMarker with its current attributes*-*-*-*-*-*-*
238 //*-* =============================================
239
240 TVector3 pos(0.,0.,0.) ;
241 GetLocalPosition(pos) ;
242 Coord_t x = pos.X() ;
243 Coord_t y = pos.Z() ;
244 Color_t markercolor = 1 ;
245 Size_t markersize = 1. ;
246 Style_t markerstyle = 2 ;
247 if (GetUp())
248 markerstyle = 3 ;
249
250 if (!gPad->IsBatch()) {
251 gVirtualX->SetMarkerColor(markercolor);
252 gVirtualX->SetMarkerSize (markersize);
253 gVirtualX->SetMarkerStyle(markerstyle);
254 }
255 gPad->SetAttMarkerPS(markercolor,markerstyle,markersize);
256 gPad->PaintPolyMarker(1,&x,&y,"");
257
258
9f616d61 259}
d15a28e7 260
261//____________________________________________________________________________
262void AliPHOSPpsdRecPoint::Print(Option_t * option)
263{
b2a60966 264 // Print the digits information
265
d15a28e7 266 cout << "AliPHOSPpsdRecPoint: " << endl ;
267
2731cd1e 268 Int_t iDigit;
269 cout << " Digit{s} # " ;
270 for(iDigit=0; iDigit<fMulDigit; iDigit++)
271 cout << fDigitsList[iDigit] << " " ;
272 cout << endl ;
273
d15a28e7 274 cout << " Multiplicity = " << fMulDigit << endl ;
83974468 275 cout << " Stored at position " << fIndexInList << endl ;
d15a28e7 276}
277
278