1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
16 //_________________________________________________________________________
17 // A brief description of the class
18 //*-- Author : Yves Schutz SUBATECH
19 //////////////////////////////////////////////////////////////////////////////
21 // --- ROOT system ---
25 // --- Standard library ---
29 // --- AliRoot header files ---
31 #include "AliPHOSClusterizerv1.h"
32 #include "AliPHOSDigit.h"
33 #include "AliPHOSEmcRecPoint.h"
34 #include "AliPHOSPpsdRecPoint.h"
35 #include "AliPHOSv0.h"
38 ClassImp(AliPHOSClusterizerv1)
40 //____________________________________________________________________________
41 AliPHOSClusterizerv1::AliPHOSClusterizerv1()
45 fNumberOfEmcClusters = 0 ;
46 fNumberOfPpsdClusters = 0 ;
47 fEmcClusteringThreshold = 0.1;
48 fEmcEnergyThreshold = 0.01;
49 fPpsdClusteringThreshold = 0.00000015;
50 fPpsdEnergyThreshold = 0.0000001;
55 //____________________________________________________________________________
56 Int_t AliPHOSClusterizerv1::AreNeighbours(AliPHOSDigit * d1, AliPHOSDigit * d2)
58 // neigbours are defined as digits having at least common vertex
59 // The order of A and B in AreNeighbours(A,B) is important: first (A) should be digit
60 // in cluster, which compared with digits not clusterized yet
63 AliPHOSGeometry * geom = AliPHOSGeometry::GetInstance() ;
66 geom->AbsToRelNumbering(d1->GetId(), relid1) ;
69 geom->AbsToRelNumbering(d2->GetId(), relid2) ;
71 if ( (relid1[0] == relid2[0]) && (relid1[1]==relid2[1]) ) { // inside the same PHOS module and the same PPSD Module
72 Int_t rowdiff = TMath::Abs( relid1[2] - relid2[2] ) ;
73 Int_t coldiff = TMath::Abs( relid1[3] - relid2[3] ) ;
75 if (( coldiff <= 1 ) && ( rowdiff <= 1 )){
79 if((relid2[2] > relid1[2]) && (relid2[3] > relid1[3]+1))
80 rv = 2; // Difference in row numbers is too large to look further
86 if( (relid1[0] < relid2[0]) || (relid1[1] < relid2[1]) )
94 //____________________________________________________________________________
95 void AliPHOSClusterizerv1::FillandSort(const DigitsList * dl, TObjArray * tl)
97 // copies the digits with energy above thershold and sorts the list
98 // according to increasing Id number
100 AliPHOSGeometry * geom = AliPHOSGeometry::GetInstance() ;
104 AliPHOSDigit * digit ;
109 while ( (digit = (AliPHOSDigit *)next()) ) {
111 // cout << " clusterizerv1 " << endl ;
112 // int nprim = digit->GetNprimary() ;
113 // int * aprim = digit->GetPrimary() ;
114 // for ( int ii = 0 ; ii < nprim ; ii++)
115 // cout << ii << " prim = " << aprim[ii] << endl ;
117 Int_t id = digit->GetId() ;
118 Float_t ene = Calibrate(digit->GetAmp()) ;
119 geom->AbsToRelNumbering(id, relid) ;
120 if(relid[1]==0){ // EMC
121 if ( ene > fEmcEnergyThreshold )
126 if ( ene > fPpsdEnergyThreshold )
134 //____________________________________________________________________________
135 void AliPHOSClusterizerv1:: GetNumberOfClustersFound(Int_t * numb)
137 numb[0] = fNumberOfEmcClusters ;
138 numb[1] = fNumberOfPpsdClusters ;
141 //____________________________________________________________________________
142 Bool_t AliPHOSClusterizerv1::IsInEmc(AliPHOSDigit * digit)
146 AliPHOSGeometry * geom = AliPHOSGeometry::GetInstance() ;
149 geom->AbsToRelNumbering(digit->GetId(), relid) ;
157 //____________________________________________________________________________
158 void AliPHOSClusterizerv1::MakeClusters(const DigitsList * dl, RecPointsList * emcl, RecPointsList * ppsdl)
162 // Fill and sort the working digits list
163 TObjArray tempodigitslist( dl->GetEntries() ) ;
164 FillandSort(dl, &tempodigitslist) ;
166 // Clusterization starts
167 TIter nextdigit(&tempodigitslist) ;
168 AliPHOSDigit * digit ;
169 Bool_t notremoved = kTRUE ;
172 while ( (digit = (AliPHOSDigit *)nextdigit()) ) { // scan over the list of digits
173 AliPHOSRecPoint * clu ;
175 int * clusterdigitslist[dl->GetEntries()] ;
177 if (( ( IsInEmc(digit) ) && ( Calibrate(digit->GetAmp() ) > fEmcClusteringThreshold ) ) ||
178 ( ( !IsInEmc(digit) ) && ( Calibrate(digit->GetAmp() ) > fPpsdClusteringThreshold ) ) ) {
180 Int_t iDigitInCluster = 0 ;
182 if ( IsInEmc(digit) ) {
183 new ((*emcl)[fNumberOfEmcClusters]) AliPHOSEmcRecPoint(fW0, fLocMaxCut) ; // start a new EMC RecPoint
184 clu = (AliPHOSEmcRecPoint *) (*emcl)[fNumberOfEmcClusters] ;
185 fNumberOfEmcClusters++ ;
186 clu->AddDigit(*digit, Calibrate(digit->GetAmp())) ;
188 clusterdigitslist[iDigitInCluster] = (int* ) digit ;
190 tempodigitslist.Remove(digit) ;
196 new ((*ppsdl)[fNumberOfPpsdClusters]) AliPHOSPpsdRecPoint() ; // start a new PPSD cluster
197 clu = (AliPHOSPpsdRecPoint *) ppsdl->At(fNumberOfPpsdClusters) ;
198 fNumberOfPpsdClusters++ ;
199 clu->AddDigit(*digit, Calibrate(digit->GetAmp()) ) ;
200 clusterdigitslist[iDigitInCluster] = (int* ) digit ;
202 tempodigitslist.Remove(digit) ;
205 // Here we remove resting EMC digits, which cannot make cluster
209 while( ( digit = (AliPHOSDigit *)nextdigit() ) ) {
212 tempodigitslist.Remove(digit) ;
224 AliPHOSDigit * digitN ;
226 while (index < iDigitInCluster){ // scan over digits already in cluster
227 digit = (AliPHOSDigit *) clusterdigitslist[index] ;
229 while ( (digitN = (AliPHOSDigit *)nextdigit()) ) { // scan over the reduced list of digits
230 Int_t ineb = AreNeighbours(digit, digitN); // call (digit,digitN) in THAT oder !!!!!
232 case 0 : // not a neighbour
234 case 1 : // are neighbours
235 clu->AddDigit( *digitN, Calibrate( digitN->GetAmp() ) ) ;
236 clusterdigitslist[iDigitInCluster] =(int*) digitN ;
238 tempodigitslist.Remove(digitN) ;
240 case 2 : // too far from each other
249 } // loop over cluster
251 } //below energy theshold
255 tempodigitslist.Clear() ;
258 //____________________________________________________________________________
259 void AliPHOSClusterizerv1::PrintParameters()
261 cout << "PHOS Clusterizer version 1 :" << endl
262 << " EMC Clustering threshold = " << fEmcClusteringThreshold << endl
263 << " EMC Energy threshold = " << fEmcEnergyThreshold << endl
264 << " PPSD Clustering threshold = " << fPpsdClusteringThreshold << endl
265 << " PPSD Energy threshold = " << fPpsdEnergyThreshold << endl ;