]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSTrackSegmentMakerv1.cxx
Removal of double digits with high and low gains
[u/mrichter/AliRoot.git] / PHOS / AliPHOSTrackSegmentMakerv1.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$ */
702ab87e 16
17/* History of cvs commits:
18 *
19 * $Log$
3663622c 20 * Revision 1.79 2006/04/25 12:41:15 hristov
21 * Moving non-persistent data to AliESDfriend (Yu.Belikov)
22 *
15e85efa 23 * Revision 1.78 2005/11/18 13:04:51 hristov
24 * Bug fix
25 *
a494460a 26 * Revision 1.77 2005/11/17 23:34:36 hristov
27 * Corrected logics
28 *
f74a631d 29 * Revision 1.76 2005/11/17 22:29:12 hristov
30 * Faster version, no attempt to match tracks outside the PHOS acceptance
31 *
0d9aa319 32 * Revision 1.75 2005/11/17 12:35:27 hristov
33 * Use references instead of objects. Avoid to create objects when they are not really needed
34 *
7b51037f 35 * Revision 1.74 2005/07/08 14:01:36 hristov
36 * Tracking in non-uniform nmagnetic field (Yu.Belikov)
37 *
c84a5e9e 38 * Revision 1.73 2005/05/28 14:19:05 schutz
39 * Compilation warnings fixed by T.P.
40 *
702ab87e 41 */
42
d15a28e7 43//_________________________________________________________________________
b2a60966 44// Implementation version 1 of algorithm class to construct PHOS track segments
f035f6ce 45// Track segment for PHOS is list of
194f9939 46// EMC RecPoint + (possibly) CPV RecPoint
a4e98857 47// To find TrackSegments we do the following:
48// for each EMC RecPoints we look at
194f9939 49// CPV RecPoints in the radious fRcpv.
a4e98857 50// If there is such a CPV RecPoint,
194f9939 51// we make "Link" it is just indexes of EMC and CPV RecPoint and distance
a4e98857 52// between them in the PHOS plane.
53// Then we sort "Links" and starting from the
54// least "Link" pointing to the unassined EMC and CPV RecPoints assing them to
55// new TrackSegment.
194f9939 56// If there is no CPV RecPoint we make TrackSegment
a4e98857 57// consisting from EMC alone. There is no TrackSegments without EMC RecPoint.
f444a19f 58//// In principle this class should be called from AliPHOSReconstructor, but
a4e98857 59// one can use it as well in standalone mode.
60// Use case:
fc12304f 61// root [0] AliPHOSTrackSegmentMakerv1 * t = new AliPHOSTrackSegmentMaker("galice.root", "tracksegmentsname", "recpointsname")
a4e98857 62// Warning in <TDatabasePDG::TDatabasePDG>: object already instantiated
fc12304f 63// // reads gAlice from header file "galice.root", uses recpoints stored in the branch names "recpointsname" (default = "Default")
64// // and saves recpoints in branch named "tracksegmentsname" (default = "recpointsname")
a4e98857 65// root [1] t->ExecuteTask()
a4e98857 66// root [3] t->SetTrackSegmentsBranch("max distance 5 cm")
67// root [4] t->ExecuteTask("deb all time")
f035f6ce 68//
fc12304f 69//*-- Author: Dmitri Peressounko (RRC Ki & SUBATECH) & Yves Schutz (SUBATECH)
b2a60966 70//
d15a28e7 71
72// --- ROOT system ---
2731cd1e 73#include "TTree.h"
2731cd1e 74#include "TBenchmark.h"
d15a28e7 75
21cd0c07 76// --- Standard library ---
194f9939 77#include "Riostream.h"
d15a28e7 78// --- AliRoot header files ---
e957fea8 79#include "AliPHOSGeometry.h"
d15a28e7 80#include "AliPHOSTrackSegmentMakerv1.h"
81#include "AliPHOSTrackSegment.h"
82#include "AliPHOSLink.h"
7b7c1533 83#include "AliPHOSGetter.h"
aa0b9641 84#include "AliESD.h"
85#include "AliESDtrack.h"
d15a28e7 86
87ClassImp( AliPHOSTrackSegmentMakerv1)
88
89
90//____________________________________________________________________________
3663622c 91AliPHOSTrackSegmentMakerv1::AliPHOSTrackSegmentMakerv1() :
92 AliPHOSTrackSegmentMaker(),
93 fDefaultInit(kTRUE),
94 fWrite(kFALSE),
95 fNTrackSegments(0),
96 fRcpv(0.f),
97 fRtpc(0.f),
98 fLinkUpArray(0),
99 fEmcFirst(0),
100 fEmcLast(0),
101 fCpvFirst(0),
102 fCpvLast(0),
103 fModule(0),
104 fTrackSegmentsInRun(0)
105
d15a28e7 106{
7b7c1533 107 // default ctor (to be used mainly by Streamer)
8d0f3f77 108 InitParameters() ;
d15a28e7 109}
7b7c1533 110
9f616d61 111//____________________________________________________________________________
3663622c 112AliPHOSTrackSegmentMakerv1::AliPHOSTrackSegmentMakerv1(const TString & alirunFileName, const TString & eventFolderName) :
113 AliPHOSTrackSegmentMaker(alirunFileName, eventFolderName),
114 fDefaultInit(kFALSE),
115 fWrite(kFALSE),
116 fNTrackSegments(0),
117 fRcpv(0.f),
118 fRtpc(0.f),
119 fLinkUpArray(0),
120 fEmcFirst(0),
121 fEmcLast(0),
122 fCpvFirst(0),
123 fCpvLast(0),
124 fModule(0),
125 fTrackSegmentsInRun(0)
2731cd1e 126{
127 // ctor
8d0f3f77 128 InitParameters() ;
7b7c1533 129 Init() ;
aa0b9641 130 fESD = 0;
2731cd1e 131}
98cbd830 132
3663622c 133
134AliPHOSTrackSegmentMakerv1::AliPHOSTrackSegmentMakerv1(const AliPHOSTrackSegmentMakerv1 & tsm) :
135 AliPHOSTrackSegmentMaker(tsm),
136 fDefaultInit(kFALSE),
137 fWrite(kFALSE),
138 fNTrackSegments(0),
139 fRcpv(0.f),
140 fRtpc(0.f),
141 fLinkUpArray(0),
142 fEmcFirst(0),
143 fEmcLast(0),
144 fCpvFirst(0),
145 fCpvLast(0),
146 fModule(0),
147 fTrackSegmentsInRun(0)
148{
149 // cpy ctor: no implementation yet
150 // requested by the Coding Convention
151 Fatal("cpy ctor", "not implemented") ;
152}
153
154
2731cd1e 155//____________________________________________________________________________
156 AliPHOSTrackSegmentMakerv1::~AliPHOSTrackSegmentMakerv1()
157{
158 // dtor
92f521a9 159 // fDefaultInit = kTRUE if TrackSegmentMaker created by default ctor (to get just the parameters)
88cb7938 160 if (!fDefaultInit)
161 delete fLinkUpArray ;
d15a28e7 162}
9f616d61 163
8d0f3f77 164
fc12304f 165//____________________________________________________________________________
166const TString AliPHOSTrackSegmentMakerv1::BranchName() const
167{
88cb7938 168
169 return GetName() ;
fc12304f 170}
171
d15a28e7 172//____________________________________________________________________________
2731cd1e 173void AliPHOSTrackSegmentMakerv1::FillOneModule()
9f616d61 174{
f035f6ce 175 // Finds first and last indexes between which
176 // clusters from one PHOS module are
88cb7938 177
178 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
fc12304f 179
fbf811ec 180 TObjArray * emcRecPoints = gime->EmcRecPoints() ;
181 TObjArray * cpvRecPoints = gime->CpvRecPoints() ;
9688c1dd 182
2731cd1e 183 //First EMC clusters
7b7c1533 184 Int_t totalEmc = emcRecPoints->GetEntriesFast() ;
2731cd1e 185 for(fEmcFirst = fEmcLast; (fEmcLast < totalEmc) &&
29b077b5 186 ((dynamic_cast<AliPHOSRecPoint *>(emcRecPoints->At(fEmcLast)))->GetPHOSMod() == fModule );
2731cd1e 187 fEmcLast ++) ;
188
2731cd1e 189 //Now CPV clusters
7b7c1533 190 Int_t totalCpv = cpvRecPoints->GetEntriesFast() ;
6ad0bfa0 191
2731cd1e 192 for(fCpvFirst = fCpvLast; (fCpvLast < totalCpv) &&
88cb7938 193 ((dynamic_cast<AliPHOSRecPoint *>(cpvRecPoints->At(fCpvLast)))->GetPHOSMod() == fModule );
194 fCpvLast ++) ;
9688c1dd 195
d15a28e7 196}
7b7c1533 197
d15a28e7 198//____________________________________________________________________________
194f9939 199Float_t AliPHOSTrackSegmentMakerv1::GetDistanceInPHOSPlane(AliPHOSEmcRecPoint * emcClu,AliPHOSCpvRecPoint * cpvClu, Int_t &trackindex) const
d15a28e7 200{
194f9939 201 // Calculates the distance between the EMC RecPoint and the CPV RecPoint
a4e98857 202 // Clusters are sorted in "rows" and "columns" of width 1 cm
f035f6ce 203
743cb288 204 //Float_t delta = 1 ; // Width of the rows in sorting of RecPoints (in cm)
2731cd1e 205 // if you change this value, change it as well in xxxRecPoint::Compare()
194f9939 206 Float_t distance2Cpv = fRcpv ;
743cb288 207 Float_t distance2Track = fRtpc ;
194f9939 208
209 trackindex = -1 ; // closest track within fRCpv
210
aa0b9641 211 TVector3 vecEmc ; // Local position of EMC recpoint
212 TVector3 vecCpv ; // Local position of CPV recpoint propagated to EMC
213 TVector3 vecDist ; // Distance between local positions of two points
2731cd1e 214
215 emcClu->GetLocalPosition(vecEmc) ;
bfc17d18 216 cpvClu->GetLocalPosition(vecCpv) ;
2731cd1e 217
194f9939 218 //toofar = kTRUE ;
2731cd1e 219 if(emcClu->GetPHOSMod() == cpvClu->GetPHOSMod()){
2731cd1e 220
194f9939 221 // Find EMC-CPV distance
222 distance2Cpv = (vecCpv - vecEmc).Mag() ;
223
aa0b9641 224 if (fESD != 0x0) {
0d9aa319 225 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
226 const AliPHOSGeometry * geom = gime->PHOSGeometry() ;
227
228 Double_t rPHOS = geom->GetIPtoCrystalSurface();
229
230 //PH Acceptance boundaries for each PHOS module
231 Int_t nModules = geom->GetNModules();
232 Double_t * thmin = new Double_t[nModules];// theta min
233 Double_t * thmax = new Double_t[nModules];// theta max
234 Double_t * phmin = new Double_t[nModules];// phi min
235 Double_t * phmax = new Double_t[nModules];// phi max
236
237 for (Int_t imod=0; imod<nModules; imod++) {
238 geom->EmcModuleCoverage(imod,
239 thmin[imod],thmax[imod],
240 phmin[imod],phmax[imod]);
241 }
242
aa0b9641 243 // Extrapolate the global track direction if any to CPV and find the closest track
244 Int_t nTracks = fESD->GetNumberOfTracks();
245 Int_t iClosestTrack = -1;
aa0b9641 246 Double_t minDistance = 1e6;
247 Double_t pxyz[3], xyz[3];
0d9aa319 248 TVector3 inPHOS; //PH Used to calculate theta and phi
249
250 //PH Loop on tracks
aa0b9641 251 AliESDtrack *track;
252 for (Int_t iTrack=0; iTrack<nTracks; iTrack++) {
253 track = fESD->GetTrack(iTrack);
c84a5e9e 254 if (!track->GetXYZAt(rPHOS, fESD->GetMagneticField(), xyz))
23904d16 255 continue; //track coord on the cylinder of PHOS radius
75408399 256 if ((TMath::Abs(xyz[0])+TMath::Abs(xyz[1])+TMath::Abs(xyz[2]))<=0)
23904d16 257 continue;
0d9aa319 258 //PH Here one has to cut out the tracks which are not inside the PHOS
259 //PH acceptance
260 inPHOS.SetXYZ(xyz[0],xyz[1],xyz[2]);
261 Double_t inPhi = inPHOS.Phi();
262 Double_t inTheta = inPHOS.Theta();
263
f74a631d 264 Bool_t skip = kTRUE;
a494460a 265 for (Int_t imod=0; imod<nModules; imod++) {
0d9aa319 266 //PH Loop on modules to check if the track enters in the acceptance
f74a631d 267 if (thmin[imod] < inTheta && thmax[imod] > inTheta &&
268 phmin[imod] < inPhi && phmax[imod] > inPhi) {
269 skip = kFALSE;
0d9aa319 270 break;
271 }
272 }
273 if (skip) continue; //PH Skip, if not in the PHOS acceptance
274
c84a5e9e 275 if (!track->GetPxPyPzAt(rPHOS, fESD->GetMagneticField(), pxyz))
23904d16 276 continue; // track momentum ibid.
7b51037f 277 PropagateToPlane(vecDist,xyz,pxyz,"CPV",cpvClu->GetPHOSMod());
e718c158 278 // Info("GetDistanceInPHOSPlane","Track %d propagation to CPV = (%f,%f,%f)",
279 // iTrack,vecDist.X(),vecDist.Y(),vecDist.Z());
aa0b9641 280 vecDist -= vecCpv;
194f9939 281 distance2Track = TMath::Sqrt(vecDist.X()*vecDist.X() + vecDist.Z()*vecDist.Z());
aa0b9641 282 // Find the closest track to the EMC recpoint
194f9939 283 if (distance2Track < minDistance) {
284 minDistance = distance2Track;
aa0b9641 285 iClosestTrack = iTrack;
286 }
287 }
288
0d9aa319 289 delete [] thmin;
290 delete [] thmax;
291 delete [] phmin;
292 delete [] phmax;
293
aa0b9641 294 if (iClosestTrack != -1) {
295 track = fESD->GetTrack(iClosestTrack);
c84a5e9e 296 if (track->GetPxPyPzAt(rPHOS, fESD->GetMagneticField(), pxyz)) { // track momentum ibid.
aa0b9641 297 TVector3 vecCpvGlobal; // Global position of the CPV recpoint
aa0b9641 298 geom->GetGlobal((AliRecPoint*)cpvClu,vecCpvGlobal);
299 for (Int_t ixyz=0; ixyz<3; ixyz++)
300 xyz[ixyz] = vecCpvGlobal[ixyz];
7b51037f 301 PropagateToPlane(vecDist,xyz,pxyz,"EMC",cpvClu->GetPHOSMod());
bfc17d18 302// Info("GetDistanceInPHOSPlane","Track %d propagation to EMC = (%f,%f,%f)",
303// iClosestTrack,vecDist.X(),vecDist.Y(),vecDist.Z());
aa0b9641 304 vecDist -= vecEmc;
194f9939 305 distance2Track = TMath::Sqrt(vecDist.X()*vecDist.X() + vecDist.Z()*vecDist.Z());
23904d16 306 }
aa0b9641 307 }
194f9939 308// } else {
309// // If no ESD exists, than simply find EMC-CPV distance
310// distance = (vecCpv - vecEmc).Mag() ;
311
743cb288 312 //if(distance2Track < fRcpv + 2*delta )
313 if(distance2Track < fRtpc )
194f9939 314 trackindex = iClosestTrack ;
315 // toofar = kFALSE ;
aa0b9641 316 }
194f9939 317 // Info("GetDistanceInPHOSPlane","cpv-emc distance is %f cm",
318 // distance);
bfc17d18 319 }
d15a28e7 320
194f9939 321 return distance2Cpv ;
aa0b9641 322}
323
324//____________________________________________________________________________
7b51037f 325void AliPHOSTrackSegmentMakerv1::PropagateToPlane(TVector3& globalIntersection,
326 Double_t *x,
327 Double_t *p,
328 const char *det,
329 Int_t moduleNumber) const
aa0b9641 330{
331 // Propagate a straight-line track from the origin point x
bfc17d18 332 // along the direction p to the CPV or EMC module moduleNumber
aa0b9641 333 // Returns a local position of such a propagation
334
335 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
336 const AliPHOSGeometry * geom = gime->PHOSGeometry() ;
7b51037f 337 TVector3 moduleCenter;
338 geom->GetModuleCenter(moduleCenter,det,moduleNumber);
339 TVector3 vertex; vertex.SetXYZ(x[0],x[1],x[2]);
340 TVector3 direction; direction.SetXYZ(p[0],p[1],p[2]);
aa0b9641 341
bfc17d18 342// Info("PropagateToCPV","Center of the %s module %d is (%f,%f,%f)",
343// det,moduleNumber,moduleCenter[0],moduleCenter[1],moduleCenter[2]);
395f4eea 344
aa0b9641 345 Double_t time = (moduleCenter.Mag2() - vertex.Dot(moduleCenter)) /
346 (direction.Dot(moduleCenter));
7b51037f 347 vertex += direction*time;
348 geom->Global2Local(globalIntersection,vertex,moduleNumber);
d15a28e7 349}
350
7b7c1533 351//____________________________________________________________________________
352void AliPHOSTrackSegmentMakerv1::Init()
353{
354 // Make all memory allocations that are not possible in default constructor
355
adcca1e6 356 AliPHOSGetter* gime = AliPHOSGetter::Instance();
357 if(!gime)
358 gime = AliPHOSGetter::Instance(GetTitle(), fEventFolderName.Data());
fbf811ec 359
7b7c1533 360 fLinkUpArray = new TClonesArray("AliPHOSLink", 1000);
88cb7938 361 if ( !gime->TrackSegmentMaker() ) {
362 gime->PostTrackSegmentMaker(this);
363 }
7b7c1533 364}
365
8d0f3f77 366//____________________________________________________________________________
367void AliPHOSTrackSegmentMakerv1::InitParameters()
368{
e957fea8 369 //Initializes parameters
743cb288 370 fRcpv = 10. ;
371 fRtpc = 4. ;
8d0f3f77 372 fEmcFirst = 0 ;
373 fEmcLast = 0 ;
374 fCpvFirst = 0 ;
375 fCpvLast = 0 ;
376 fLinkUpArray = 0 ;
adcca1e6 377 fWrite = kTRUE ;
88cb7938 378 fTrackSegmentsInRun = 0 ;
eabde521 379 SetEventRange(0,-1) ;
8d0f3f77 380}
381
382
d15a28e7 383//____________________________________________________________________________
baef0810 384void AliPHOSTrackSegmentMakerv1::MakeLinks()const
d15a28e7 385{
194f9939 386 // Finds distances (links) between all EMC and CPV clusters,
fbf811ec 387 // which are not further apart from each other than fRcpv
f035f6ce 388 // and sort them in accordance with this distance
9688c1dd 389
88cb7938 390 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
fbf811ec 391 TObjArray * emcRecPoints = gime->EmcRecPoints() ;
392 TObjArray * cpvRecPoints = gime->CpvRecPoints() ;
7b7c1533 393
2731cd1e 394 fLinkUpArray->Clear() ;
2731cd1e 395
2bb500e5 396 AliPHOSCpvRecPoint * cpv ;
92862013 397 AliPHOSEmcRecPoint * emcclu ;
28c3a259 398
d15a28e7 399 Int_t iLinkUp = 0 ;
400
28c3a259 401 Int_t iEmcRP;
2731cd1e 402 for(iEmcRP = fEmcFirst; iEmcRP < fEmcLast; iEmcRP++ ) {
29b077b5 403 emcclu = dynamic_cast<AliPHOSEmcRecPoint *>(emcRecPoints->At(iEmcRP)) ;
2731cd1e 404
194f9939 405 //Bool_t toofar ;
2731cd1e 406 Int_t iCpv = 0 ;
407 for(iCpv = fCpvFirst; iCpv < fCpvLast;iCpv++ ) {
28c3a259 408
2bb500e5 409 cpv = dynamic_cast<AliPHOSCpvRecPoint *>(cpvRecPoints->At(iCpv)) ;
194f9939 410 Int_t track = -1 ;
411 Float_t r = GetDistanceInPHOSPlane(emcclu, cpv, track) ;
412 // if(toofar)
413 // continue ;
fbf811ec 414 if(r < fRcpv) {
194f9939 415 new ((*fLinkUpArray)[iLinkUp++]) AliPHOSLink(r, iEmcRP, iCpv, track) ;
28c3a259 416 }
d15a28e7 417 }
28c3a259 418 }
d15a28e7 419
9688c1dd 420 fLinkUpArray->Sort() ; //first links with smallest distances
d15a28e7 421}
28c3a259 422
d15a28e7 423//____________________________________________________________________________
2731cd1e 424void AliPHOSTrackSegmentMakerv1::MakePairs()
6ad0bfa0 425{
f035f6ce 426 // Using the previously made list of "links", we found the smallest link - i.e.
a4e98857 427 // link with the least distance between EMC and CPV and pointing to still
f035f6ce 428 // unassigned RecParticles. We assign these RecPoints to TrackSegment and
429 // remove them from the list of "unassigned".
88cb7938 430
431 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
432
fbf811ec 433 TObjArray * emcRecPoints = gime->EmcRecPoints() ;
434 TObjArray * cpvRecPoints = gime->CpvRecPoints() ;
88cb7938 435 TClonesArray * trackSegments = gime->TrackSegments();
9688c1dd 436
01a599c9 437 //Make arrays to mark clusters already chosen
2731cd1e 438 Int_t * emcExist = 0;
439 if(fEmcLast > fEmcFirst)
440 emcExist = new Int_t[fEmcLast-fEmcFirst] ;
441
442 Int_t index;
443 for(index = 0; index <fEmcLast-fEmcFirst; index ++)
444 emcExist[index] = 1 ;
445
446 Bool_t * cpvExist = 0;
447 if(fCpvLast > fCpvFirst)
448 cpvExist = new Bool_t[fCpvLast-fCpvFirst] ;
449 for(index = 0; index <fCpvLast-fCpvFirst; index ++)
450 cpvExist[index] = kTRUE ;
451
2731cd1e 452
453 // Finds the smallest links and makes pairs of CPV and EMC clusters with smallest distance
2731cd1e 454 TIter nextUp(fLinkUpArray) ;
d15a28e7 455
d15a28e7 456 AliPHOSLink * linkUp ;
9688c1dd 457
2bb500e5 458 AliPHOSCpvRecPoint * nullpointer = 0 ;
9688c1dd 459
29b077b5 460 while ( (linkUp = static_cast<AliPHOSLink *>(nextUp()) ) ){
9688c1dd 461
194f9939 462 if(emcExist[linkUp->GetEmc()-fEmcFirst] != -1){
d15a28e7 463
194f9939 464 if(cpvExist[linkUp->GetCpv()-fCpvFirst]){ //CPV still exist
465 new ((* trackSegments)[fNTrackSegments])
466 AliPHOSTrackSegment(dynamic_cast<AliPHOSEmcRecPoint *>(emcRecPoints->At(linkUp->GetEmc())) ,
467 dynamic_cast<AliPHOSCpvRecPoint *>(cpvRecPoints->At(linkUp->GetCpv())) ,
468 linkUp->GetTrack()) ;
469
88cb7938 470 (dynamic_cast<AliPHOSTrackSegment *>(trackSegments->At(fNTrackSegments)))->SetIndexInList(fNTrackSegments);
471 fNTrackSegments++ ;
88cb7938 472 emcExist[linkUp->GetEmc()-fEmcFirst] = -1 ; //Mark emc that Cpv was found
473 //mark CPV recpoint as already used
194f9939 474 cpvExist[linkUp->GetCpv()-fCpvFirst] = kFALSE ;
475 } //if CpvUp still exist
28c3a259 476 }
88cb7938 477 }
28c3a259 478
194f9939 479 //look through emc recPoints left without CPV
2731cd1e 480 if(emcExist){ //if there is emc rec point
481 Int_t iEmcRP ;
482 for(iEmcRP = 0; iEmcRP < fEmcLast-fEmcFirst ; iEmcRP++ ){
483 if(emcExist[iEmcRP] > 0 ){
88cb7938 484 new ((*trackSegments)[fNTrackSegments])
485 AliPHOSTrackSegment(dynamic_cast<AliPHOSEmcRecPoint *>(emcRecPoints->At(iEmcRP+fEmcFirst)),
486 nullpointer) ;
487 (dynamic_cast<AliPHOSTrackSegment *>(trackSegments->At(fNTrackSegments)))->SetIndexInList(fNTrackSegments);
488 fNTrackSegments++;
2731cd1e 489 }
d15a28e7 490 }
d15a28e7 491 }
780a31c1 492 delete [] emcExist ;
493 delete [] cpvExist ;
d15a28e7 494}
495
496//____________________________________________________________________________
eabde521 497void AliPHOSTrackSegmentMakerv1::Exec(Option_t *option)
d15a28e7 498{
eabde521 499 // Steering method to perform track segment construction for events
500 // in the range from fFirstEvent to fLastEvent.
501 // This range is optionally set by SetEventRange().
502 // if fLastEvent=-1 (by default), then process events until the end.
88cb7938 503
2731cd1e 504 if(strstr(option,"tim"))
b3f97575 505 gBenchmark->Start("PHOSTSMaker");
7b7c1533 506
507 if(strstr(option,"print")) {
88cb7938 508 Print() ;
7b7c1533 509 return ;
510 }
88cb7938 511
adcca1e6 512 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
fb43ada4 513
55ea5766 514 const AliPHOSGeometry * geom = gime->PHOSGeometry() ;
7b7c1533 515
0588c896 516 if (fLastEvent == -1)
517 fLastEvent = gime->MaxEvent() - 1 ;
518 else
519 fLastEvent = TMath::Min(fFirstEvent,gime->MaxEvent());
eabde521 520 Int_t nEvents = fLastEvent - fFirstEvent + 1;
01a599c9 521
fb43ada4 522 Int_t ievent ;
523 for (ievent = fFirstEvent; ievent <= fLastEvent; ievent++) {
aa0b9641 524 gime->Event(ievent,"R") ;
0588c896 525 //Make some initializations
55ea5766 526 fNTrackSegments = 0 ;
527 fEmcFirst = 0 ;
528 fEmcLast = 0 ;
529 fCpvFirst = 0 ;
530 fCpvLast = 0 ;
88cb7938 531
532 gime->TrackSegments()->Clear();
55ea5766 533
9688c1dd 534 // if(!ReadRecPoints(ievent)) continue; //reads RecPoints for event ievent
535
88cb7938 536 for(fModule = 1; fModule <= geom->GetNModules() ; fModule++ ) {
2731cd1e 537 FillOneModule() ;
2731cd1e 538 MakeLinks() ;
2731cd1e 539 MakePairs() ;
2731cd1e 540 }
28c3a259 541
90cceaf6 542 WriteTrackSegments() ;
7b7c1533 543
2731cd1e 544 if(strstr(option,"deb"))
88cb7938 545 PrintTrackSegments(option);
94de8339 546
547 //increment the total number of track segments per run
88cb7938 548 fTrackSegmentsInRun += gime->TrackSegments()->GetEntriesFast() ;
2731cd1e 549 }
88cb7938 550
2731cd1e 551 if(strstr(option,"tim")){
552 gBenchmark->Stop("PHOSTSMaker");
21cd0c07 553 Info("Exec", "took %f seconds for making TS %f seconds per event",
88cb7938 554 gBenchmark->GetCpuTime("PHOSTSMaker"),
eabde521 555 gBenchmark->GetCpuTime("PHOSTSMaker")/nEvents) ;
88cb7938 556 }
adcca1e6 557 if(fWrite) //do not unload in "on flight" mode
558 Unload();
88cb7938 559}
560
561//____________________________________________________________________________
562void AliPHOSTrackSegmentMakerv1::Unload()
563{
e957fea8 564 // Unloads the task from the folder
88cb7938 565 AliPHOSGetter * gime = AliPHOSGetter::Instance() ;
566 gime->PhosLoader()->UnloadRecPoints() ;
567 gime->PhosLoader()->UnloadTracks() ;
d15a28e7 568}
7b7c1533 569
d15a28e7 570//____________________________________________________________________________
702ab87e 571void AliPHOSTrackSegmentMakerv1::Print(const Option_t *)const
a4e98857 572{
baef0810 573 // Print TrackSegmentMaker parameters
574
21cd0c07 575 TString message("") ;
7b7c1533 576 if( strcmp(GetName(), "") != 0 ) {
21cd0c07 577 message = "\n======== AliPHOSTrackSegmentMakerv1 ========\n" ;
578 message += "Making Track segments\n" ;
579 message += "with parameters:\n" ;
194f9939 580 message += " Maximal EMC - CPV distance (cm) %f\n" ;
21cd0c07 581 message += "============================================\n" ;
582 Info("Print", message.Data(),fRcpv) ;
2731cd1e 583 }
584 else
21cd0c07 585 Info("Print", "AliPHOSTrackSegmentMakerv1 not initialized ") ;
d15a28e7 586}
7b7c1533 587
d15a28e7 588//____________________________________________________________________________
90cceaf6 589void AliPHOSTrackSegmentMakerv1::WriteTrackSegments()
a4e98857 590{
f035f6ce 591 // Writes found TrackSegments to TreeR. Creates branches
592 // "PHOSTS" and "AliPHOSTrackSegmentMaker" with the same title.
593 // In the former branch found TrackSegments are stored, while
594 // in the latter all parameters, with which TS were made.
595 // ROOT does not allow overwriting existing branches, therefore
a4e98857 596 // first we check, if branches with the same title already exist.
f035f6ce 597 // If yes - exits without writing.
88cb7938 598
599 AliPHOSGetter *gime = AliPHOSGetter::Instance() ;
55ea5766 600
fbf811ec 601 TClonesArray * trackSegments = gime->TrackSegments() ;
55ea5766 602 trackSegments->Expand(trackSegments->GetEntriesFast()) ;
8d0f3f77 603
adcca1e6 604 if(fWrite){ //We write TreeT
605 TTree * treeT = gime->TreeT();
606
607 //First TS
608 Int_t bufferSize = 32000 ;
609 TBranch * tsBranch = treeT->Branch("PHOSTS",&trackSegments,bufferSize);
610 tsBranch->Fill() ;
611
612 gime->WriteTracks("OVERWRITE");
613 gime->WriteTrackSegmentMaker("OVERWRITE");
614 }
2731cd1e 615}
98cbd830 616
98cbd830 617
2731cd1e 618//____________________________________________________________________________
a4e98857 619void AliPHOSTrackSegmentMakerv1::PrintTrackSegments(Option_t * option)
620{
f035f6ce 621 // option deb - prints # of found TrackSegments
622 // option deb all - prints as well indexed of found RecParticles assigned to the TS
9688c1dd 623
88cb7938 624 TClonesArray * trackSegments = AliPHOSGetter::Instance()->TrackSegments() ;
21cd0c07 625
88cb7938 626 Info("PrintTrackSegments", "Results from TrackSegmentMaker:") ;
627 printf("nevent: %d\n", gAlice->GetEvNumber()) ;
628 printf(" Found %d TrackSegments\n", trackSegments->GetEntriesFast() );
629
2731cd1e 630 if(strstr(option,"all")) { // printing found TS
88cb7938 631 printf("TrackSegment # EMC RP# CPV RP#\n") ;
2731cd1e 632 Int_t index;
7b7c1533 633 for (index = 0 ; index <trackSegments->GetEntriesFast() ; index++) {
634 AliPHOSTrackSegment * ts = (AliPHOSTrackSegment * )trackSegments->At(index) ;
88cb7938 635 printf(" %d %d %d \n", ts->GetIndexInList(), ts->GetEmcIndex(), ts->GetCpvIndex() ) ;
2731cd1e 636 }
d15a28e7 637 }
2731cd1e 638}