]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTrackReconstructor.cxx
Get TriggerCrateStore info from Reconstructor class (Christian)
[u/mrichter/AliRoot.git] / MUON / AliMUONTrackReconstructor.cxx
CommitLineData
a9e2aefa 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
cc87ebcd 16/* $Id$ */
17
3831f268 18////////////////////////////////////
a9e2aefa 19//
29f1b13a 20// MUON track reconstructor in ALICE (class renamed from AliMUONEventReconstructor)
a9e2aefa 21//
22// This class contains as data:
29f1b13a 23// * the parameters for the track reconstruction
a9e2aefa 24// * a pointer to the array of hits to be reconstructed (the event)
25// * a pointer to the array of segments made with these hits inside each station
26// * a pointer to the array of reconstructed tracks
27//
28// It contains as methods, among others:
29// * MakeEventToBeReconstructed to build the array of hits to be reconstructed
30// * MakeSegments to build the segments
31// * MakeTracks to build the tracks
3831f268 32//
33////////////////////////////////////
a9e2aefa 34
ae17f568 35#include <stdlib.h>
30178c30 36#include <Riostream.h>
37#include <TDirectory.h>
38#include <TFile.h>
cc87ebcd 39#include <TMatrixD.h>
a9e2aefa 40
29f1b13a 41#include "AliMUONTrackReconstructor.h"
30178c30 42#include "AliMUON.h"
29fc2c86 43#include "AliMUONConstants.h"
a9e2aefa 44#include "AliMUONHitForRec.h"
276c44b7 45#include "AliMUONTriggerTrack.h"
bc4a7ff4 46#include "AliMUONTriggerCircuitNew.h"
a9e2aefa 47#include "AliMUONRawCluster.h"
276c44b7 48#include "AliMUONLocalTrigger.h"
52c9bc11 49#include "AliMUONGlobalTrigger.h"
3831f268 50#include "AliMUONSegment.h"
a9e2aefa 51#include "AliMUONTrack.h"
a9e2aefa 52#include "AliMUONTrackHit.h"
94de3818 53#include "AliMagF.h"
3831f268 54#include "AliRun.h" // for gAlice
88cb7938 55#include "AliRunLoader.h"
56#include "AliLoader.h"
cc87ebcd 57#include "AliMUONTrackK.h"
8c343c7c 58#include "AliLog.h"
1a38e749 59#include "AliTracker.h"
a9e2aefa 60
a9e2aefa 61//************* Defaults parameters for reconstruction
29f1b13a 62const Double_t AliMUONTrackReconstructor::fgkDefaultMinBendingMomentum = 3.0;
7b96283c 63const Double_t AliMUONTrackReconstructor::fgkDefaultMaxBendingMomentum = 3000.0;
29f1b13a 64const Double_t AliMUONTrackReconstructor::fgkDefaultMaxChi2 = 100.0;
65const Double_t AliMUONTrackReconstructor::fgkDefaultMaxSigma2Distance = 16.0;
66const Double_t AliMUONTrackReconstructor::fgkDefaultBendingResolution = 0.01;
67const Double_t AliMUONTrackReconstructor::fgkDefaultNonBendingResolution = 0.144;
68const Double_t AliMUONTrackReconstructor::fgkDefaultChamberThicknessInX0 = 0.03;
a9e2aefa 69// Simple magnetic field:
70// Value taken from macro MUONtracking.C: 0.7 T, hence 7 kG
71// Length and Position from reco_muon.F, with opposite sign:
72// Length = ZMAGEND-ZCOIL
73// Position = (ZMAGEND+ZCOIL)/2
74// to be ajusted differently from real magnetic field ????
29f1b13a 75const Double_t AliMUONTrackReconstructor::fgkDefaultSimpleBValue = 7.0;
76const Double_t AliMUONTrackReconstructor::fgkDefaultSimpleBLength = 428.0;
77const Double_t AliMUONTrackReconstructor::fgkDefaultSimpleBPosition = 1019.0;
29f1b13a 78const Double_t AliMUONTrackReconstructor::fgkDefaultEfficiency = 0.95;
a9e2aefa 79
29f1b13a 80ClassImp(AliMUONTrackReconstructor) // Class implementation in ROOT context
a9e2aefa 81
3bc8b580 82//__________________________________________________________________________
83AliMUONTrackReconstructor::AliMUONTrackReconstructor(AliLoader* loader, AliMUONData* data)
54d7ba50 84 : TObject(),
85 fTrackMethod(1), //AZ - tracking method (1-default, 2-Kalman)
86 fMinBendingMomentum(fgkDefaultMinBendingMomentum),
87 fMaxBendingMomentum(fgkDefaultMaxBendingMomentum),
88 fMaxChi2(fgkDefaultMaxChi2),
89 fMaxSigma2Distance(fgkDefaultMaxSigma2Distance),
90 fBendingResolution(fgkDefaultBendingResolution),
91 fNonBendingResolution(fgkDefaultNonBendingResolution),
92 fChamberThicknessInX0(fgkDefaultChamberThicknessInX0),
93 fSimpleBValue(fgkDefaultSimpleBValue),
94 fSimpleBLength(fgkDefaultSimpleBLength),
95 fSimpleBPosition(fgkDefaultSimpleBPosition),
54d7ba50 96 fEfficiency(fgkDefaultEfficiency),
54d7ba50 97 fHitsForRecPtr(0x0),
98 fNHitsForRec(0),
99 fRecTracksPtr(0x0),
100 fNRecTracks(0),
101 fRecTrackHitsPtr(0x0),
102 fNRecTrackHits(0),
103 fMUONData(data),
104 fLoader(loader),
58ff0bd4 105 fMuons(0),
106 fTriggerTrack(new AliMUONTriggerTrack())
a9e2aefa 107{
29f1b13a 108 // Constructor for class AliMUONTrackReconstructor
a9e2aefa 109 SetReconstructionParametersToDefaults();
54d7ba50 110
a9e2aefa 111 // Memory allocation for the TClonesArray of hits for reconstruction
112 // Is 10000 the right size ????
113 fHitsForRecPtr = new TClonesArray("AliMUONHitForRec", 10000);
54d7ba50 114
a9e2aefa 115 // Memory allocation for the TClonesArray's of segments in stations
116 // Is 2000 the right size ????
190f97ea 117 for (Int_t st = 0; st < AliMUONConstants::NTrackingCh()/2; st++) {
a9e2aefa 118 fSegmentsPtr[st] = new TClonesArray("AliMUONSegment", 2000);
119 fNSegments[st] = 0; // really needed or GetEntriesFast sufficient ????
120 }
121 // Memory allocation for the TClonesArray of reconstructed tracks
122 // Is 10 the right size ????
123 fRecTracksPtr = new TClonesArray("AliMUONTrack", 10);
54d7ba50 124
8429a5e4 125 // Memory allocation for the TClonesArray of hits on reconstructed tracks
126 // Is 100 the right size ????
b035a148 127 fRecTrackHitsPtr = new TClonesArray("AliMUONTrackHit", 100);
a9e2aefa 128
1a38e749 129 const AliMagF* kField = AliTracker::GetFieldMap();
130 if (!kField) AliFatal("No field available");
131 // Sign of fSimpleBValue according to sign of Bx value at (50,50,-950).
a6f03ddb 132 Float_t b[3], x[3];
5b64e914 133 x[0] = 50.; x[1] = 50.; x[2] = -950.;
1a38e749 134 kField->Field(x,b);
135
136 fSimpleBValue = TMath::Sign(fSimpleBValue,(Double_t) b[0]);
5b64e914 137 fSimpleBPosition = TMath::Sign(fSimpleBPosition,(Double_t) x[2]);
a6f03ddb 138 // See how to get fSimple(BValue, BLength, BPosition)
139 // automatically calculated from the actual magnetic field ????
a9e2aefa 140
a9e2aefa 141 return;
142}
9cbdf048 143
a9e2aefa 144 //__________________________________________________________________________
29f1b13a 145AliMUONTrackReconstructor::~AliMUONTrackReconstructor(void)
a9e2aefa 146{
29f1b13a 147 // Destructor for class AliMUONTrackReconstructor
a9e2aefa 148 delete fHitsForRecPtr; // Correct destruction of everything ???? or delete [] ????
190f97ea 149 for (Int_t st = 0; st < AliMUONConstants::NTrackingCh()/2; st++)
a9e2aefa 150 delete fSegmentsPtr[st]; // Correct destruction of everything ????
58ff0bd4 151
152 delete fTriggerTrack;
a9e2aefa 153}
a9e2aefa 154 //__________________________________________________________________________
29f1b13a 155void AliMUONTrackReconstructor::SetReconstructionParametersToDefaults(void)
a9e2aefa 156{
157 // Set reconstruction parameters to default values
158 // Would be much more convenient with a structure (or class) ????
a9e2aefa 159
a9e2aefa 160 // ******** Parameters for making HitsForRec
161 // minimum radius,
162 // like in TRACKF_STAT:
163 // 2 degrees for stations 1 and 2, or ch(0...) from 0 to 3;
164 // 30 cm for stations 3 to 5, or ch(0...) from 4 to 9
190f97ea 165 for (Int_t ch = 0; ch < AliMUONConstants::NTrackingCh(); ch++) {
06c11448 166 if (ch < 4) fRMin[ch] = TMath::Abs(AliMUONConstants::DefaultChamberZ(ch)) *
a9e2aefa 167 2.0 * TMath::Pi() / 180.0;
168 else fRMin[ch] = 30.0;
d0bfce8d 169 // maximum radius at 10 degrees and Z of chamber
06c11448 170 fRMax[ch] = TMath::Abs(AliMUONConstants::DefaultChamberZ(ch)) *
d0bfce8d 171 10.0 * TMath::Pi() / 180.0;
a9e2aefa 172 }
a9e2aefa 173
174 // ******** Parameters for making segments
175 // should be parametrized ????
176 // according to interval between chambers in a station ????
177 // Maximum distance in non bending plane
178 // 5 * 0.22 just to remember the way it was made in TRACKF_STAT
179 // SIGCUT*DYMAX(IZ)
190f97ea 180 for (Int_t st = 0; st < AliMUONConstants::NTrackingCh()/2; st++)
a9e2aefa 181 fSegmentMaxDistNonBending[st] = 5. * 0.22;
860cef81 182 // Maximum distance in bending plane:
183 // values from TRACKF_STAT, corresponding to (J psi 20cm),
184 // scaled to the real distance between chambers in a station
ef21c79e 185 fSegmentMaxDistBending[0] = TMath::Abs( 1.5 *
06c11448 186 (AliMUONConstants::DefaultChamberZ(1) - AliMUONConstants::DefaultChamberZ(0)) / 20.0);
e516b01d 187 fSegmentMaxDistBending[1] = TMath::Abs( 1.5 *
06c11448 188 (AliMUONConstants::DefaultChamberZ(3) - AliMUONConstants::DefaultChamberZ(2)) / 20.0);
e516b01d 189 fSegmentMaxDistBending[2] = TMath::Abs( 3.0 *
06c11448 190 (AliMUONConstants::DefaultChamberZ(5) - AliMUONConstants::DefaultChamberZ(4)) / 20.0);
e516b01d 191 fSegmentMaxDistBending[3] = TMath::Abs( 6.0 *
06c11448 192 (AliMUONConstants::DefaultChamberZ(7) - AliMUONConstants::DefaultChamberZ(6)) / 20.0);
e516b01d 193 fSegmentMaxDistBending[4] = TMath::Abs( 6.0 *
06c11448 194 (AliMUONConstants::DefaultChamberZ(9) - AliMUONConstants::DefaultChamberZ(8)) / 20.0);
195
a9e2aefa 196 return;
197}
198
199//__________________________________________________________________________
29f1b13a 200Double_t AliMUONTrackReconstructor::GetImpactParamFromBendingMomentum(Double_t BendingMomentum) const
a9e2aefa 201{
202 // Returns impact parameter at vertex in bending plane (cm),
203 // from the signed bending momentum "BendingMomentum" in bending plane (GeV/c),
204 // using simple values for dipole magnetic field.
065bd0e1 205 // The sign of "BendingMomentum" is the sign of the charge.
a9e2aefa 206 return (-0.0003 * fSimpleBValue * fSimpleBLength * fSimpleBPosition /
207 BendingMomentum);
208}
209
210//__________________________________________________________________________
29f1b13a 211Double_t AliMUONTrackReconstructor::GetBendingMomentumFromImpactParam(Double_t ImpactParam) const
a9e2aefa 212{
213 // Returns signed bending momentum in bending plane (GeV/c),
065bd0e1 214 // the sign being the sign of the charge for particles moving forward in Z,
a9e2aefa 215 // from the impact parameter "ImpactParam" at vertex in bending plane (cm),
216 // using simple values for dipole magnetic field.
a9e2aefa 217 return (-0.0003 * fSimpleBValue * fSimpleBLength * fSimpleBPosition /
218 ImpactParam);
219}
220
a9e2aefa 221//__________________________________________________________________________
29f1b13a 222void AliMUONTrackReconstructor::EventReconstruct(void)
a9e2aefa 223{
224 // To reconstruct one event
b840996b 225 AliDebug(1,"Enter EventReconstruct");
fff097e0 226 ResetTracks(); //AZ
227 ResetTrackHits(); //AZ
228 ResetSegments(); //AZ
229 ResetHitsForRec(); //AZ
a9e2aefa 230 MakeEventToBeReconstructed();
231 MakeSegments();
232 MakeTracks();
d837040f 233 if (fMUONData->IsTriggerTrackBranchesInTree())
234 ValidateTracksWithTrigger();
235
236 // Add tracks to MUON data container
237 for(Int_t i=0; i<GetNRecTracks(); i++) {
238 AliMUONTrack * track = (AliMUONTrack*) GetRecTracksPtr()->At(i);
239 fMUONData->AddRecTrack(*track);
240 }
241
a9e2aefa 242 return;
243}
244
276c44b7 245//__________________________________________________________________________
29f1b13a 246void AliMUONTrackReconstructor::EventReconstructTrigger(void)
276c44b7 247{
248 // To reconstruct one event
b840996b 249 AliDebug(1,"Enter EventReconstructTrigger");
276c44b7 250 MakeTriggerTracks();
251 return;
252}
253
a9e2aefa 254 //__________________________________________________________________________
29f1b13a 255void AliMUONTrackReconstructor::ResetHitsForRec(void)
a9e2aefa 256{
257 // To reset the array and the number of HitsForRec,
258 // and also the number of HitsForRec
259 // and the index of the first HitForRec per chamber
0ce28091 260 if (fHitsForRecPtr) fHitsForRecPtr->Delete();
a9e2aefa 261 fNHitsForRec = 0;
190f97ea 262 for (Int_t ch = 0; ch < AliMUONConstants::NTrackingCh(); ch++)
a9e2aefa 263 fNHitsForRecPerChamber[ch] = fIndexOfFirstHitForRecPerChamber[ch] = 0;
264 return;
265}
266
267 //__________________________________________________________________________
29f1b13a 268void AliMUONTrackReconstructor::ResetSegments(void)
a9e2aefa 269{
270 // To reset the TClonesArray of segments and the number of Segments
271 // for all stations
190f97ea 272 for (Int_t st = 0; st < AliMUONConstants::NTrackingCh()/2; st++) {
a9e2aefa 273 if (fSegmentsPtr[st]) fSegmentsPtr[st]->Clear();
274 fNSegments[st] = 0;
275 }
276 return;
277}
278
279 //__________________________________________________________________________
29f1b13a 280void AliMUONTrackReconstructor::ResetTracks(void)
a9e2aefa 281{
282 // To reset the TClonesArray of reconstructed tracks
8429a5e4 283 if (fRecTracksPtr) fRecTracksPtr->Delete();
284 // Delete in order that the Track destructors are called,
285 // hence the space for the TClonesArray of pointers to TrackHit's is freed
a9e2aefa 286 fNRecTracks = 0;
287 return;
288}
289
276c44b7 290
8429a5e4 291 //__________________________________________________________________________
29f1b13a 292void AliMUONTrackReconstructor::ResetTrackHits(void)
8429a5e4 293{
294 // To reset the TClonesArray of hits on reconstructed tracks
295 if (fRecTrackHitsPtr) fRecTrackHitsPtr->Clear();
296 fNRecTrackHits = 0;
297 return;
298}
299
a9e2aefa 300 //__________________________________________________________________________
29f1b13a 301void AliMUONTrackReconstructor::MakeEventToBeReconstructed(void)
a9e2aefa 302{
303 // To make the list of hits to be reconstructed,
29fc2c86 304 // either from the track ref. hits or from the raw clusters
a9e2aefa 305 // according to the parameter set for the reconstructor
1a38e749 306
29fc2c86 307 AliRunLoader *runLoader = fLoader->GetRunLoader();
308
b840996b 309 AliDebug(1,"Enter MakeEventToBeReconstructed");
fff097e0 310 //AZ ResetHitsForRec();
8f373020 311
312 // Reconstruction from raw clusters
313 // AliMUON *MUON = (AliMUON*) gAlice->GetModule("MUON"); // necessary ????
314 // Security on MUON ????
315 // TreeR assumed to be be "prepared" in calling function
316 // by "MUON->GetTreeR(nev)" ????
317 TTree *treeR = fLoader->TreeR();
318
319 //AZ? fMUONData->SetTreeAddress("RC");
320 AddHitsForRecFromRawClusters(treeR);
321 // No sorting: it is done automatically in the previous function
322
b840996b 323
324 AliDebug(1,"End of MakeEventToBeReconstructed");
325 if (AliLog::GetGlobalDebugLevel() > 0) {
326 AliDebug(1, Form("NHitsForRec: %d",fNHitsForRec));
190f97ea 327 for (Int_t ch = 0; ch < AliMUONConstants::NTrackingCh(); ch++) {
b840996b 328 AliDebug(1, Form("Chamber(0...): %d",ch));
329 AliDebug(1, Form("NHitsForRec: %d", fNHitsForRecPerChamber[ch]));
330 AliDebug(1, Form("Index(first HitForRec): %d", fIndexOfFirstHitForRecPerChamber[ch]));
331 for (Int_t hit = fIndexOfFirstHitForRecPerChamber[ch];
332 hit < fIndexOfFirstHitForRecPerChamber[ch] + fNHitsForRecPerChamber[ch];
333 hit++) {
334 AliDebug(1, Form("HitForRec index(0...): %d",hit));
335 ((*fHitsForRecPtr)[hit])->Dump();
a9e2aefa 336 }
337 }
338 }
339 return;
340}
341
a9e2aefa 342 //__________________________________________________________________________
29f1b13a 343void AliMUONTrackReconstructor::SortHitsForRecWithIncreasingChamber()
a9e2aefa 344{
345 // Sort HitsForRec's in increasing order with respect to chamber number.
346 // Uses the function "Compare".
347 // Update the information for HitsForRec per chamber too.
348 Int_t ch, nhits, prevch;
349 fHitsForRecPtr->Sort();
190f97ea 350 for (ch = 0; ch < AliMUONConstants::NTrackingCh(); ch++) {
a9e2aefa 351 fNHitsForRecPerChamber[ch] = 0;
352 fIndexOfFirstHitForRecPerChamber[ch] = 0;
353 }
354 prevch = 0; // previous chamber
355 nhits = 0; // number of hits in current chamber
356 // Loop over HitsForRec
357 for (Int_t hit = 0; hit < fNHitsForRec; hit++) {
358 // chamber number (0...)
359 ch = ((AliMUONHitForRec*) ((*fHitsForRecPtr)[hit]))->GetChamberNumber();
360 // increment number of hits in current chamber
361 (fNHitsForRecPerChamber[ch])++;
362 // update index of first HitForRec in current chamber
363 // if chamber number different from previous one
364 if (ch != prevch) {
365 fIndexOfFirstHitForRecPerChamber[ch] = hit;
366 prevch = ch;
367 }
368 }
369 return;
370}
371
a9e2aefa 372 //__________________________________________________________________________
29f1b13a 373void AliMUONTrackReconstructor::AddHitsForRecFromRawClusters(TTree* TR)
a9e2aefa 374{
375 // To add to the list of hits for reconstruction all the raw clusters
376 // No condition added, like in Fortran TRACKF_STAT,
377 // on the radius between RMin and RMax.
378 AliMUONHitForRec *hitForRec;
379 AliMUONRawCluster *clus;
f69d51b5 380 Int_t iclus, nclus, nTRentries;
a9e2aefa 381 TClonesArray *rawclusters;
b840996b 382 AliDebug(1,"Enter AddHitsForRecFromRawClusters");
88cb7938 383
cc87ebcd 384 if (fTrackMethod != 3) { //AZ
385 fMUONData->SetTreeAddress("RC"); //AZ
386 nTRentries = Int_t(TR->GetEntries());
387 if (nTRentries != 1) {
388 AliError(Form("nTRentries = %d not equal to 1 ",nTRentries));
389 exit(0);
390 }
391 fLoader->TreeR()->GetEvent(0); // only one entry
f69d51b5 392 }
52c9bc11 393
a9e2aefa 394 // Loop over tracking chambers
190f97ea 395 for (Int_t ch = 0; ch < AliMUONConstants::NTrackingCh(); ch++) {
a9e2aefa 396 // number of HitsForRec to 0 for the chamber
397 fNHitsForRecPerChamber[ch] = 0;
398 // index of first HitForRec for the chamber
399 if (ch == 0) fIndexOfFirstHitForRecPerChamber[ch] = 0;
400 else fIndexOfFirstHitForRecPerChamber[ch] = fNHitsForRec;
52c9bc11 401 rawclusters =fMUONData->RawClusters(ch);
a9e2aefa 402 nclus = (Int_t) (rawclusters->GetEntries());
403 // Loop over (cathode correlated) raw clusters
404 for (iclus = 0; iclus < nclus; iclus++) {
405 clus = (AliMUONRawCluster*) rawclusters->UncheckedAt(iclus);
406 // new AliMUONHitForRec from raw cluster
407 // and increment number of AliMUONHitForRec's (total and in chamber)
408 hitForRec = new ((*fHitsForRecPtr)[fNHitsForRec]) AliMUONHitForRec(clus);
409 fNHitsForRec++;
410 (fNHitsForRecPerChamber[ch])++;
411 // more information into HitForRec
412 // resolution: info should be already in raw cluster and taken from it ????
fff097e0 413 //hitForRec->SetBendingReso2(fBendingResolution * fBendingResolution);
414 //hitForRec->SetNonBendingReso2(fNonBendingResolution * fNonBendingResolution);
415 hitForRec->SetBendingReso2(clus->GetErrY() * clus->GetErrY());
416 hitForRec->SetNonBendingReso2(clus->GetErrX() * clus->GetErrX());
a9e2aefa 417 // original raw cluster
418 hitForRec->SetChamberNumber(ch);
419 hitForRec->SetHitNumber(iclus);
ba5b68db 420 // Z coordinate of the raw cluster (cm)
ba12c242 421 hitForRec->SetZ(clus->GetZ(0));
b840996b 422 if (AliLog::GetGlobalDebugLevel() > 1) {
a9e2aefa 423 cout << "chamber (0...): " << ch <<
424 " raw cluster (0...): " << iclus << endl;
425 clus->Dump();
426 cout << "AliMUONHitForRec number (1...): " << fNHitsForRec << endl;
427 hitForRec->Dump();}
428 } // end of cluster loop
429 } // end of chamber loop
cc87ebcd 430 SortHitsForRecWithIncreasingChamber();
a9e2aefa 431 return;
432}
433
434 //__________________________________________________________________________
29f1b13a 435void AliMUONTrackReconstructor::MakeSegments(void)
a9e2aefa 436{
437 // To make the list of segments in all stations,
438 // from the list of hits to be reconstructed
b840996b 439 AliDebug(1,"Enter MakeSegments");
fff097e0 440 //AZ ResetSegments();
a9e2aefa 441 // Loop over stations
cc87ebcd 442 Int_t nb = (fTrackMethod != 1) ? 3 : 0; //AZ
443 for (Int_t st = nb; st < AliMUONConstants::NTrackingCh()/2; st++)
a9e2aefa 444 MakeSegmentsPerStation(st);
b840996b 445 if (AliLog::GetGlobalDebugLevel() > 1) {
a9e2aefa 446 cout << "end of MakeSegments" << endl;
190f97ea 447 for (Int_t st = 0; st < AliMUONConstants::NTrackingCh()/2; st++) {
a9e2aefa 448 cout << "station(0...): " << st
449 << " Segments: " << fNSegments[st]
450 << endl;
451 for (Int_t seg = 0;
452 seg < fNSegments[st];
453 seg++) {
454 cout << "Segment index(0...): " << seg << endl;
455 ((*fSegmentsPtr[st])[seg])->Dump();
456 }
457 }
458 }
459 return;
460}
461
462 //__________________________________________________________________________
29f1b13a 463void AliMUONTrackReconstructor::MakeSegmentsPerStation(Int_t Station)
a9e2aefa 464{
465 // To make the list of segments in station number "Station" (0...)
466 // from the list of hits to be reconstructed.
467 // Updates "fNSegments"[Station].
468 // Segments in stations 4 and 5 are sorted
469 // according to increasing absolute value of "impact parameter"
470 AliMUONHitForRec *hit1Ptr, *hit2Ptr;
471 AliMUONSegment *segment;
472 Bool_t last2st;
473 Double_t bendingSlope, distBend, distNonBend, extBendCoor, extNonBendCoor,
d0bfce8d 474 impactParam = 0., maxImpactParam = 0., minImpactParam = 0.; // =0 to avoid compilation warnings.
b840996b 475 AliDebug(1,Form("Enter MakeSegmentsPerStation (0...) %d",Station));
a9e2aefa 476 // first and second chambers (0...) in the station
477 Int_t ch1 = 2 * Station;
478 Int_t ch2 = ch1 + 1;
479 // variable true for stations downstream of the dipole:
480 // Station(0..4) equal to 3 or 4
481 if ((Station == 3) || (Station == 4)) {
482 last2st = kTRUE;
483 // maximum impact parameter (cm) according to fMinBendingMomentum...
484 maxImpactParam =
485 TMath::Abs(GetImpactParamFromBendingMomentum(fMinBendingMomentum));
d0bfce8d 486 // minimum impact parameter (cm) according to fMaxBendingMomentum...
487 minImpactParam =
488 TMath::Abs(GetImpactParamFromBendingMomentum(fMaxBendingMomentum));
a9e2aefa 489 }
490 else last2st = kFALSE;
491 // extrapolation factor from Z of first chamber to Z of second chamber
492 // dZ to be changed to take into account fine structure of chambers ????
e516b01d 493 Double_t extrapFact;
a9e2aefa 494 // index for current segment
495 Int_t segmentIndex = 0;
496 // Loop over HitsForRec in the first chamber of the station
497 for (Int_t hit1 = fIndexOfFirstHitForRecPerChamber[ch1];
498 hit1 < fIndexOfFirstHitForRecPerChamber[ch1] + fNHitsForRecPerChamber[ch1];
499 hit1++) {
500 // pointer to the HitForRec
501 hit1Ptr = (AliMUONHitForRec*) ((*fHitsForRecPtr)[hit1]);
502 // extrapolation,
503 // on the straight line joining the HitForRec to the vertex (0,0,0),
504 // to the Z of the second chamber of the station
a9e2aefa 505 // Loop over HitsForRec in the second chamber of the station
506 for (Int_t hit2 = fIndexOfFirstHitForRecPerChamber[ch2];
507 hit2 < fIndexOfFirstHitForRecPerChamber[ch2] + fNHitsForRecPerChamber[ch2];
508 hit2++) {
509 // pointer to the HitForRec
510 hit2Ptr = (AliMUONHitForRec*) ((*fHitsForRecPtr)[hit2]);
511 // absolute values of distances, in bending and non bending planes,
512 // between the HitForRec in the second chamber
513 // and the previous extrapolation
e516b01d 514 extrapFact = hit2Ptr->GetZ()/ hit1Ptr->GetZ();
515 extBendCoor = extrapFact * hit1Ptr->GetBendingCoor();
516 extNonBendCoor = extrapFact * hit1Ptr->GetNonBendingCoor();
a9e2aefa 517 distBend = TMath::Abs(hit2Ptr->GetBendingCoor() - extBendCoor);
518 distNonBend = TMath::Abs(hit2Ptr->GetNonBendingCoor() - extNonBendCoor);
519 if (last2st) {
520 // bending slope
8999d47d 521 if ( hit1Ptr->GetZ() - hit2Ptr->GetZ() != 0.0 ) {
522 bendingSlope = (hit1Ptr->GetBendingCoor() - hit2Ptr->GetBendingCoor()) /
523 (hit1Ptr->GetZ() - hit2Ptr->GetZ());
524 // absolute value of impact parameter
525 impactParam =
526 TMath::Abs(hit1Ptr->GetBendingCoor() - hit1Ptr->GetZ() * bendingSlope);
527 }
528 else {
529 AliWarning("hit1Ptr->GetZ() = hit2Ptr->GetZ(): impactParam set to maxImpactParam");
530 impactParam = maxImpactParam;
531 }
a9e2aefa 532 }
533 // check for distances not too large,
534 // and impact parameter not too big if stations downstream of the dipole.
535 // Conditions "distBend" and "impactParam" correlated for these stations ????
536 if ((distBend < fSegmentMaxDistBending[Station]) &&
537 (distNonBend < fSegmentMaxDistNonBending[Station]) &&
d0bfce8d 538 (!last2st || (impactParam < maxImpactParam)) &&
539 (!last2st || (impactParam > minImpactParam))) {
a9e2aefa 540 // make new segment
541 segment = new ((*fSegmentsPtr[Station])[segmentIndex])
542 AliMUONSegment(hit1Ptr, hit2Ptr);
543 // update "link" to this segment from the hit in the first chamber
544 if (hit1Ptr->GetNSegments() == 0)
545 hit1Ptr->SetIndexOfFirstSegment(segmentIndex);
546 hit1Ptr->SetNSegments(hit1Ptr->GetNSegments() + 1);
b840996b 547 if (AliLog::GetGlobalDebugLevel() > 1) {
a9e2aefa 548 cout << "segmentIndex(0...): " << segmentIndex
549 << " distBend: " << distBend
550 << " distNonBend: " << distNonBend
551 << endl;
552 segment->Dump();
553 cout << "HitForRec in first chamber" << endl;
554 hit1Ptr->Dump();
555 cout << "HitForRec in second chamber" << endl;
556 hit2Ptr->Dump();
557 };
558 // increment index for current segment
559 segmentIndex++;
560 }
561 } //for (Int_t hit2
562 } // for (Int_t hit1...
563 fNSegments[Station] = segmentIndex;
564 // Sorting according to "impact parameter" if station(1..5) 4 or 5,
565 // i.e. Station(0..4) 3 or 4, using the function "Compare".
566 // After this sorting, it is impossible to use
567 // the "fNSegments" and "fIndexOfFirstSegment"
568 // of the HitForRec in the first chamber to explore all segments formed with it.
569 // Is this sorting really needed ????
570 if ((Station == 3) || (Station == 4)) (fSegmentsPtr[Station])->Sort();
b840996b 571 AliDebug(1,Form("Station: %d NSegments: %d ", Station, fNSegments[Station]));
a9e2aefa 572 return;
573}
574
575 //__________________________________________________________________________
29f1b13a 576void AliMUONTrackReconstructor::MakeTracks(void)
a9e2aefa 577{
578 // To make the tracks,
579 // from the list of segments and points in all stations
b840996b 580 AliDebug(1,"Enter MakeTracks");
8429a5e4 581 // The order may be important for the following Reset's
fff097e0 582 //AZ ResetTracks();
583 //AZ ResetTrackHits();
cc87ebcd 584 if (fTrackMethod != 1) { //AZ - Kalman filter
83dbc640 585 MakeTrackCandidatesK();
b035a148 586 if (fRecTracksPtr->GetEntriesFast() == 0) return;
83dbc640 587 // Follow tracks in stations(1..) 3, 2 and 1
588 FollowTracksK();
589 // Remove double tracks
590 RemoveDoubleTracksK();
591 // Propagate tracks to the vertex thru absorber
592 GoToVertex();
b035a148 593 // Fill AliMUONTrack data members
594 FillMUONTrack();
d837040f 595 } else {
83dbc640 596 // Look for candidates from at least 3 aligned points in stations(1..) 4 and 5
597 MakeTrackCandidates();
598 // Follow tracks in stations(1..) 3, 2 and 1
599 FollowTracks();
600 // Remove double tracks
601 RemoveDoubleTracks();
d837040f 602 UpdateTrackParamAtHit();
b8dc484b 603 UpdateHitForRecAtHit();
52c9bc11 604 }
a9e2aefa 605 return;
606}
607
276c44b7 608 //__________________________________________________________________________
29f1b13a 609void AliMUONTrackReconstructor::ValidateTracksWithTrigger(void)
d837040f 610{
7e6d7e07 611 // Try to match track from tracking system with trigger track
d837040f 612 AliMUONTrack *track;
24ab3324 613 TClonesArray *recTriggerTracks;
614
24ab3324 615 fMUONData->SetTreeAddress("RL");
616 fMUONData->GetRecTriggerTracks();
617 recTriggerTracks = fMUONData->RecTriggerTracks();
e8765288 618
d837040f 619 track = (AliMUONTrack*) fRecTracksPtr->First();
620 while (track) {
621 track->MatchTriggerTrack(recTriggerTracks);
622 track = (AliMUONTrack*) fRecTracksPtr->After(track);
e8765288 623 }
24ab3324 624
d837040f 625}
626
627 //__________________________________________________________________________
29f1b13a 628Bool_t AliMUONTrackReconstructor::MakeTriggerTracks(void)
276c44b7 629{
630 // To make the trigger tracks from Local Trigger
b840996b 631 AliDebug(1, "Enter MakeTriggerTracks");
276c44b7 632
633 Int_t nTRentries;
52c9bc11 634 Long_t gloTrigPat;
276c44b7 635 TClonesArray *localTrigger;
9131b4fe 636 TClonesArray *globalTrigger;
276c44b7 637 AliMUONLocalTrigger *locTrg;
9131b4fe 638 AliMUONGlobalTrigger *gloTrg;
bc4a7ff4 639
30178c30 640 TTree* treeR = fLoader->TreeR();
276c44b7 641
276c44b7 642 // Loading MUON subsystem
643 AliMUON * pMUON = (AliMUON *) gAlice->GetDetector("MUON");
bc4a7ff4 644
30178c30 645 nTRentries = Int_t(treeR->GetEntries());
d837040f 646
30178c30 647 treeR->GetEvent(0); // only one entry
d837040f 648
649 if (!(fMUONData->IsTriggerBranchesInTree())) {
8c343c7c 650 AliWarning(Form("Trigger information is not avalaible, nTRentries = %d not equal to 1",nTRentries));
d837040f 651 return kFALSE;
276c44b7 652 }
276c44b7 653
ce3e25a8 654 fMUONData->SetTreeAddress("TC");
52c9bc11 655 fMUONData->GetTrigger();
9131b4fe 656
52c9bc11 657 // global trigger for trigger pattern
9131b4fe 658 gloTrigPat = 0;
52c9bc11 659 globalTrigger = fMUONData->GlobalTrigger();
58ff0bd4 660 gloTrg = (AliMUONGlobalTrigger*)globalTrigger->UncheckedAt(0);
661
662 if (gloTrg)
663 gloTrigPat = gloTrg->GetGlobalPattern();
664
9131b4fe 665
52c9bc11 666 // local trigger for tracking
667 localTrigger = fMUONData->LocalTrigger();
276c44b7 668 Int_t nlocals = (Int_t) (localTrigger->GetEntries());
06c11448 669
670 Float_t z11 = AliMUONConstants::DefaultChamberZ(10);
671 Float_t z21 = AliMUONConstants::DefaultChamberZ(12);
276c44b7 672
bc4a7ff4 673 Float_t y11 = 0.;
674 Int_t stripX21 = 0;
675 Float_t y21 = 0.;
676 Float_t x11 = 0.;
677
276c44b7 678 for (Int_t i=0; i<nlocals; i++) { // loop on Local Trigger
52c9bc11 679 locTrg = (AliMUONLocalTrigger*)localTrigger->UncheckedAt(i);
bc4a7ff4 680
7fead4bb 681 AliDebug(1, "AliMUONTrackReconstructor::MakeTriggerTrack using NEW trigger \n");
682 AliMUONTriggerCircuitNew * circuit =
58ff0bd4 683 &(pMUON->TriggerCircuitNew(locTrg->LoCircuit()-1)); // -1 !!!
7fead4bb 684 y11 = circuit->GetY11Pos(locTrg->LoStripX());
685 stripX21 = locTrg->LoStripX()+locTrg->LoDev()+1;
686 y21 = circuit->GetY21Pos(stripX21);
687 x11 = circuit->GetX11Pos(locTrg->LoStripY());
688
58ff0bd4 689 AliDebug(1, Form(" MakeTriggerTrack %d %d %d %d %d %f %f %f \n",i,locTrg->LoCircuit(),
690 locTrg->LoStripX(),locTrg->LoStripX()+locTrg->LoDev()+1,locTrg->LoStripY(),y11, y21, x11));
7fead4bb 691
52c9bc11 692 Float_t thetax = TMath::ATan2( x11 , z11 );
693 Float_t thetay = TMath::ATan2( (y21-y11) , (z21-z11) );
bc4a7ff4 694
58ff0bd4 695 fTriggerTrack->SetX11(x11);
696 fTriggerTrack->SetY11(y11);
697 fTriggerTrack->SetThetax(thetax);
698 fTriggerTrack->SetThetay(thetay);
699 fTriggerTrack->SetGTPattern(gloTrigPat);
700
701 fMUONData->AddRecTriggerTrack(*fTriggerTrack);
276c44b7 702 } // end of loop on Local Trigger
d837040f 703 return kTRUE;
276c44b7 704}
705
a9e2aefa 706 //__________________________________________________________________________
29f1b13a 707Int_t AliMUONTrackReconstructor::MakeTrackCandidatesWithTwoSegments(AliMUONSegment *BegSegment)
a9e2aefa 708{
709 // To make track candidates with two segments in stations(1..) 4 and 5,
710 // the first segment being pointed to by "BegSegment".
711 // Returns the number of such track candidates.
712 Int_t endStation, iEndSegment, nbCan2Seg;
e516b01d 713 AliMUONSegment *endSegment;
714 AliMUONSegment *extrapSegment = NULL;
a9e2aefa 715 AliMUONTrack *recTrack;
716 Double_t mcsFactor;
b840996b 717 AliDebug(1,"Enter MakeTrackCandidatesWithTwoSegments");
a9e2aefa 718 // Station for the end segment
719 endStation = 7 - (BegSegment->GetHitForRec1())->GetChamberNumber() / 2;
720 // multiple scattering factor corresponding to one chamber
721 mcsFactor = 0.0136 /
722 GetBendingMomentumFromImpactParam(BegSegment->GetBendingImpact());
723 mcsFactor = fChamberThicknessInX0 * mcsFactor * mcsFactor;
724 // linear extrapolation to end station
a9e2aefa 725 // number of candidates with 2 segments to 0
726 nbCan2Seg = 0;
727 // Loop over segments in the end station
728 for (iEndSegment = 0; iEndSegment < fNSegments[endStation]; iEndSegment++) {
729 // pointer to segment
730 endSegment = (AliMUONSegment*) ((*fSegmentsPtr[endStation])[iEndSegment]);
731 // test compatibility between current segment and "extrapSegment"
04b5ea16 732 // 4 because 4 quantities in chi2
e516b01d 733 extrapSegment =
734 BegSegment->CreateSegmentFromLinearExtrapToStation(endSegment->GetZ(), mcsFactor);
a9e2aefa 735 if ((endSegment->
736 NormalizedChi2WithSegment(extrapSegment,
737 fMaxSigma2Distance)) <= 4.0) {
738 // both segments compatible:
739 // make track candidate from "begSegment" and "endSegment"
b840996b 740 AliDebug(2,Form("TrackCandidate with Segment %d in Station(0..) %d", iEndSegment, endStation));
a9e2aefa 741 // flag for both segments in one track:
742 // to be done in track constructor ????
743 BegSegment->SetInTrack(kTRUE);
744 endSegment->SetInTrack(kTRUE);
745 recTrack = new ((*fRecTracksPtr)[fNRecTracks])
746 AliMUONTrack(BegSegment, endSegment, this);
747 fNRecTracks++;
b840996b 748 if (AliLog::GetGlobalDebugLevel() > 1) recTrack->RecursiveDump();
a9e2aefa 749 // increment number of track candidates with 2 segments
750 nbCan2Seg++;
751 }
ddf8948c 752 delete extrapSegment; // should not delete HitForRec's it points to !!!!
a9e2aefa 753 } // for (iEndSegment = 0;...
a9e2aefa 754 return nbCan2Seg;
755}
756
757 //__________________________________________________________________________
29f1b13a 758Int_t AliMUONTrackReconstructor::MakeTrackCandidatesWithOneSegmentAndOnePoint(AliMUONSegment *BegSegment)
a9e2aefa 759{
760 // To make track candidates with one segment and one point
761 // in stations(1..) 4 and 5,
762 // the segment being pointed to by "BegSegment".
763 Int_t ch, ch1, ch2, endStation, iHit, iHitMax, iHitMin, nbCan1Seg1Hit;
e516b01d 764 AliMUONHitForRec *extrapHitForRec= NULL;
765 AliMUONHitForRec *hit;
a9e2aefa 766 AliMUONTrack *recTrack;
767 Double_t mcsFactor;
b840996b 768 AliDebug(1,"Enter MakeTrackCandidatesWithOneSegmentAndOnePoint");
a9e2aefa 769 // station for the end point
770 endStation = 7 - (BegSegment->GetHitForRec1())->GetChamberNumber() / 2;
771 // multiple scattering factor corresponding to one chamber
772 mcsFactor = 0.0136 /
773 GetBendingMomentumFromImpactParam(BegSegment->GetBendingImpact());
774 mcsFactor = fChamberThicknessInX0 * mcsFactor * mcsFactor;
775 // first and second chambers(0..) in the end station
776 ch1 = 2 * endStation;
777 ch2 = ch1 + 1;
778 // number of candidates to 0
779 nbCan1Seg1Hit = 0;
780 // Loop over chambers of the end station
781 for (ch = ch2; ch >= ch1; ch--) {
a9e2aefa 782 // limits for the hit index in the loop
783 iHitMin = fIndexOfFirstHitForRecPerChamber[ch];
784 iHitMax = iHitMin + fNHitsForRecPerChamber[ch];
785 // Loop over HitForRec's in the chamber
786 for (iHit = iHitMin; iHit < iHitMax; iHit++) {
787 // pointer to HitForRec
788 hit = (AliMUONHitForRec*) ((*fHitsForRecPtr)[iHit]);
789 // test compatibility between current HitForRec and "extrapHitForRec"
04b5ea16 790 // 2 because 2 quantities in chi2
e516b01d 791 // linear extrapolation to chamber
792 extrapHitForRec =
793 BegSegment->CreateHitForRecFromLinearExtrapToChamber( hit->GetZ(), mcsFactor);
a9e2aefa 794 if ((hit->
795 NormalizedChi2WithHitForRec(extrapHitForRec,
796 fMaxSigma2Distance)) <= 2.0) {
797 // both HitForRec's compatible:
798 // make track candidate from begSegment and current HitForRec
b840996b 799 AliDebug(2, Form("TrackCandidate with HitForRec %d in Chamber(0..) %d", iHit, ch));
a9e2aefa 800 // flag for beginning segments in one track:
801 // to be done in track constructor ????
802 BegSegment->SetInTrack(kTRUE);
803 recTrack = new ((*fRecTracksPtr)[fNRecTracks])
804 AliMUONTrack(BegSegment, hit, this);
805 // the right place to eliminate "double counting" ???? how ????
806 fNRecTracks++;
b840996b 807 if (AliLog::GetGlobalDebugLevel() > 1) recTrack->RecursiveDump();
a9e2aefa 808 // increment number of track candidates
809 nbCan1Seg1Hit++;
810 }
ddf8948c 811 delete extrapHitForRec;
a9e2aefa 812 } // for (iHit = iHitMin;...
a9e2aefa 813 } // for (ch = ch2;...
814 return nbCan1Seg1Hit;
815}
816
817 //__________________________________________________________________________
29f1b13a 818void AliMUONTrackReconstructor::MakeTrackCandidates(void)
a9e2aefa 819{
820 // To make track candidates
821 // with at least 3 aligned points in stations(1..) 4 and 5
822 // (two Segment's or one Segment and one HitForRec)
823 Int_t begStation, iBegSegment, nbCan1Seg1Hit, nbCan2Seg;
824 AliMUONSegment *begSegment;
b840996b 825 AliDebug(1,"Enter MakeTrackCandidates");
a9e2aefa 826 // Loop over stations(1..) 5 and 4 for the beginning segment
827 for (begStation = 4; begStation > 2; begStation--) {
828 // Loop over segments in the beginning station
829 for (iBegSegment = 0; iBegSegment < fNSegments[begStation]; iBegSegment++) {
830 // pointer to segment
831 begSegment = (AliMUONSegment*) ((*fSegmentsPtr[begStation])[iBegSegment]);
b840996b 832 AliDebug(2,Form("Look for TrackCandidate's with Segment %d in Station(0..) %d", iBegSegment, begStation));
a9e2aefa 833 // Look for track candidates with two segments,
834 // "begSegment" and all compatible segments in other station.
835 // Only for beginning station(1..) 5
836 // because candidates with 2 segments have to looked for only once.
837 if (begStation == 4)
838 nbCan2Seg = MakeTrackCandidatesWithTwoSegments(begSegment);
956019b6 839 // Look for track candidates with one segment and one point,
a9e2aefa 840 // "begSegment" and all compatible HitForRec's in other station.
841 // Only if "begSegment" does not belong already to a track candidate.
842 // Is that a too strong condition ????
843 if (!(begSegment->GetInTrack()))
844 nbCan1Seg1Hit = MakeTrackCandidatesWithOneSegmentAndOnePoint(begSegment);
845 } // for (iBegSegment = 0;...
846 } // for (begStation = 4;...
847 return;
848}
849
850 //__________________________________________________________________________
29f1b13a 851void AliMUONTrackReconstructor::FollowTracks(void)
a9e2aefa 852{
853 // Follow tracks in stations(1..) 3, 2 and 1
04b5ea16 854 // too long: should be made more modular !!!!
e516b01d 855 AliMUONHitForRec *bestHit, *extrapHit, *hit;
856 AliMUONSegment *bestSegment, *extrapSegment, *segment;
04b5ea16 857 AliMUONTrack *track, *nextTrack;
858 AliMUONTrackParam *trackParam1, trackParam[2], trackParamVertex;
ecfa008b 859 // -1 to avoid compilation warnings
860 Int_t ch = -1, chInStation, chBestHit = -1, iHit, iSegment, station, trackIndex;
04b5ea16 861 Double_t bestChi2, chi2, dZ1, dZ2, dZ3, maxSigma2Distance, mcsFactor;
d0bfce8d 862 Double_t bendingMomentum, chi2Norm = 0.;
cc87ebcd 863
1a38e749 864
04b5ea16 865 // local maxSigma2Distance, for easy increase in testing
866 maxSigma2Distance = fMaxSigma2Distance;
b840996b 867 AliDebug(2,"Enter FollowTracks");
a9e2aefa 868 // Loop over track candidates
04b5ea16 869 track = (AliMUONTrack*) fRecTracksPtr->First();
870 trackIndex = -1;
871 while (track) {
872 // Follow function for each track candidate ????
873 trackIndex++;
874 nextTrack = (AliMUONTrack*) fRecTracksPtr->After(track); // prepare next track
b840996b 875 AliDebug(2,Form("FollowTracks: track candidate(0..): %d", trackIndex));
956019b6 876 // Fit track candidate
877 track->SetFitMCS(0); // without multiple Coulomb scattering
878 track->SetFitNParam(3); // with 3 parameters (X = Y = 0)
879 track->SetFitStart(0); // from parameters at vertex
880 track->Fit();
b840996b 881 if (AliLog::GetGlobalDebugLevel()> 2) {
a9e2aefa 882 cout << "FollowTracks: track candidate(0..): " << trackIndex
956019b6 883 << " after fit in stations(0..) 3 and 4" << endl;
a9e2aefa 884 track->RecursiveDump();
885 }
886 // Loop over stations(1..) 3, 2 and 1
04b5ea16 887 // something SPECIAL for stations 2 and 1 for majority 3 coincidence ????
888 // otherwise: majority coincidence 2 !!!!
a9e2aefa 889 for (station = 2; station >= 0; station--) {
890 // Track parameters at first track hit (smallest Z)
891 trackParam1 = ((AliMUONTrackHit*)
892 (track->GetTrackHitsPtr()->First()))->GetTrackParam();
893 // extrapolation to station
894 trackParam1->ExtrapToStation(station, trackParam);
79e1e601 895 extrapSegment = new AliMUONSegment(); // empty segment
a9e2aefa 896 // multiple scattering factor corresponding to one chamber
897 // and momentum in bending plane (not total)
898 mcsFactor = 0.0136 * trackParam1->GetInverseBendingMomentum();
899 mcsFactor = fChamberThicknessInX0 * mcsFactor * mcsFactor;
900 // Z difference from previous station
f93b9bd8 901 dZ1 = AliMUONConstants::DefaultChamberZ(2 * station) -
902 AliMUONConstants::DefaultChamberZ(2 * station + 2);
a9e2aefa 903 // Z difference between the two previous stations
f93b9bd8 904 dZ2 = AliMUONConstants::DefaultChamberZ(2 * station + 2) -
905 AliMUONConstants::DefaultChamberZ(2 * station + 4);
04b5ea16 906 // Z difference between the two chambers in the previous station
f93b9bd8 907 dZ3 = AliMUONConstants::DefaultChamberZ(2 * station) -
908 AliMUONConstants::DefaultChamberZ(2 * station + 1);
04b5ea16 909 extrapSegment->SetBendingCoorReso2(fBendingResolution * fBendingResolution);
910 extrapSegment->
911 SetNonBendingCoorReso2(fNonBendingResolution * fNonBendingResolution);
912 extrapSegment->UpdateFromStationTrackParam
913 (trackParam, mcsFactor, dZ1, dZ2, dZ3, station,
914 trackParam1->GetInverseBendingMomentum());
a9e2aefa 915 bestChi2 = 5.0;
916 bestSegment = NULL;
b840996b 917 if (AliLog::GetGlobalDebugLevel() > 2) {
a9e2aefa 918 cout << "FollowTracks: track candidate(0..): " << trackIndex
919 << " Look for segment in station(0..): " << station << endl;
920 }
1a38e749 921
a9e2aefa 922 // Loop over segments in station
923 for (iSegment = 0; iSegment < fNSegments[station]; iSegment++) {
924 // Look for best compatible Segment in station
925 // should consider all possibilities ????
926 // multiple scattering ????
927 // separation in 2 functions: Segment and HitForRec ????
928 segment = (AliMUONSegment*) ((*fSegmentsPtr[station])[iSegment]);
d0bfce8d 929 // correction of corrected segment (fBendingCoor and fNonBendingCoor)
930 // according to real Z value of "segment" and slopes of "extrapSegment"
e516b01d 931 (&(trackParam[0]))->ExtrapToZ(segment->GetZ());
932 (&(trackParam[1]))->ExtrapToZ(segment->GetZ());
933 extrapSegment->SetBendingCoor((&(trackParam[0]))->GetBendingCoor());
934 extrapSegment->SetNonBendingCoor((&(trackParam[0]))->GetNonBendingCoor());
935 extrapSegment->SetBendingSlope((&(trackParam[0]))->GetBendingSlope());
936 extrapSegment->SetNonBendingSlope((&(trackParam[0]))->GetNonBendingSlope());
d0bfce8d 937 chi2 = segment->
e516b01d 938 NormalizedChi2WithSegment(extrapSegment, maxSigma2Distance);
a9e2aefa 939 if (chi2 < bestChi2) {
940 // update best Chi2 and Segment if better found
941 bestSegment = segment;
942 bestChi2 = chi2;
943 }
944 }
945 if (bestSegment) {
946 // best segment found: add it to track candidate
e516b01d 947 (&(trackParam[0]))->ExtrapToZ(bestSegment->GetZ());
948 (&(trackParam[1]))->ExtrapToZ(bestSegment->GetZ());
a9e2aefa 949 track->AddSegment(bestSegment);
950 // set track parameters at these two TrakHit's
951 track->SetTrackParamAtHit(track->GetNTrackHits() - 2, &(trackParam[0]));
952 track->SetTrackParamAtHit(track->GetNTrackHits() - 1, &(trackParam[1]));
b840996b 953 AliDebug(3, Form("FollowTracks: track candidate(0..): %d Added segment in station(0..): %d", trackIndex, station));
954 if (AliLog::GetGlobalDebugLevel()>2) track->RecursiveDump();
a9e2aefa 955 }
956 else {
957 // No best segment found:
958 // Look for best compatible HitForRec in station:
959 // should consider all possibilities ????
960 // multiple scattering ???? do about like for extrapSegment !!!!
79e1e601 961 extrapHit = new AliMUONHitForRec(); // empty hit
a9e2aefa 962 bestChi2 = 3.0;
963 bestHit = NULL;
b840996b 964 AliDebug(3, Form("FollowTracks: track candidate(0..): %d Segment not found, look for hit in station(0..): %d ",
965 trackIndex, station));
966
a9e2aefa 967 // Loop over chambers of the station
d82671a0 968 for (chInStation = 0; chInStation < 2; chInStation++) {
956019b6 969 ch = 2 * station + chInStation;
a9e2aefa 970 for (iHit = fIndexOfFirstHitForRecPerChamber[ch];
971 iHit < fIndexOfFirstHitForRecPerChamber[ch] +
972 fNHitsForRecPerChamber[ch];
973 iHit++) {
974 hit = (AliMUONHitForRec*) ((*fHitsForRecPtr)[iHit]);
e516b01d 975 // coordinates of extrapolated hit
976 (&(trackParam[chInStation]))->ExtrapToZ(hit->GetZ());
977 extrapHit->
978 SetBendingCoor((&(trackParam[chInStation]))->GetBendingCoor());
979 extrapHit->
980 SetNonBendingCoor((&(trackParam[chInStation]))->GetNonBendingCoor());
981 // resolutions from "extrapSegment"
982 extrapHit->SetBendingReso2(extrapSegment->GetBendingCoorReso2());
983 extrapHit->SetNonBendingReso2(extrapSegment->GetNonBendingCoorReso2());
984 // Loop over hits in the chamber
a9e2aefa 985 // condition for hit not already in segment ????
986 chi2 = hit->NormalizedChi2WithHitForRec(extrapHit, maxSigma2Distance);
987 if (chi2 < bestChi2) {
988 // update best Chi2 and HitForRec if better found
989 bestHit = hit;
990 bestChi2 = chi2;
d82671a0 991 chBestHit = chInStation;
a9e2aefa 992 }
993 }
994 }
995 if (bestHit) {
996 // best hit found: add it to track candidate
e516b01d 997 (&(trackParam[chBestHit]))->ExtrapToZ(bestHit->GetZ());
a9e2aefa 998 track->AddHitForRec(bestHit);
956019b6 999 // set track parameters at this TrackHit
a9e2aefa 1000 track->SetTrackParamAtHit(track->GetNTrackHits() - 1,
1001 &(trackParam[chBestHit]));
b840996b 1002 if (AliLog::GetGlobalDebugLevel() > 2) {
a9e2aefa 1003 cout << "FollowTracks: track candidate(0..): " << trackIndex
1004 << " Added hit in station(0..): " << station << endl;
1005 track->RecursiveDump();
1006 }
1007 }
1008 else {
8429a5e4 1009 // Remove current track candidate
1010 // and corresponding TrackHit's, ...
1011 track->Remove();
04b5ea16 1012 delete extrapSegment;
d0bfce8d 1013 delete extrapHit;
a9e2aefa 1014 break; // stop the search for this candidate:
1015 // exit from the loop over station
1016 }
d0bfce8d 1017 delete extrapHit;
a9e2aefa 1018 }
04b5ea16 1019 delete extrapSegment;
a9e2aefa 1020 // Sort track hits according to increasing Z
1021 track->GetTrackHitsPtr()->Sort();
1022 // Update track parameters at first track hit (smallest Z)
1023 trackParam1 = ((AliMUONTrackHit*)
1024 (track->GetTrackHitsPtr()->First()))->GetTrackParam();
d0bfce8d 1025 bendingMomentum = 0.;
1026 if (TMath::Abs(trackParam1->GetInverseBendingMomentum()) > 0.)
1027 bendingMomentum = TMath::Abs(1/(trackParam1->GetInverseBendingMomentum()));
1028 // Track removed if bendingMomentum not in window [min, max]
1029 if ((bendingMomentum < fMinBendingMomentum) || (bendingMomentum > fMaxBendingMomentum)) {
1030 track->Remove();
1031 break; // stop the search for this candidate:
1032 // exit from the loop over station
1033 }
956019b6 1034 // Track fit
04b5ea16 1035 // with multiple Coulomb scattering if all stations
1036 if (station == 0) track->SetFitMCS(1);
956019b6 1037 // without multiple Coulomb scattering if not all stations
04b5ea16 1038 else track->SetFitMCS(0);
956019b6 1039 track->SetFitNParam(5); // with 5 parameters (momentum and position)
1040 track->SetFitStart(1); // from parameters at first hit
1041 track->Fit();
d0bfce8d 1042 Double_t numberOfDegFree = (2.0 * track->GetNTrackHits() - 5);
1043 if (numberOfDegFree > 0) {
1044 chi2Norm = track->GetFitFMin() / numberOfDegFree;
1045 } else {
1046 chi2Norm = 1.e10;
1047 }
1048 // Track removed if normalized chi2 too high
1049 if (chi2Norm > fMaxChi2) {
1050 track->Remove();
1051 break; // stop the search for this candidate:
1052 // exit from the loop over station
1053 }
b840996b 1054 if (AliLog::GetGlobalDebugLevel() > 2) {
a9e2aefa 1055 cout << "FollowTracks: track candidate(0..): " << trackIndex
1056 << " after fit from station(0..): " << station << " to 4" << endl;
1057 track->RecursiveDump();
1058 }
04b5ea16 1059 // Track extrapolation to the vertex through the absorber (Branson)
956019b6 1060 // after going through the first station
04b5ea16 1061 if (station == 0) {
1062 trackParamVertex = *trackParam1;
889a0215 1063 (&trackParamVertex)->ExtrapToVertex(0.,0.,0.);
04b5ea16 1064 track->SetTrackParamAtVertex(&trackParamVertex);
b840996b 1065 if (AliLog::GetGlobalDebugLevel() > 0) {
6ae236ee 1066 cout << "FollowTracks: track candidate(0..): " << trackIndex
1067 << " after extrapolation to vertex" << endl;
1068 track->RecursiveDump();
1069 }
04b5ea16 1070 }
a9e2aefa 1071 } // for (station = 2;...
04b5ea16 1072 // go really to next track
1073 track = nextTrack;
1074 } // while (track)
1075 // Compression of track array (necessary after Remove ????)
1076 fRecTracksPtr->Compress();
1077 return;
1078}
1079
1080 //__________________________________________________________________________
29f1b13a 1081void AliMUONTrackReconstructor::RemoveDoubleTracks(void)
8429a5e4 1082{
1083 // To remove double tracks.
1084 // Tracks are considered identical
1085 // if they have at least half of their hits in common.
1086 // Among two identical tracks, one keeps the track with the larger number of hits
1087 // or, if these numbers are equal, the track with the minimum Chi2.
1088 AliMUONTrack *track1, *track2, *trackToRemove;
1089 Bool_t identicalTracks;
1090 Int_t hitsInCommon, nHits1, nHits2;
1091 identicalTracks = kTRUE;
1092 while (identicalTracks) {
1093 identicalTracks = kFALSE;
1094 // Loop over first track of the pair
1095 track1 = (AliMUONTrack*) fRecTracksPtr->First();
1096 while (track1 && (!identicalTracks)) {
1097 nHits1 = track1->GetNTrackHits();
1098 // Loop over second track of the pair
1099 track2 = (AliMUONTrack*) fRecTracksPtr->After(track1);
1100 while (track2 && (!identicalTracks)) {
1101 nHits2 = track2->GetNTrackHits();
1102 // number of hits in common between two tracks
1103 hitsInCommon = track1->HitsInCommon(track2);
1104 // check for identical tracks
1105 if ((4 * hitsInCommon) >= (nHits1 + nHits2)) {
1106 identicalTracks = kTRUE;
1107 // decide which track to remove
1108 if (nHits1 > nHits2) trackToRemove = track2;
1109 else if (nHits1 < nHits2) trackToRemove = track1;
1110 else if ((track1->GetFitFMin()) < (track2->GetFitFMin()))
1111 trackToRemove = track2;
1112 else trackToRemove = track1;
1113 // remove it
1114 trackToRemove->Remove();
1115 }
1116 track2 = (AliMUONTrack*) fRecTracksPtr->After(track2);
1117 } // track2
1118 track1 = (AliMUONTrack*) fRecTracksPtr->After(track1);
1119 } // track1
1120 }
1121 return;
1122}
1123
d837040f 1124 //__________________________________________________________________________
29f1b13a 1125void AliMUONTrackReconstructor::UpdateTrackParamAtHit()
d837040f 1126{
1127 // Set track parameters after track fitting. Fill fTrackParamAtHit of AliMUONTrack's
1128 AliMUONTrack *track;
1129 AliMUONTrackHit *trackHit;
1130 AliMUONTrackParam *trackParam;
1131 track = (AliMUONTrack*) fRecTracksPtr->First();
1132 while (track) {
1133 trackHit = (AliMUONTrackHit*) (track->GetTrackHitsPtr())->First();
1134 while (trackHit) {
1135 trackParam = trackHit->GetTrackParam();
1136 track->AddTrackParamAtHit(trackParam);
1137 trackHit = (AliMUONTrackHit*) (track->GetTrackHitsPtr())->After(trackHit);
1138 } // trackHit
1139 track = (AliMUONTrack*) fRecTracksPtr->After(track);
1140 } // track
1141 return;
1142}
1143
b8dc484b 1144 //__________________________________________________________________________
29f1b13a 1145void AliMUONTrackReconstructor::UpdateHitForRecAtHit()
b8dc484b 1146{
1147 // Set cluster parameterss after track fitting. Fill fHitForRecAtHit of AliMUONTrack's
1148 AliMUONTrack *track;
1149 AliMUONTrackHit *trackHit;
1150 AliMUONHitForRec *hitForRec;
1151 track = (AliMUONTrack*) fRecTracksPtr->First();
1152 while (track) {
1153 trackHit = (AliMUONTrackHit*) (track->GetTrackHitsPtr())->First();
1154 while (trackHit) {
1155 hitForRec = trackHit->GetHitForRecPtr();
1156 track->AddHitForRecAtHit(hitForRec);
1157 trackHit = (AliMUONTrackHit*) (track->GetTrackHitsPtr())->After(trackHit);
1158 } // trackHit
1159 track = (AliMUONTrack*) fRecTracksPtr->After(track);
1160 } // track
1161 return;
1162}
1163
b035a148 1164 //__________________________________________________________________________
29f1b13a 1165void AliMUONTrackReconstructor::FillMUONTrack()
b035a148 1166{
1167 // Set track parameters at hits for Kalman track. Fill fTrackParamAtHit of AliMUONTrack's
1168 AliMUONTrackK *track;
1169 track = (AliMUONTrackK*) fRecTracksPtr->First();
1170 while (track) {
1171 track->FillMUONTrack();
1172 track = (AliMUONTrackK*) fRecTracksPtr->After(track);
1173 }
1174 return;
1175}
1176
8429a5e4 1177 //__________________________________________________________________________
29f1b13a 1178void AliMUONTrackReconstructor::EventDump(void)
04b5ea16 1179{
1180 // Dump reconstructed event (track parameters at vertex and at first hit),
1181 // and the particle parameters
1182
1183 AliMUONTrack *track;
1184 AliMUONTrackParam *trackParam, *trackParam1;
04b5ea16 1185 Double_t bendingSlope, nonBendingSlope, pYZ;
1186 Double_t pX, pY, pZ, x, y, z, c;
1187 Int_t np, trackIndex, nTrackHits;
1188
b840996b 1189 AliDebug(1,"****** enter EventDump ******");
1190 AliDebug(1, Form("Number of Reconstructed tracks : %d", fNRecTracks));
1191
04b5ea16 1192 fRecTracksPtr->Compress(); // for simple loop without "Next" since no hole
1193 // Loop over reconstructed tracks
1194 for (trackIndex = 0; trackIndex < fNRecTracks; trackIndex++) {
83dbc640 1195 if (fTrackMethod != 1) continue; //AZ - skip the rest for now
b840996b 1196 AliDebug(1, Form("track number: %d", trackIndex));
04b5ea16 1197 // function for each track for modularity ????
1198 track = (AliMUONTrack*) ((*fRecTracksPtr)[trackIndex]);
1199 nTrackHits = track->GetNTrackHits();
b840996b 1200 AliDebug(1, Form("Number of track hits: %d ", nTrackHits));
04b5ea16 1201 // track parameters at Vertex
1202 trackParam = track->GetTrackParamAtVertex();
1203 x = trackParam->GetNonBendingCoor();
1204 y = trackParam->GetBendingCoor();
1205 z = trackParam->GetZ();
1206 bendingSlope = trackParam->GetBendingSlope();
1207 nonBendingSlope = trackParam->GetNonBendingSlope();
1208 pYZ = 1/TMath::Abs(trackParam->GetInverseBendingMomentum());
1209 pZ = pYZ/TMath::Sqrt(1+bendingSlope*bendingSlope);
1210 pX = pZ * nonBendingSlope;
1211 pY = pZ * bendingSlope;
1212 c = TMath::Sign(1.0, trackParam->GetInverseBendingMomentum());
b840996b 1213 AliDebug(1, Form("Track parameters at Vertex z= %f: X= %f Y= %f pX= %f pY= %f pZ= %f c= %f\n",
1214 z, x, y, pX, pY, pZ, c));
04b5ea16 1215
1216 // track parameters at first hit
1217 trackParam1 = ((AliMUONTrackHit*)
1218 (track->GetTrackHitsPtr()->First()))->GetTrackParam();
1219 x = trackParam1->GetNonBendingCoor();
1220 y = trackParam1->GetBendingCoor();
1221 z = trackParam1->GetZ();
1222 bendingSlope = trackParam1->GetBendingSlope();
1223 nonBendingSlope = trackParam1->GetNonBendingSlope();
1224 pYZ = 1/TMath::Abs(trackParam1->GetInverseBendingMomentum());
1225 pZ = pYZ/TMath::Sqrt(1.0 + bendingSlope * bendingSlope);
1226 pX = pZ * nonBendingSlope;
1227 pY = pZ * bendingSlope;
1228 c = TMath::Sign(1.0, trackParam1->GetInverseBendingMomentum());
b840996b 1229 AliDebug(1, Form("track parameters at z= %f: X= %f Y= %f pX= %f pY= %f pZ= %f c= %f\n",
1230 z, x, y, pX, pY, pZ, c));
04b5ea16 1231 }
8f373020 1232 // informations about generated particles NO !!!!!!!!
04b5ea16 1233
88cb7938 1234// for (Int_t iPart = 0; iPart < np; iPart++) {
1235// p = gAlice->Particle(iPart);
1236// printf(" particle %d: type= %d px= %f py= %f pz= %f pdg= %d\n",
1237// iPart, p->GetPdgCode(), p->Px(), p->Py(), p->Pz(), p->GetPdgCode());
1238// }
a9e2aefa 1239 return;
1240}
1241
276c44b7 1242
1243//__________________________________________________________________________
29f1b13a 1244void AliMUONTrackReconstructor::EventDumpTrigger(void)
276c44b7 1245{
1246 // Dump reconstructed trigger event
1247 // and the particle parameters
1248
52c9bc11 1249 AliMUONTriggerTrack *triggertrack ;
1250 Int_t nTriggerTracks = fMUONData->RecTriggerTracks()->GetEntriesFast();
276c44b7 1251
b840996b 1252 AliDebug(1, "****** enter EventDumpTrigger ******");
1253 AliDebug(1, Form("Number of Reconstructed tracks : %d ", nTriggerTracks));
1254
276c44b7 1255 // Loop over reconstructed tracks
52c9bc11 1256 for (Int_t trackIndex = 0; trackIndex < nTriggerTracks; trackIndex++) {
1257 triggertrack = (AliMUONTriggerTrack*)fMUONData->RecTriggerTracks()->At(trackIndex);
276c44b7 1258 printf(" trigger track number %i x11=%f y11=%f thetax=%f thetay=%f \n",
1259 trackIndex,
1260 triggertrack->GetX11(),triggertrack->GetY11(),
1261 triggertrack->GetThetax(),triggertrack->GetThetay());
1262 }
1263}
1264
83dbc640 1265//__________________________________________________________________________
29f1b13a 1266void AliMUONTrackReconstructor::MakeTrackCandidatesK(void)
83dbc640 1267{
1268 // To make initial tracks for Kalman filter from the list of segments
1269 Int_t istat, iseg;
1270 AliMUONSegment *segment;
1271 AliMUONTrackK *trackK;
1272
b840996b 1273 AliDebug(1,"Enter MakeTrackCandidatesK");
83dbc640 1274
fff097e0 1275 AliMUONTrackK a(this, fHitsForRecPtr);
83dbc640 1276 // Loop over stations(1...) 5 and 4
1277 for (istat=4; istat>=3; istat--) {
1278 // Loop over segments in the station
1279 for (iseg=0; iseg<fNSegments[istat]; iseg++) {
1280 // Transform segments to tracks and evaluate covariance matrix
1281 segment = (AliMUONSegment*) ((*fSegmentsPtr[istat])[iseg]);
cc87ebcd 1282 trackK = new ((*fRecTracksPtr)[fNRecTracks++]) AliMUONTrackK(segment);
83dbc640 1283 } // for (iseg=0;...)
1284 } // for (istat=4;...)
1285 return;
1286}
1287
1288//__________________________________________________________________________
29f1b13a 1289void AliMUONTrackReconstructor::FollowTracksK(void)
83dbc640 1290{
1291 // Follow tracks using Kalman filter
30178c30 1292 Bool_t ok;
b035a148 1293 Int_t icand, ichamBeg = 0, ichamEnd, chamBits;
83dbc640 1294 Double_t zDipole1, zDipole2;
1295 AliMUONTrackK *trackK;
1296 AliMUONHitForRec *hit;
1297 AliMUONRawCluster *clus;
1298 TClonesArray *rawclusters;
83dbc640 1299 clus = 0; rawclusters = 0;
1300
b035a148 1301 zDipole1 = GetSimpleBPosition() + GetSimpleBLength()/2;
1302 zDipole2 = zDipole1 - GetSimpleBLength();
83dbc640 1303
1304 // Print hits
b035a148 1305 trackK = (AliMUONTrackK*) ((*fRecTracksPtr)[0]);
8f373020 1306
b035a148 1307 if (trackK->DebugLevel() > 0) {
1308 for (Int_t i1=0; i1<fNHitsForRec; i1++) {
1309 hit = (AliMUONHitForRec*) ((*fHitsForRecPtr)[i1]);
b035a148 1310 printf(" Hit # %d %10.4f %10.4f %10.4f",
1311 hit->GetChamberNumber(), hit->GetBendingCoor(),
1312 hit->GetNonBendingCoor(), hit->GetZ());
8f373020 1313
1314 // from raw clusters
1315 rawclusters = fMUONData->RawClusters(hit->GetChamberNumber());
1316 clus = (AliMUONRawCluster*) rawclusters->UncheckedAt(hit->
1317 GetHitNumber());
1318 printf(" %d", clus->GetTrack(1));
1319 if (clus->GetTrack(2) != -1) printf(" %d \n", clus->GetTrack(2));
1320 else printf("\n");
1321
83dbc640 1322 }
b035a148 1323 } // if (trackK->DebugLevel() > 0)
83dbc640 1324
1325 icand = -1;
b035a148 1326 Int_t nSeeds;
1327 nSeeds = fNRecTracks; // starting number of seeds
83dbc640 1328 // Loop over track candidates
1329 while (icand < fNRecTracks-1) {
1330 icand ++;
b035a148 1331 if (trackK->DebugLevel()>0) cout << " *** Kalman track candidate No. " << icand << endl;
83dbc640 1332 trackK = (AliMUONTrackK*) ((*fRecTracksPtr)[icand]);
b035a148 1333 if (trackK->GetRecover() < 0) continue; // failed track
83dbc640 1334
1335 // Discard candidate which will produce the double track
b035a148 1336 /*
83dbc640 1337 if (icand > 0) {
30178c30 1338 ok = CheckCandidateK(icand,nSeeds);
1339 if (!ok) {
b035a148 1340 trackK->SetRecover(-1); // mark candidate to be removed
1341 continue;
83dbc640 1342 }
1343 }
b035a148 1344 */
83dbc640 1345
30178c30 1346 ok = kTRUE;
8f373020 1347 if (trackK->GetRecover() == 0)
1348 hit = (AliMUONHitForRec*) trackK->GetTrackHits()->Last(); // last hit
1349 else
1350 hit = trackK->GetHitLastOk(); // hit where track stopped
1351
b035a148 1352 if (hit) ichamBeg = hit->GetChamberNumber();
83dbc640 1353 ichamEnd = 0;
1354 // Check propagation direction
cc87ebcd 1355 if (!hit) { ichamBeg = ichamEnd; AliFatal(" ??? "); }
b035a148 1356 else if (trackK->GetTrackDir() < 0) {
83dbc640 1357 ichamEnd = 9; // forward propagation
30178c30 1358 ok = trackK->KalmanFilter(ichamBeg,ichamEnd,kFALSE,zDipole1,zDipole2);
1359 if (ok) {
83dbc640 1360 ichamBeg = ichamEnd;
1361 ichamEnd = 6; // backward propagation
1362 // Change weight matrix and zero fChi2 for backpropagation
1363 trackK->StartBack();
b035a148 1364 trackK->SetTrackDir(1);
30178c30 1365 ok = trackK->KalmanFilter(ichamBeg,ichamEnd,kTRUE,zDipole1,zDipole2);
83dbc640 1366 ichamBeg = ichamEnd;
1367 ichamEnd = 0;
1368 }
1369 } else {
1370 if (trackK->GetBPFlag()) {
1371 // backpropagation
1372 ichamEnd = 6; // backward propagation
1373 // Change weight matrix and zero fChi2 for backpropagation
1374 trackK->StartBack();
30178c30 1375 ok = trackK->KalmanFilter(ichamBeg,ichamEnd,kTRUE,zDipole1,zDipole2);
83dbc640 1376 ichamBeg = ichamEnd;
1377 ichamEnd = 0;
1378 }
1379 }
1380
30178c30 1381 if (ok) {
b035a148 1382 trackK->SetTrackDir(1);
83dbc640 1383 trackK->SetBPFlag(kFALSE);
30178c30 1384 ok = trackK->KalmanFilter(ichamBeg,ichamEnd,kFALSE,zDipole1,zDipole2);
83dbc640 1385 }
b035a148 1386 if (!ok) { trackK->SetRecover(-1); continue; } // mark candidate to be removed
1387
1388 // Apply smoother
1389 if (trackK->GetRecover() >= 0) {
1390 ok = trackK->Smooth();
1391 if (!ok) trackK->SetRecover(-1); // mark candidate to be removed
1392 }
83dbc640 1393
1394 // Majority 3 of 4 in first 2 stations
b035a148 1395 if (!ok) continue;
83dbc640 1396 chamBits = 0;
f29ba3e1 1397 Double_t chi2max = 0;
83dbc640 1398 for (Int_t i=0; i<trackK->GetNTrackHits(); i++) {
fff097e0 1399 hit = (AliMUONHitForRec*) (*trackK->GetTrackHits())[i];
b035a148 1400 chamBits |= BIT(hit->GetChamberNumber());
f29ba3e1 1401 if (trackK->GetChi2PerPoint(i) > chi2max) chi2max = trackK->GetChi2PerPoint(i);
83dbc640 1402 }
f29ba3e1 1403 if (!((chamBits&3)==3 || (chamBits>>2&3)==3) && chi2max > 25) {
b035a148 1404 //trackK->Recover();
1405 trackK->SetRecover(-1); //mark candidate to be removed
1406 continue;
1407 }
1408 if (ok) trackK->SetTrackQuality(0); // compute "track quality"
83dbc640 1409 } // while
1410
1411 for (Int_t i=0; i<fNRecTracks; i++) {
1412 trackK = (AliMUONTrackK*) ((*fRecTracksPtr)[i]);
1413 if (trackK->GetRecover() < 0) fRecTracksPtr->RemoveAt(i);
1414 }
1415
1416 // Compress TClonesArray
1417 fRecTracksPtr->Compress();
1418 fNRecTracks = fRecTracksPtr->GetEntriesFast();
1419 return;
1420}
1421
1422//__________________________________________________________________________
29f1b13a 1423Bool_t AliMUONTrackReconstructor::CheckCandidateK(Int_t icand, Int_t nSeeds) const
83dbc640 1424{
1425 // Discards track candidate if it will produce the double track (having
1426 // the same seed segment hits as hits of a good track found before)
1427 AliMUONTrackK *track1, *track2;
1428 AliMUONHitForRec *hit1, *hit2, *hit;
1429
1430 track1 = (AliMUONTrackK*) ((*fRecTracksPtr)[icand]);
fff097e0 1431 hit1 = (AliMUONHitForRec*) (*track1->GetTrackHits())[0]; // 1'st hit
1432 hit2 = (AliMUONHitForRec*) (*track1->GetTrackHits())[1]; // 2'nd hit
83dbc640 1433
1434 for (Int_t i=0; i<icand; i++) {
1435 track2 = (AliMUONTrackK*) ((*fRecTracksPtr)[i]);
1436 //if (track2->GetRecover() < 0) continue;
1437 if (track2->GetRecover() < 0 && icand >= nSeeds) continue;
1438
1439 if (track1->GetStartSegment() == track2->GetStartSegment()) {
1440 return kFALSE;
1441 } else {
1442 Int_t nSame = 0;
1443 for (Int_t j=0; j<track2->GetNTrackHits(); j++) {
fff097e0 1444 hit = (AliMUONHitForRec*) (*track2->GetTrackHits())[j];
83dbc640 1445 if (hit == hit1 || hit == hit2) {
1446 nSame++;
1447 if (nSame == 2) return kFALSE;
1448 }
1449 } // for (Int_t j=0;
1450 }
1451 } // for (Int_t i=0;
1452 return kTRUE;
1453}
1454
1455//__________________________________________________________________________
29f1b13a 1456void AliMUONTrackReconstructor::RemoveDoubleTracksK(void)
83dbc640 1457{
1458 // Removes double tracks (sharing more than half of their hits). Keeps
1459 // the track with higher quality
1460 AliMUONTrackK *track1, *track2, *trackToKill;
1461
1462 // Sort tracks according to their quality
1463 fRecTracksPtr->Sort();
1464
1465 // Loop over first track of the pair
1466 track1 = (AliMUONTrackK*) fRecTracksPtr->First();
b035a148 1467 Int_t debug = track1->DebugLevel();
83dbc640 1468 while (track1) {
1469 // Loop over second track of the pair
1470 track2 = (AliMUONTrackK*) fRecTracksPtr->After(track1);
1471 while (track2) {
1472 // Check whether or not to keep track2
1473 if (!track2->KeepTrack(track1)) {
b035a148 1474 if (debug >= 0) cout << " Killed track: " << 1/(*track2->GetTrackParameters())(4,0) <<
83dbc640 1475 " " << track2->GetTrackQuality() << endl;
1476 trackToKill = track2;
1477 track2 = (AliMUONTrackK*) fRecTracksPtr->After(track2);
1478 trackToKill->Kill();
1479 fRecTracksPtr->Compress();
1480 } else track2 = (AliMUONTrackK*) fRecTracksPtr->After(track2);
1481 } // track2
1482 track1 = (AliMUONTrackK*) fRecTracksPtr->After(track1);
1483 } // track1
1484
1485 fNRecTracks = fRecTracksPtr->GetEntriesFast();
b035a148 1486 if (debug >= 0) cout << " Number of Kalman tracks: " << fNRecTracks << endl;
83dbc640 1487}
1488
1489//__________________________________________________________________________
29f1b13a 1490void AliMUONTrackReconstructor::GoToVertex(void)
83dbc640 1491{
1492 // Propagates track to the vertex thru absorber
1493 // (using Branson correction for now)
1494
1495 Double_t zVertex;
1496 zVertex = 0;
1497 for (Int_t i=0; i<fNRecTracks; i++) {
1498 //((AliMUONTrackK*)(*fRecTracksPtr)[i])->Branson();
83dbc640 1499 ((AliMUONTrackK*)(*fRecTracksPtr)[i])->SetTrackQuality(1); // compute Chi2
b035a148 1500 //((AliMUONTrackK*)(*fRecTracksPtr)[i])->GoToZ(zVertex); // w/out absorber
1501 ((AliMUONTrackK*)(*fRecTracksPtr)[i])->GoToVertex(1); // with absorber
83dbc640 1502 }
1503}
b035a148 1504
1505//__________________________________________________________________________
29f1b13a 1506void AliMUONTrackReconstructor::SetTrackMethod(Int_t iTrackMethod)
b035a148 1507{
1508 // Set track method and recreate track container if necessary
1509
cc87ebcd 1510 fTrackMethod = TMath::Min (iTrackMethod, 3);
1511 fTrackMethod = TMath::Max (fTrackMethod, 1);
1512 if (fTrackMethod != 1) {
b035a148 1513 if (fRecTracksPtr) delete fRecTracksPtr;
1514 fRecTracksPtr = new TClonesArray("AliMUONTrackK", 10);
cc87ebcd 1515 if (fTrackMethod == 2) cout << " *** Tracking with the Kalman filter *** " << endl;
1516 else cout << " *** Combined cluster / track finder ***" << endl;
fff097e0 1517 } else cout << " *** Original tracking *** " << endl;
b035a148 1518
1519}