]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSTrackSegmentMakerv1.cxx
Revert changes made in revision 32751
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMakerv1.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 /* $Id$ */
16
17 /* History of cvs commits:
18  *
19  * $Log$
20  * Revision 1.93  2007/10/10 09:05:10  schutz
21  * Changing name QualAss to QA
22  *
23  * Revision 1.92  2007/08/28 12:55:08  policheh
24  * Loaders removed from the reconstruction code (C.Cheshkov)
25  *
26  * Revision 1.91  2007/08/07 14:12:03  kharlov
27  * Quality assurance added (Yves Schutz)
28  *
29  * Revision 1.90  2007/07/11 13:43:30  hristov
30  * New class AliESDEvent, backward compatibility with the old AliESD (Christian)
31  *
32  * Revision 1.89  2007/07/03 08:13:04  kharlov
33  * Bug fix in CPV local coordinates
34  *
35  * Revision 1.88  2007/06/27 09:11:07  kharlov
36  * Bug fix for CPV-EMC distance
37  *
38  * Revision 1.87  2007/05/04 14:49:29  policheh
39  * AliPHOSRecPoint inheritance from AliCluster
40  *
41  * Revision 1.86  2007/04/02 15:00:16  cvetan
42  * No more calls to gAlice in the reconstruction
43  *
44  * Revision 1.85  2007/03/28 19:18:15  kharlov
45  * RecPoints recalculation in TSM removed
46  *
47  * Revision 1.84  2007/03/07 07:01:21  hristov
48  * Fixing copy/paste erro. Additional protections
49  *
50  * Revision 1.83  2007/03/06 21:07:37  kharlov
51  * DP: xz CPV-EMC distance filled to TS
52  *
53  * Revision 1.82  2007/03/06 06:54:48  kharlov
54  * DP:Calculation of cluster properties dep. on vertex added
55  *
56  * Revision 1.81  2007/02/05 10:02:40  kharlov
57  * Module numbering is corrected
58  *
59  * Revision 1.80  2006/08/28 10:01:56  kharlov
60  * Effective C++ warnings fixed (Timur Pocheptsov)
61  *
62  * Revision 1.79  2006/04/25 12:41:15  hristov
63  * Moving non-persistent data to AliESDfriend (Yu.Belikov)
64  *
65  * Revision 1.78  2005/11/18 13:04:51  hristov
66  * Bug fix
67  *
68  * Revision 1.77  2005/11/17 23:34:36  hristov
69  * Corrected logics
70  *
71  * Revision 1.76  2005/11/17 22:29:12  hristov
72  * Faster version, no attempt to match tracks outside the PHOS acceptance
73  *
74  * Revision 1.75  2005/11/17 12:35:27  hristov
75  * Use references instead of objects. Avoid to create objects when they are not really needed
76  *
77  * Revision 1.74  2005/07/08 14:01:36  hristov
78  * Tracking in non-uniform nmagnetic field (Yu.Belikov)
79  *
80  * Revision 1.73  2005/05/28 14:19:05  schutz
81  * Compilation warnings fixed by T.P.
82  *
83  */
84
85 //_________________________________________________________________________
86 // Implementation version 1 of algorithm class to construct PHOS track segments
87 // Track segment for PHOS is list of 
88 //        EMC RecPoint + (possibly) CPV RecPoint
89 // To find TrackSegments we do the following: 
90 //  for each EMC RecPoints we look at
91 //   CPV RecPoints in the radious fRcpv. 
92 //  If there is such a CPV RecPoint, 
93 //   we make "Link" it is just indexes of EMC and CPV RecPoint and distance
94 //   between them in the PHOS plane. 
95 //  Then we sort "Links" and starting from the 
96 //   least "Link" pointing to the unassined EMC and CPV RecPoints assing them to 
97 //   new TrackSegment. 
98 // If there is no CPV RecPoint we make TrackSegment 
99 // consisting from EMC alone. There is no TrackSegments without EMC RecPoint.
100 //// In principle this class should be called from AliPHOSReconstructor, but 
101 // one can use it as well in standalone mode.
102 // Use  case:
103 //  root [0] AliPHOSTrackSegmentMakerv1 * t = new AliPHOSTrackSegmentMaker("galice.root", "tracksegmentsname", "recpointsname")
104 //  Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
105 //               // reads gAlice from header file "galice.root", uses recpoints stored in the branch names "recpointsname" (default = "Default")
106 //               // and saves recpoints in branch named "tracksegmentsname" (default = "recpointsname")                       
107 //  root [1] t->ExecuteTask()
108 //  root [3] t->SetTrackSegmentsBranch("max distance 5 cm")
109 //  root [4] t->ExecuteTask("deb all time") 
110 //                 
111 //*-- Author: Dmitri Peressounko (RRC Ki & SUBATECH) & Yves Schutz (SUBATECH) 
112 //
113
114 // --- ROOT system ---
115 #include "TTree.h"
116 #include "TBenchmark.h"
117
118 // --- Standard library ---
119 #include "Riostream.h"
120 // --- AliRoot header files ---
121 #include "AliPHOSGeometry.h"
122 #include "AliPHOSTrackSegmentMakerv1.h"
123 #include "AliPHOSTrackSegment.h"
124 #include "AliPHOSLink.h"
125 #include "AliESDEvent.h"
126 #include "AliESDtrack.h"
127 #include "AliPHOSEmcRecPoint.h"
128 #include "AliPHOSCpvRecPoint.h"
129 #include "AliLog.h"
130
131 ClassImp( AliPHOSTrackSegmentMakerv1) 
132
133
134 //____________________________________________________________________________
135 AliPHOSTrackSegmentMakerv1::AliPHOSTrackSegmentMakerv1() :
136   AliPHOSTrackSegmentMaker(),
137   fDefaultInit(kTRUE),
138   fWrite(kFALSE),
139   fNTrackSegments(0),
140   fRcpv(0.f),
141   fRtpc(0.f),
142   fVtx(0.f), 
143   fLinkUpArray(0),
144   fEmcFirst(0),
145   fEmcLast(0),
146   fCpvFirst(0),
147   fCpvLast(0),
148   fModule(0),
149   fTrackSegments(NULL)
150 {
151   // default ctor (to be used mainly by Streamer)
152   InitParameters() ; 
153 }
154
155 //____________________________________________________________________________
156 AliPHOSTrackSegmentMakerv1::AliPHOSTrackSegmentMakerv1(AliPHOSGeometry *geom) :
157   AliPHOSTrackSegmentMaker(geom),
158   fDefaultInit(kFALSE),
159   fWrite(kFALSE),
160   fNTrackSegments(0),
161   fRcpv(0.f),
162   fRtpc(0.f),
163   fVtx(0.f), 
164   fLinkUpArray(0),
165   fEmcFirst(0),
166   fEmcLast(0),
167   fCpvFirst(0),
168   fCpvLast(0),
169   fModule(0),
170   fTrackSegments(NULL)
171 {
172   // ctor
173   InitParameters() ; 
174   Init() ;
175   fESD = 0;
176 }
177
178
179 AliPHOSTrackSegmentMakerv1::AliPHOSTrackSegmentMakerv1(const AliPHOSTrackSegmentMakerv1 & tsm) :
180   AliPHOSTrackSegmentMaker(tsm),
181   fDefaultInit(kFALSE),
182   fWrite(kFALSE),
183   fNTrackSegments(0),
184   fRcpv(0.f),
185   fRtpc(0.f),
186   fVtx(0.f), 
187   fLinkUpArray(0),
188   fEmcFirst(0),
189   fEmcLast(0),
190   fCpvFirst(0),
191   fCpvLast(0),
192   fModule(0),
193   fTrackSegments(NULL)
194 {
195   // cpy ctor: no implementation yet
196   // requested by the Coding Convention
197   Fatal("cpy ctor", "not implemented") ;
198 }
199
200
201 //____________________________________________________________________________
202  AliPHOSTrackSegmentMakerv1::~AliPHOSTrackSegmentMakerv1()
203
204   // dtor
205   // fDefaultInit = kTRUE if TrackSegmentMaker created by default ctor (to get just the parameters)
206   if (!fDefaultInit)  
207     delete fLinkUpArray ;
208   if (fTrackSegments) {
209     fTrackSegments->Delete();
210     delete fTrackSegments;
211   }
212 }
213
214 //____________________________________________________________________________
215 void  AliPHOSTrackSegmentMakerv1::FillOneModule()
216 {
217   // Finds first and last indexes between which 
218   // clusters from one PHOS module are
219
220   //First EMC clusters
221   Int_t totalEmc = fEMCRecPoints->GetEntriesFast() ;
222   for(fEmcFirst = fEmcLast; (fEmcLast < totalEmc) &&  
223         ((dynamic_cast<AliPHOSRecPoint *>(fEMCRecPoints->At(fEmcLast)))->GetPHOSMod() == fModule ); 
224       fEmcLast ++)  ;
225   
226   //Now CPV clusters
227   Int_t totalCpv = fCPVRecPoints->GetEntriesFast() ;
228
229     for(fCpvFirst = fCpvLast; (fCpvLast < totalCpv) && 
230          ((dynamic_cast<AliPHOSRecPoint *>(fCPVRecPoints->At(fCpvLast)))->GetPHOSMod() == fModule ); 
231        fCpvLast ++) ;
232       
233 }
234
235 //____________________________________________________________________________
236 void  AliPHOSTrackSegmentMakerv1::GetDistanceInPHOSPlane(AliPHOSEmcRecPoint * emcClu,
237                                                          AliPHOSCpvRecPoint * cpvClu, 
238                                                          Int_t &trackindex, 
239                                                          Float_t &dx, Float_t &dz) const
240 {
241   // Calculates the distance between the EMC RecPoint and the CPV RecPoint
242   // If no CPV, calculates the distance between the EMC RecPoint and the track
243   // prolongation to the PHOS module plane.
244   // Clusters are sorted in "rows" and "columns" of width 1 cm
245
246 //  Float_t delta = 1 ;  // Width of the rows in sorting of RecPoints (in cm)
247 //                       // if you change this value, change it as well in xxxRecPoint::Compare()
248
249   if(!cpvClu) {
250     
251     trackindex = -1;
252     dx=999.;
253     dz=999.;
254     
255     if(!emcClu) {
256       return;
257     }
258
259     TVector3 emcGlobal;
260     fGeom->GetGlobalPHOS((AliPHOSRecPoint*)emcClu,emcGlobal);
261     
262     // Radius from IP to current point
263     Double_t rEMC = TMath::Abs(emcGlobal.Pt());
264     
265     // Extrapolate the global track direction to EMC
266     // and find the closest track
267     
268     Int_t nTracks = fESD->GetNumberOfTracks();
269     
270     AliESDtrack *track;
271     Double_t xyz[] = {-1,-1,-1};
272     Double_t pxyz[3];
273     Double_t zEMC,xEMC;
274     Int_t module;
275     TVector3 vecP;
276     TVector3 locClu;
277
278     Float_t minDistance = 1.e6;
279     Float_t dr;
280
281     for (Int_t iTrack=0; iTrack<nTracks; iTrack++) {
282       track = fESD->GetTrack(iTrack);
283       if (!track->GetXYZAt(rEMC, fESD->GetMagneticField(), xyz)) continue;
284
285       AliDebug(1,Form("Event %d, iTrack: %d, (%.3f,%.3f,%.3f)",
286              fESD->GetEventNumberInFile(),iTrack,xyz[0],xyz[1],xyz[2]));
287       
288       if (track->GetPxPyPzAt(rEMC,fESD->GetMagneticField(),pxyz)) { 
289
290         vecP.SetXYZ(pxyz[0],pxyz[1],pxyz[2]);
291         fGeom->ImpactOnEmc(xyz,vecP.Theta(),vecP.Phi(),module,zEMC,xEMC) ;
292
293         if(!module) continue;
294         AliDebug(1,Form("\t\tTrack hit PHOS! Module: %d, (x,z)=(%.3f,%.3f)",module,xEMC,zEMC));
295         
296         if(emcClu->GetPHOSMod() != module) continue;
297         
298         // match track to EMC cluster
299         emcClu->GetLocalPosition(locClu);
300         
301         Float_t delta_x = xEMC - locClu.X();
302         Float_t delta_z = zEMC - locClu.Z();
303         dr = TMath::Sqrt(delta_x*delta_x + delta_z*delta_z);
304         AliDebug(1,Form("\tMatch iTrack=%d: (dx,dz)=(%.3f,%.3f)",iTrack,delta_x,delta_z));
305         
306         if(dr<minDistance) {
307           trackindex = iTrack;
308           minDistance = dr;
309           dx = delta_x;
310           dz = delta_z;
311         }
312       }
313       
314     }
315     
316     if(trackindex>=0)
317       AliDebug(1,Form("\t\tBest match for (xClu,zClu,eClu)=(%.3f,%.3f,%.3f): iTrack=%d, dR=%.3f",
318                       locClu.X(),locClu.Z(),emcClu->GetEnergy(),
319                       trackindex,TMath::Sqrt(dx*dx+dz*dz)));      
320     return;
321   }
322   
323   Float_t distance2Track = fRtpc ; 
324   
325   trackindex = -1 ; // closest track within fRCpv 
326
327   TVector3 vecEmc ;   // Local position of EMC recpoint
328   TVector3 vecP ;     // Momentum direction at CPV plain
329   TVector3 vecPloc ;     // Momentum direction at CPV plain
330   
331   //toofar = kTRUE ;
332   if(emcClu->GetPHOSMod() != cpvClu->GetPHOSMod()){
333     dx=999. ;
334     dz=999. ;
335     return ;
336   }
337
338   emcClu->GetLocalPosition(vecEmc) ;
339
340   Double_t xCPV,zCPV ; //EMC-projected coordinates of CPV cluster 
341   TVector3 cpvGlobal; // Global position of the CPV recpoint
342   fGeom->GetGlobalPHOS((AliPHOSRecPoint*)cpvClu,cpvGlobal);
343   Double_t vtxCPV[3]={cpvGlobal.X(),cpvGlobal.Y(),cpvGlobal.Z()} ;
344   Int_t dummyMod ;
345
346   if (fESD == 0x0) {
347      //if no track information available, assume straight line from IP to emcal
348      fGeom->ImpactOnEmc(vtxCPV,cpvGlobal.Theta(),cpvGlobal.Phi(),dummyMod,zCPV,xCPV) ;
349      dx=xCPV - vecEmc.X() ;
350      dz=zCPV - vecEmc.Z() ;
351      return ;
352   } 
353
354   //if there is ESD try to correct distance using TPC information on particle direct in CPV 
355   if (fESD != 0x0) {
356
357     Double_t rCPV = cpvGlobal.Pt() ;// Radius from IP to current point 
358
359     // Extrapolate the global track direction if any to CPV and find the closest track
360     Int_t nTracks = fESD->GetNumberOfTracks();
361     Int_t iClosestTrack = -1;
362     Double_t minDistance = 1.e6;
363     TVector3 inPHOS ; 
364
365     AliESDtrack *track;
366     Double_t xyz[3] ;
367     Double_t pxyz[3]; 
368     for (Int_t iTrack=0; iTrack<nTracks; iTrack++) {
369       track = fESD->GetTrack(iTrack);
370       if (!track->GetXYZAt(rCPV, fESD->GetMagneticField(), xyz))
371            continue; //track coord on the cylinder of PHOS radius
372       if ((TMath::Abs(xyz[0])+TMath::Abs(xyz[1])+TMath::Abs(xyz[2]))<=0)
373            continue;
374       //Check if this track hits PHOS
375       inPHOS.SetXYZ(xyz[0],xyz[1],xyz[2]);
376       distance2Track = inPHOS.Angle(cpvGlobal) ;
377       // Find the closest track to the CPV recpoint
378       if (distance2Track < minDistance) {
379          minDistance = distance2Track;
380          iClosestTrack = iTrack;
381       }
382     }
383
384     if (iClosestTrack != -1) {
385       track = fESD->GetTrack(iClosestTrack);
386       if (track->GetPxPyPzAt(rCPV, fESD->GetMagneticField(), pxyz)) { // track momentum ibid.
387         vecP.SetXYZ(pxyz[0],pxyz[1],pxyz[2]);
388         fGeom->ImpactOnEmc(vtxCPV,vecP.Theta(),vecP.Phi(),dummyMod,zCPV,xCPV) ;
389       }
390     }
391     
392     if(minDistance < fRtpc ){
393       trackindex = iClosestTrack ; 
394     }
395   }
396   if(trackindex!=-1){
397     // If the closest global track is found, calculate EMC-CPV distance from it
398     dx=xCPV - vecEmc.X() ;
399     dz=zCPV - vecEmc.Z() ;
400   }
401   else{
402     // If no global track was found, just take the nearest CPV point
403     fGeom->ImpactOnEmc(vtxCPV,cpvGlobal.Theta(),cpvGlobal.Phi(),dummyMod,zCPV,xCPV) ;
404     dx=xCPV - vecEmc.X() ;
405     dz=zCPV - vecEmc.Z() ;
406   }
407   return ;
408 }
409 //____________________________________________________________________________
410 void  AliPHOSTrackSegmentMakerv1::Init()
411 {
412   // Make all memory allocations that are not possible in default constructor
413   
414   fLinkUpArray  = new TClonesArray("AliPHOSLink", 1000); 
415   fTrackSegments = new TClonesArray("AliPHOSTrackSegment",100);
416   fTrackSegments->SetName("TRACKS");
417 }
418
419 //____________________________________________________________________________
420 void  AliPHOSTrackSegmentMakerv1::InitParameters()
421 {
422   //Initializes parameters
423   fRcpv      = 10. ;
424   fRtpc      = 4. ;
425   fEmcFirst  = 0 ;    
426   fEmcLast   = 0 ;   
427   fCpvFirst  = 0 ;   
428   fCpvLast   = 0 ;   
429   fLinkUpArray = 0 ;
430   fWrite                   = kTRUE ;
431 }
432
433
434 //____________________________________________________________________________
435 void  AliPHOSTrackSegmentMakerv1::MakeLinks()const
436
437   // Finds distances (links) between all EMC and CPV clusters, 
438   // which are not further apart from each other than fRcpv 
439   // and sort them in accordance with this distance
440   
441   fLinkUpArray->Clear() ;    
442
443   AliPHOSCpvRecPoint * cpv ;
444   AliPHOSEmcRecPoint * emcclu ;
445
446   Int_t iLinkUp  = 0 ;
447   
448   Int_t iEmcRP;
449   for(iEmcRP = fEmcFirst; iEmcRP < fEmcLast; iEmcRP++ ) {
450     emcclu = dynamic_cast<AliPHOSEmcRecPoint *>(fEMCRecPoints->At(iEmcRP)) ;
451
452     //Bool_t toofar ;        
453     Int_t iCpv = 0 ;    
454     for(iCpv = fCpvFirst; iCpv < fCpvLast;iCpv++ ) { 
455       
456       cpv = dynamic_cast<AliPHOSCpvRecPoint *>(fCPVRecPoints->At(iCpv)) ;
457       Int_t track = -1 ; 
458       Float_t dx,dz ;
459       GetDistanceInPHOSPlane(emcclu, cpv, track,dx,dz) ;     
460       if(TMath::Sqrt(dx*dx+dz*dz) < fRcpv ){ 
461         new ((*fLinkUpArray)[iLinkUp++])  AliPHOSLink(dx, dz, iEmcRP, iCpv, track) ;
462       }      
463     }
464   } 
465   
466   fLinkUpArray->Sort() ;  //first links with smallest distances
467 }
468
469 //____________________________________________________________________________
470 void  AliPHOSTrackSegmentMakerv1::MakePairs()
471
472   // Using the previously made list of "links", we found the smallest link - i.e. 
473   // link with the least distance between EMC and CPV and pointing to still 
474   // unassigned RecParticles. We assign these RecPoints to TrackSegment and 
475   // remove them from the list of "unassigned". 
476
477   //Make arrays to mark clusters already chosen
478   Int_t * emcExist = 0;
479   if(fEmcLast > fEmcFirst)
480     emcExist = new Int_t[fEmcLast-fEmcFirst] ;
481   
482   Int_t index;
483   for(index = 0; index <fEmcLast-fEmcFirst; index ++)
484     emcExist[index] = 1 ;
485   
486   Bool_t * cpvExist = 0;
487   if(fCpvLast > fCpvFirst)
488     cpvExist = new Bool_t[fCpvLast-fCpvFirst] ;
489   for(index = 0; index <fCpvLast-fCpvFirst; index ++)
490     cpvExist[index] = kTRUE ;
491   
492   
493   // Finds the smallest links and makes pairs of CPV and EMC clusters with smallest distance 
494   TIter nextUp(fLinkUpArray) ;
495   
496   AliPHOSLink * linkUp ;
497   
498   AliPHOSCpvRecPoint * nullpointer = 0 ;
499   
500   while ( (linkUp =  static_cast<AliPHOSLink *>(nextUp()) ) ){  
501
502     if(emcExist[linkUp->GetEmc()-fEmcFirst] != -1){
503
504       if(cpvExist[linkUp->GetCpv()-fCpvFirst]){ //CPV still exist
505          Float_t dx,dz ;
506          linkUp->GetXZ(dx,dz) ;
507          new ((* fTrackSegments)[fNTrackSegments]) 
508            AliPHOSTrackSegment(dynamic_cast<AliPHOSEmcRecPoint *>(fEMCRecPoints->At(linkUp->GetEmc())) , 
509                                dynamic_cast<AliPHOSCpvRecPoint *>(fCPVRecPoints->At(linkUp->GetCpv())) , 
510                                linkUp->GetTrack(),dx,dz) ;
511          
512        (dynamic_cast<AliPHOSTrackSegment *>(fTrackSegments->At(fNTrackSegments)))->SetIndexInList(fNTrackSegments);
513        fNTrackSegments++ ;
514        emcExist[linkUp->GetEmc()-fEmcFirst] = -1 ; //Mark emc  that Cpv was found 
515        //mark CPV recpoint as already used 
516        cpvExist[linkUp->GetCpv()-fCpvFirst] = kFALSE ;
517       } //if CpvUp still exist
518     } 
519   }        
520
521   //look through emc recPoints left without CPV
522   if(emcExist){ //if there is emc rec point
523     Int_t iEmcRP ;
524     for(iEmcRP = 0; iEmcRP < fEmcLast-fEmcFirst  ; iEmcRP++ ){
525       if(emcExist[iEmcRP] > 0 ){
526         Int_t track = -1 ;
527         Float_t dx,dz ;
528         AliPHOSEmcRecPoint *emcclu = dynamic_cast<AliPHOSEmcRecPoint *>(fEMCRecPoints->At(iEmcRP+fEmcFirst));
529         GetDistanceInPHOSPlane(emcclu, 0, track,dx,dz);
530         if(track<0)
531           new ((*fTrackSegments)[fNTrackSegments]) AliPHOSTrackSegment(emcclu,nullpointer) ;
532         else
533           new ((*fTrackSegments)[fNTrackSegments]) AliPHOSTrackSegment(emcclu,0,track,dx,dz);
534         (dynamic_cast<AliPHOSTrackSegment *>(fTrackSegments->At(fNTrackSegments)))->SetIndexInList(fNTrackSegments);
535         fNTrackSegments++;    
536       } 
537     }
538   }
539   delete [] emcExist ; 
540   delete [] cpvExist ; 
541 }
542
543 //____________________________________________________________________________
544 void AliPHOSTrackSegmentMakerv1::Clusters2TrackSegments(Option_t *option)
545 {
546   // Steering method to perform track segment construction for the current event
547   // Returns an array with the found track-segments.
548   
549   if(strstr(option,"tim"))
550     gBenchmark->Start("PHOSTSMaker");
551  
552   if(strstr(option,"print")) {
553     Print() ; 
554     return ; 
555   }
556   
557   //Make some initializations 
558   fNTrackSegments = 0 ;
559   fEmcFirst = 0 ;    
560   fEmcLast  = 0 ;   
561   fCpvFirst = 0 ;   
562   fCpvLast  = 0 ;   
563
564   fTrackSegments->Clear();
565
566   //   if(!ReadRecPoints(ievent))   continue; //reads RecPoints for event ievent
567     
568   for(fModule = 1; fModule <= fGeom->GetNModules() ; fModule++ ) {
569     FillOneModule() ; 
570     MakeLinks() ;
571     MakePairs() ;
572   }
573     
574   if(strstr(option,"deb"))
575     PrintTrackSegments(option);
576
577   if(strstr(option,"tim")){
578     gBenchmark->Stop("PHOSTSMaker");
579     Info("Exec", "took %f seconds for making TS", 
580          gBenchmark->GetCpuTime("PHOSTSMaker")); 
581   }
582 }
583
584 //____________________________________________________________________________
585 void AliPHOSTrackSegmentMakerv1::Print(const Option_t *)const
586 {
587   //  Print TrackSegmentMaker parameters
588
589   TString message("") ;
590   if( strcmp(GetName(), "") != 0 ) {
591     message = "\n======== AliPHOSTrackSegmentMakerv1 ========\n" ; 
592     message += "Making Track segments\n" ;
593     message += "with parameters:\n" ; 
594     message += "     Maximal EMC - CPV distance (cm) %f\n" ;
595     message += "============================================\n" ;
596     Info("Print", message.Data(),fRcpv) ;
597   }
598   else
599     Info("Print", "AliPHOSTrackSegmentMakerv1 not initialized ") ;
600 }
601
602 //____________________________________________________________________________
603 void AliPHOSTrackSegmentMakerv1::PrintTrackSegments(Option_t * option)
604 {
605   // option deb - prints # of found TrackSegments
606   // option deb all - prints as well indexed of found RecParticles assigned to the TS
607
608   Info("PrintTrackSegments", "Results from TrackSegmentMaker:") ; 
609   printf("        Found %d TrackSegments\n", fTrackSegments->GetEntriesFast() ); 
610   
611   if(strstr(option,"all")) {  // printing found TS
612     printf("TrackSegment #  EMC RP#  CPV RP#\n") ; 
613     Int_t index;
614     for (index = 0 ; index <fTrackSegments->GetEntriesFast() ; index++) {
615       AliPHOSTrackSegment * ts = (AliPHOSTrackSegment * )fTrackSegments->At(index) ; 
616       printf("   %d           %d        %d \n", ts->GetIndexInList(), ts->GetEmcIndex(), ts->GetCpvIndex() ) ; 
617     }   
618   }
619 }