]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTrackReconstructor.cxx
Removing quick code hack and unnecessary methods. Now have a much cleaner implementat...
[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
3d1463c8 18//-----------------------------------------------------------------------------
7945aae7 19/// \class AliMUONTrackReconstructor
20/// MUON track reconstructor using the original method
21///
22/// This class contains as data:
23/// - the parameters for the track reconstruction
24///
25/// It contains as methods, among others:
26/// - MakeTracks to build the tracks
3d1463c8 27//-----------------------------------------------------------------------------
a9e2aefa 28
29f1b13a 29#include "AliMUONTrackReconstructor.h"
7ec3b9cf 30
29fc2c86 31#include "AliMUONConstants.h"
2457f726 32#include "AliMUONHitForRec.h"
a9e2aefa 33#include "AliMUONTrack.h"
37827b29 34#include "AliMUONTrackParam.h"
35#include "AliMUONTrackExtrap.h"
b709ac13 36
8c343c7c 37#include "AliLog.h"
af743f54 38
208f139e 39#include <TMinuit.h>
af743f54 40#include <Riostream.h>
ea94c18b 41#include <TMath.h>
af743f54 42#include <TMatrixD.h>
a9e2aefa 43
de2cd600 44// Functions to be minimized with Minuit
ea94c18b 45void TrackChi2(Int_t &nParam, Double_t *gradient, Double_t &chi2, Double_t *param, Int_t flag);
de2cd600 46
7945aae7 47/// \cond CLASSIMP
29f1b13a 48ClassImp(AliMUONTrackReconstructor) // Class implementation in ROOT context
7945aae7 49/// \endcond
a9e2aefa 50
ea94c18b 51//************* Parameters for reconstruction
52const Double_t AliMUONTrackReconstructor::fgkBendingVertexDispersion = 10.;
53const Double_t AliMUONTrackReconstructor::fgkNonBendingVertexDispersion = 10.;
54
2457f726 55
019df241 56 //__________________________________________________________________________
7ec3b9cf 57AliMUONTrackReconstructor::AliMUONTrackReconstructor()
58 : AliMUONVTrackReconstructor()
a9e2aefa 59{
2457f726 60 /// Constructor for class AliMUONTrackReconstructor
ea94c18b 61 AliInfo("*** Original tracking ***");
a9e2aefa 62}
9cbdf048 63
019df241 64 //__________________________________________________________________________
ea94c18b 65AliMUONTrackReconstructor::~AliMUONTrackReconstructor()
a9e2aefa 66{
ea94c18b 67/// Destructor
68}
276c44b7 69
de2cd600 70 //__________________________________________________________________________
ea94c18b 71void AliMUONTrackReconstructor::MakeTrackCandidates()
de2cd600 72{
019df241 73 /// To make track candidates (assuming linear propagation if the flag fgkMakeTrackCandidatesFast is set to kTRUE):
208f139e 74 /// Start with segments station(1..) 4 or 5 then follow track in station 5 or 4.
75 /// Good candidates are made of at least three hitForRec's.
76 /// Keep only best candidates or all of them according to the flag fgkTrackAllTracks.
b709ac13 77
208f139e 78 TClonesArray *segments;
208f139e 79 AliMUONTrack *track;
208f139e 80 Int_t iCandidate = 0;
019df241 81 Bool_t hitFound;
208f139e 82
de2cd600 83 AliDebug(1,"Enter MakeTrackCandidates");
de2cd600 84
208f139e 85 // Loop over stations(1..) 5 and 4 and make track candidates
ea94c18b 86 for (Int_t istat=4; istat>=3; istat--) {
87
208f139e 88 // Make segments in the station
89 segments = MakeSegmentsInStation(istat);
ea94c18b 90
208f139e 91 // Loop over segments
7ec3b9cf 92 for (Int_t iseg=0; iseg<segments->GetEntriesFast(); iseg++)
93 {
208f139e 94 AliDebug(1,Form("Making primary candidate(1..) %d",++iCandidate));
ea94c18b 95
208f139e 96 // Transform segments to tracks and put them at the end of fRecTracksPtr
ea94c18b 97 track = new ((*fRecTracksPtr)[fRecTracksPtr->GetLast()+1]) AliMUONTrack((AliMUONObjectPair*)((*segments)[iseg]));
a9e2aefa 98 fNRecTracks++;
ea94c18b 99
208f139e 100 // Printout for debuging
7ec3b9cf 101 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 2) || (AliLog::GetGlobalDebugLevel() >= 2))
102 {
208f139e 103 cout<<endl<<"Track parameter covariances at first hit with multiple Coulomb scattering effects:"<<endl;
ea94c18b 104 ((AliMUONTrackParam*) track->GetTrackParamAtHit()->First())->GetCovariances().Print();
208f139e 105 }
ea94c18b 106
208f139e 107 // Look for compatible hitForRec(s) in the other station
019df241 108 if (fgkMakeTrackCandidatesFast) hitFound = FollowLinearTrackInStation(*track,7-istat);
109 else hitFound = FollowTrackInStation(*track,7-istat);
110
111 // Remove track if no hit found
112 if (!hitFound) {
ea94c18b 113 fRecTracksPtr->Remove(track);
114 fNRecTracks--;
115 }
116
a9e2aefa 117 }
ea94c18b 118
208f139e 119 // delete the array of segments
120 delete segments;
121 }
ea94c18b 122
208f139e 123 fRecTracksPtr->Compress(); // this is essential before checking tracks
124
125 // Keep all different tracks or only the best ones as required
126 if (fgkTrackAllTracks) RemoveIdenticalTracks();
127 else RemoveDoubleTracks();
128
129 AliDebug(1,Form("Number of good candidates = %d",fNRecTracks));
130
a9e2aefa 131}
132
133 //__________________________________________________________________________
ea94c18b 134void AliMUONTrackReconstructor::FollowTracks()
a9e2aefa 135{
2457f726 136 /// Follow tracks in stations(1..) 3, 2 and 1
208f139e 137 AliDebug(1,"Enter FollowTracks");
138
04b5ea16 139 AliMUONTrack *track, *nextTrack;
b709ac13 140 AliMUONTrackParam *trackParam, *nextTrackParam;
af743f54 141 Int_t currentNRecTracks;
ea94c18b 142 Bool_t hitFound;
208f139e 143
144 for (Int_t station = 2; station >= 0; station--) {
ea94c18b 145
208f139e 146 // Save the actual number of reconstructed track in case of
147 // tracks are added or suppressed during the tracking procedure
148 // !! Do not compress fRecTracksPtr until the end of the loop over tracks !!
af743f54 149 currentNRecTracks = fNRecTracks;
ea94c18b 150
af743f54 151 for (Int_t iRecTrack = 0; iRecTrack <currentNRecTracks; iRecTrack++) {
208f139e 152 AliDebug(1,Form("FollowTracks: track candidate(1..) %d", iRecTrack+1));
ea94c18b 153
208f139e 154 track = (AliMUONTrack*) fRecTracksPtr->UncheckedAt(iRecTrack);
ea94c18b 155
208f139e 156 // Fit the track:
157 // Do not take into account the multiple scattering to speed up the fit
158 // Calculate the track parameter covariance matrix
159 // If "station" is station(1..) 3 then use the vertex to better constrain the fit
160 if (station==2) {
ea94c18b 161 SetVertexForFit(*track);
208f139e 162 track->SetFitWithVertex(kTRUE);
163 } else track->SetFitWithVertex(kFALSE);
ea94c18b 164 Fit(*track, kFALSE, kTRUE);
165
208f139e 166 // Remove the track if the normalized chi2 is too high
ea94c18b 167 if (track->GetNormalizedChi2() > fgkSigmaToCutForTracking * fgkSigmaToCutForTracking) {
208f139e 168 fRecTracksPtr->Remove(track);
169 fNRecTracks--;
170 continue;
171 }
ea94c18b 172
b709ac13 173 // save parameters from fit into smoothed parameters to complete track afterward
174 if (fgkComplementTracks) {
175
176 if (station==2) { // save track parameters on stations 4 and 5
177
178 // extrapolate track parameters and covariances at each cluster
179 track->UpdateCovTrackParamAtHit();
180
181 // save them
182 trackParam = (AliMUONTrackParam*) track->GetTrackParamAtHit()->First();
183 while (trackParam) {
184 trackParam->SetSmoothParameters(trackParam->GetParameters());
185 trackParam->SetSmoothCovariances(trackParam->GetCovariances());
186 trackParam = (AliMUONTrackParam*) track->GetTrackParamAtHit()->After(trackParam);
187 }
188
189 } else { // or save track parameters on last station only
190
191 // save parameters from fit
192 trackParam = (AliMUONTrackParam*) track->GetTrackParamAtHit()->First();
193 trackParam->SetSmoothParameters(trackParam->GetParameters());
194 trackParam->SetSmoothCovariances(trackParam->GetCovariances());
195
196 // save parameters extrapolated to the second chamber of the same station if it has been hit
197 nextTrackParam = (AliMUONTrackParam*) track->GetTrackParamAtHit()->After(trackParam);
198 if (nextTrackParam->GetHitForRecPtr()->GetChamberNumber() < 2*(station+2)) {
199
200 // reset parameters and covariances
201 nextTrackParam->SetParameters(trackParam->GetParameters());
202 nextTrackParam->SetZ(trackParam->GetZ());
203 nextTrackParam->SetCovariances(trackParam->GetCovariances());
204
205 // extrapolate them to the z of the corresponding cluster
206 AliMUONTrackExtrap::ExtrapToZCov(nextTrackParam, nextTrackParam->GetHitForRecPtr()->GetZ());
207
208 // save them
209 nextTrackParam->SetSmoothParameters(nextTrackParam->GetParameters());
210 nextTrackParam->SetSmoothCovariances(nextTrackParam->GetCovariances());
211
212 }
213
214 }
215
216 }
217
208f139e 218 // Printout for debuging
219 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 2) || (AliLog::GetGlobalDebugLevel() >= 2)) {
220 cout<<endl<<"Track parameter covariances at first hit with multiple Coulomb scattering effects:"<<endl;
ea94c18b 221 ((AliMUONTrackParam*) track->GetTrackParamAtHit()->First())->GetCovariances().Print();
208f139e 222 }
ea94c18b 223
208f139e 224 // Look for compatible hitForRec in station(0..) "station"
ea94c18b 225 hitFound = FollowTrackInStation(*track,station);
226
227 // Try to recover track if required
228 if (!hitFound && fgkRecoverTracks) hitFound = RecoverTrack(*track,station);
229
230 // remove track if no hit found
231 if (!hitFound) {
232 fRecTracksPtr->Remove(track);
233 fNRecTracks--;
234 }
235
208f139e 236 }
ea94c18b 237
208f139e 238 // Compress fRecTracksPtr for the next step
239 fRecTracksPtr->Compress();
ea94c18b 240
208f139e 241 // Keep only the best tracks if required
242 if (!fgkTrackAllTracks) RemoveDoubleTracks();
ea94c18b 243
208f139e 244 }
245
246 // Last fit of track candidates with all station
247 // Take into account the multiple scattering and remove bad tracks
248 Int_t trackIndex = -1;
04b5ea16 249 track = (AliMUONTrack*) fRecTracksPtr->First();
04b5ea16 250 while (track) {
ea94c18b 251
04b5ea16 252 trackIndex++;
253 nextTrack = (AliMUONTrack*) fRecTracksPtr->After(track); // prepare next track
ea94c18b 254
208f139e 255 track->SetFitWithVertex(kFALSE); // just to be sure
ea94c18b 256 Fit(*track, kTRUE, kTRUE);
257
208f139e 258 // Printout for debuging
259 if (AliLog::GetGlobalDebugLevel() >= 3) {
260 cout << "FollowTracks: track candidate(0..) " << trackIndex << " after final fit" << endl;
a9e2aefa 261 track->RecursiveDump();
208f139e 262 }
ea94c18b 263
208f139e 264 // Remove the track if the normalized chi2 is too high
ea94c18b 265 if (track->GetNormalizedChi2() > fgkSigmaToCutForTracking * fgkSigmaToCutForTracking) {
208f139e 266 fRecTracksPtr->Remove(track);
267 fNRecTracks--;
a9e2aefa 268 }
ea94c18b 269
b709ac13 270 // save parameters from fit into smoothed parameters to complete track afterward
271 if (fgkComplementTracks) {
272
273 // save parameters from fit
274 trackParam = (AliMUONTrackParam*) track->GetTrackParamAtHit()->First();
275 trackParam->SetSmoothParameters(trackParam->GetParameters());
276 trackParam->SetSmoothCovariances(trackParam->GetCovariances());
277
278 // save parameters extrapolated to the second chamber of the same station if it has been hit
279 nextTrackParam = (AliMUONTrackParam*) track->GetTrackParamAtHit()->After(trackParam);
280 if (nextTrackParam->GetHitForRecPtr()->GetChamberNumber() < 2) {
281
282 // reset parameters and covariances
283 nextTrackParam->SetParameters(trackParam->GetParameters());
284 nextTrackParam->SetZ(trackParam->GetZ());
285 nextTrackParam->SetCovariances(trackParam->GetCovariances());
286
287 // extrapolate them to the z of the corresponding cluster
288 AliMUONTrackExtrap::ExtrapToZCov(nextTrackParam, nextTrackParam->GetHitForRecPtr()->GetZ());
289
290 // save them
291 nextTrackParam->SetSmoothParameters(nextTrackParam->GetParameters());
292 nextTrackParam->SetSmoothCovariances(nextTrackParam->GetCovariances());
293
294 }
295
296 }
297
208f139e 298 track = nextTrack;
ea94c18b 299
208f139e 300 }
ea94c18b 301
208f139e 302 fRecTracksPtr->Compress();
303
304}
1a38e749 305
208f139e 306 //__________________________________________________________________________
ea94c18b 307Bool_t AliMUONTrackReconstructor::FollowTrackInStation(AliMUONTrack &trackCandidate, Int_t nextStation)
208f139e 308{
309 /// Follow trackCandidate in station(0..) nextStation and search for compatible HitForRec(s)
310 /// Keep all possibilities or only the best one(s) according to the flag fgkTrackAllTracks:
311 /// kTRUE: duplicate "trackCandidate" if there are several possibilities and add the new tracks at the end of
312 /// fRecTracksPtr to avoid conficts with other track candidates at this current stage of the tracking procedure.
313 /// Remove the obsolete "trackCandidate" at the end.
314 /// kFALSE: add only the best hit(s) to the "trackCandidate". Try to add a couple of hits in priority.
315 AliDebug(1,Form("Enter FollowTrackInStation(1..) %d", nextStation+1));
316
ea94c18b 317 // Order the chamber according to the propagation direction (tracking starts with chamber 2):
318 // - nextStation == station(1...) 5 => forward propagation
319 // - nextStation < station(1...) 5 => backward propagation
320 Int_t ch1, ch2;
321 if (nextStation==4) {
322 ch1 = 2*nextStation+1;
323 ch2 = 2*nextStation;
324 } else {
325 ch1 = 2*nextStation;
326 ch2 = 2*nextStation+1;
327 }
328
208f139e 329 Double_t chi2WithOneHitForRec = 1.e10;
330 Double_t chi2WithTwoHitForRec = 1.e10;
ea94c18b 331 Double_t maxChi2WithOneHitForRec = 2. * fgkSigmaToCutForTracking * fgkSigmaToCutForTracking; // 2 because 2 quantities in chi2
332 Double_t maxChi2WithTwoHitForRec = 4. * fgkSigmaToCutForTracking * fgkSigmaToCutForTracking; // 4 because 4 quantities in chi2
208f139e 333 Double_t bestChi2WithOneHitForRec = maxChi2WithOneHitForRec;
334 Double_t bestChi2WithTwoHitForRec = maxChi2WithTwoHitForRec;
ea94c18b 335 Bool_t foundOneHit = kFALSE;
336 Bool_t foundTwoHits = kFALSE;
208f139e 337 AliMUONTrack *newTrack = 0x0;
338 AliMUONHitForRec *hitForRecCh1, *hitForRecCh2;
019df241 339 AliMUONTrackParam extrapTrackParam;
ea94c18b 340 AliMUONTrackParam extrapTrackParamAtHit1;
341 AliMUONTrackParam extrapTrackParamAtHit2;
342 AliMUONTrackParam bestTrackParamAtHit1;
343 AliMUONTrackParam bestTrackParamAtHit2;
847cbaef 344 Bool_t *hitForRecCh1Used = new Bool_t[fNHitsForRecPerChamber[ch1]];
345 for (Int_t hit1 = 0; hit1 < fNHitsForRecPerChamber[ch1]; hit1++) hitForRecCh1Used[hit1] = kFALSE;
ea94c18b 346
019df241 347 // Get track parameters
348 AliMUONTrackParam extrapTrackParamAtCh(*(AliMUONTrackParam*)trackCandidate.GetTrackParamAtHit()->First());
ea94c18b 349
350 // Add MCS effect
019df241 351 AliMUONTrackExtrap::AddMCSEffect(&extrapTrackParamAtCh,AliMUONConstants::ChamberThicknessInX0(),1.);
ea94c18b 352
353 // Add MCS in the missing chamber if any (only 1 chamber can be missing according to tracking criteria)
019df241 354 if (ch1 < ch2 && extrapTrackParamAtCh.GetHitForRecPtr()->GetChamberNumber() > ch2 + 1) {
ea94c18b 355 // extrapolation to the missing chamber
019df241 356 AliMUONTrackExtrap::ExtrapToZCov(&extrapTrackParamAtCh, AliMUONConstants::DefaultChamberZ(ch2 + 1));
ea94c18b 357 // add MCS effect
019df241 358 AliMUONTrackExtrap::AddMCSEffect(&extrapTrackParamAtCh,AliMUONConstants::ChamberThicknessInX0(),1.);
ea94c18b 359 }
360
361 //Extrapolate trackCandidate to chamber "ch2"
019df241 362 AliMUONTrackExtrap::ExtrapToZCov(&extrapTrackParamAtCh, AliMUONConstants::DefaultChamberZ(ch2));
ea94c18b 363
208f139e 364 // Printout for debuging
365 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 2) || (AliLog::GetGlobalDebugLevel() >= 2)) {
019df241 366 cout<<endl<<"Track parameter covariances at first hit extrapolated to z = "<<AliMUONConstants::DefaultChamberZ(ch2)<<":"<<endl;
367 extrapTrackParamAtCh.GetCovariances().Print();
208f139e 368 }
ea94c18b 369
208f139e 370 // Printout for debuging
371 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
372 cout << "FollowTrackInStation: look for hits in chamber(1..): " << ch2+1 << endl;
373 }
ea94c18b 374
375 // look for candidates in chamber 2
208f139e 376 for (Int_t hit2 = 0; hit2 < fNHitsForRecPerChamber[ch2]; hit2++) {
ea94c18b 377
208f139e 378 hitForRecCh2 = (AliMUONHitForRec*) fHitsForRecPtr->UncheckedAt(fIndexOfFirstHitForRecPerChamber[ch2]+hit2);
ea94c18b 379
019df241 380 // try to add the current hit fast
381 if (!TryOneHitForRecFast(extrapTrackParamAtCh, hitForRecCh2)) continue;
382
383 // try to add the current hit accuratly
384 chi2WithOneHitForRec = TryOneHitForRec(extrapTrackParamAtCh, hitForRecCh2, extrapTrackParamAtHit2);
ea94c18b 385
208f139e 386 // if good chi2 then try to attach a hitForRec in the other chamber too
387 if (chi2WithOneHitForRec < maxChi2WithOneHitForRec) {
ea94c18b 388 Bool_t foundSecondHit = kFALSE;
389
208f139e 390 // Printout for debuging
391 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
ea94c18b 392 cout << "FollowTrackInStation: found one hit in chamber(1..): " << ch2+1
393 << " (Chi2 = " << chi2WithOneHitForRec << ")" << endl;
394 cout << " look for second hits in chamber(1..): " << ch1+1 << " ..." << endl;
a9e2aefa 395 }
ea94c18b 396
397 // add MCS effect for next step
398 AliMUONTrackExtrap::AddMCSEffect(&extrapTrackParamAtHit2,AliMUONConstants::ChamberThicknessInX0(),1.);
399
019df241 400 // copy new track parameters for next step
401 extrapTrackParam = extrapTrackParamAtHit2;
402
403 //Extrapolate track parameters to chamber "ch1"
404 AliMUONTrackExtrap::ExtrapToZ(&extrapTrackParam, AliMUONConstants::DefaultChamberZ(ch1));
405
208f139e 406 for (Int_t hit1 = 0; hit1 < fNHitsForRecPerChamber[ch1]; hit1++) {
ea94c18b 407
408 hitForRecCh1 = (AliMUONHitForRec*) fHitsForRecPtr->UncheckedAt(fIndexOfFirstHitForRecPerChamber[ch1]+hit1);
409
019df241 410 // try to add the current hit fast
411 if (!TryOneHitForRecFast(extrapTrackParam, hitForRecCh1)) continue;
412
413 // try to add the current hit accuratly
ea94c18b 414 chi2WithTwoHitForRec = TryTwoHitForRec(extrapTrackParamAtHit2, hitForRecCh1, extrapTrackParamAtHit1);
415
416 // if good chi2 then create a new track by adding the 2 hitForRec to the "trackCandidate"
208f139e 417 if (chi2WithTwoHitForRec < maxChi2WithTwoHitForRec) {
418 foundSecondHit = kTRUE;
ea94c18b 419 foundTwoHits = kTRUE;
420
421 // Printout for debuging
422 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
423 cout << "FollowTrackInStation: found second hit in chamber(1..): " << ch1+1
424 << " (Global Chi2 = " << chi2WithTwoHitForRec << ")" << endl;
425 }
426
427 if (fgkTrackAllTracks) {
208f139e 428 // copy trackCandidate into a new track put at the end of fRecTracksPtr and add the new hitForRec's
ea94c18b 429 newTrack = new ((*fRecTracksPtr)[fRecTracksPtr->GetLast()+1]) AliMUONTrack(trackCandidate);
430 UpdateTrack(*newTrack,extrapTrackParamAtHit1,extrapTrackParamAtHit2);
208f139e 431 fNRecTracks++;
ea94c18b 432
847cbaef 433 // Tag hitForRecCh1 as used
434 hitForRecCh1Used[hit1] = kTRUE;
ea94c18b 435
208f139e 436 // Printout for debuging
437 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
ea94c18b 438 cout << "FollowTrackInStation: added two hits in station(1..): " << nextStation+1 << endl;
208f139e 439 if (AliLog::GetGlobalDebugLevel() >= 3) newTrack->RecursiveDump();
a9e2aefa 440 }
ea94c18b 441
208f139e 442 } else if (chi2WithTwoHitForRec < bestChi2WithTwoHitForRec) {
443 // keep track of the best couple of hits
444 bestChi2WithTwoHitForRec = chi2WithTwoHitForRec;
ea94c18b 445 bestTrackParamAtHit1 = extrapTrackParamAtHit1;
446 bestTrackParamAtHit2 = extrapTrackParamAtHit2;
208f139e 447 }
ea94c18b 448
a9e2aefa 449 }
ea94c18b 450
d0bfce8d 451 }
ea94c18b 452
208f139e 453 // if no hitForRecCh1 found then consider to add hitForRecCh2 only
454 if (!foundSecondHit) {
ea94c18b 455 foundOneHit = kTRUE;
456
457 if (fgkTrackAllTracks) {
208f139e 458 // copy trackCandidate into a new track put at the end of fRecTracksPtr and add the new hitForRec's
ea94c18b 459 newTrack = new ((*fRecTracksPtr)[fRecTracksPtr->GetLast()+1]) AliMUONTrack(trackCandidate);
460 UpdateTrack(*newTrack,extrapTrackParamAtHit2);
208f139e 461 fNRecTracks++;
ea94c18b 462
208f139e 463 // Printout for debuging
464 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
ea94c18b 465 cout << "FollowTrackInStation: added one hit in chamber(1..): " << ch2+1 << endl;
208f139e 466 if (AliLog::GetGlobalDebugLevel() >= 3) newTrack->RecursiveDump();
467 }
ea94c18b 468
469 } else if (!foundTwoHits && chi2WithOneHitForRec < bestChi2WithOneHitForRec) {
019df241 470 // keep track of the best single hitForRec except if a couple of hits has already been found
208f139e 471 bestChi2WithOneHitForRec = chi2WithOneHitForRec;
ea94c18b 472 bestTrackParamAtHit1 = extrapTrackParamAtHit2;
208f139e 473 }
ea94c18b 474
d0bfce8d 475 }
ea94c18b 476
208f139e 477 }
ea94c18b 478
208f139e 479 }
ea94c18b 480
208f139e 481 // look for candidates in chamber 1 not already attached to a track
482 // if we want to keep all possible tracks or if no good couple of hitForRec has been found
ea94c18b 483 if (fgkTrackAllTracks || !foundTwoHits) {
484
485 // Printout for debuging
208f139e 486 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
487 cout << "FollowTrackInStation: look for single hits in chamber(1..): " << ch1+1 << endl;
488 }
ea94c18b 489
490 // add MCS effect for next step
019df241 491 AliMUONTrackExtrap::AddMCSEffect(&extrapTrackParamAtCh,AliMUONConstants::ChamberThicknessInX0(),1.);
492
493 //Extrapolate trackCandidate to chamber "ch1"
494 AliMUONTrackExtrap::ExtrapToZCov(&extrapTrackParamAtCh, AliMUONConstants::DefaultChamberZ(ch1));
495
208f139e 496 for (Int_t hit1 = 0; hit1 < fNHitsForRecPerChamber[ch1]; hit1++) {
ea94c18b 497
208f139e 498 hitForRecCh1 = (AliMUONHitForRec*) fHitsForRecPtr->UncheckedAt(fIndexOfFirstHitForRecPerChamber[ch1]+hit1);
ea94c18b 499
847cbaef 500 if (hitForRecCh1Used[hit1]) continue; // Skip hitForRec already used
ea94c18b 501
019df241 502 // try to add the current hit fast
503 if (!TryOneHitForRecFast(extrapTrackParamAtCh, hitForRecCh1)) continue;
504
505 // try to add the current hit accuratly
506 chi2WithOneHitForRec = TryOneHitForRec(extrapTrackParamAtCh, hitForRecCh1, extrapTrackParamAtHit1);
ea94c18b 507
508 // if good chi2 then consider to add hitForRecCh1
208f139e 509 // We do not try to attach a hitForRec in the other chamber too since it has already been done above
510 if (chi2WithOneHitForRec < maxChi2WithOneHitForRec) {
ea94c18b 511 foundOneHit = kTRUE;
512
513 // Printout for debuging
514 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
515 cout << "FollowTrackInStation: found one hit in chamber(1..): " << ch1+1
516 << " (Chi2 = " << chi2WithOneHitForRec << ")" << endl;
517 }
518
208f139e 519 if (fgkTrackAllTracks) {
520 // copy trackCandidate into a new track put at the end of fRecTracksPtr and add the new hitForRec's
ea94c18b 521 newTrack = new ((*fRecTracksPtr)[fRecTracksPtr->GetLast()+1]) AliMUONTrack(trackCandidate);
522 UpdateTrack(*newTrack,extrapTrackParamAtHit1);
208f139e 523 fNRecTracks++;
ea94c18b 524
525 // Printout for debuging
208f139e 526 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
ea94c18b 527 cout << "FollowTrackInStation: added one hit in chamber(1..): " << ch1+1 << endl;
208f139e 528 if (AliLog::GetGlobalDebugLevel() >= 3) newTrack->RecursiveDump();
529 }
ea94c18b 530
531 } else if (chi2WithOneHitForRec < bestChi2WithOneHitForRec) {
019df241 532 // keep track of the best single hitForRec except if a couple of hits has already been found
208f139e 533 bestChi2WithOneHitForRec = chi2WithOneHitForRec;
ea94c18b 534 bestTrackParamAtHit1 = extrapTrackParamAtHit1;
208f139e 535 }
ea94c18b 536
d0bfce8d 537 }
ea94c18b 538
208f139e 539 }
ea94c18b 540
208f139e 541 }
ea94c18b 542
208f139e 543 // fill out the best track if required else clean up the fRecTracksPtr array
ea94c18b 544 if (!fgkTrackAllTracks) {
545 if (foundTwoHits) {
546 UpdateTrack(trackCandidate,bestTrackParamAtHit1,bestTrackParamAtHit2);
547
208f139e 548 // Printout for debuging
549 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
ea94c18b 550 cout << "FollowTrackInStation: added the two best hits in station(1..): " << nextStation+1 << endl;
208f139e 551 if (AliLog::GetGlobalDebugLevel() >= 3) newTrack->RecursiveDump();
a9e2aefa 552 }
ea94c18b 553
554 } else if (foundOneHit) {
555 UpdateTrack(trackCandidate,bestTrackParamAtHit1);
556
208f139e 557 // Printout for debuging
558 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
ea94c18b 559 cout << "FollowTrackInStation: added the best hit in chamber(1..): " << bestTrackParamAtHit1.GetHitForRecPtr()->GetChamberNumber()+1 << endl;
208f139e 560 if (AliLog::GetGlobalDebugLevel() >= 3) newTrack->RecursiveDump();
04b5ea16 561 }
ea94c18b 562
dd230855 563 } else {
564 delete [] hitForRecCh1Used;
565 return kFALSE;
566 }
ea94c18b 567
568 } else if (foundOneHit || foundTwoHits) {
569
570 // remove obsolete track
571 fRecTracksPtr->Remove(&trackCandidate);
572 fNRecTracks--;
573
dd230855 574 } else {
575 delete [] hitForRecCh1Used;
576 return kFALSE;
577 }
ea94c18b 578
dd230855 579 delete [] hitForRecCh1Used;
ea94c18b 580 return kTRUE;
581
582}
583
584 //__________________________________________________________________________
019df241 585Double_t AliMUONTrackReconstructor::TryTwoHitForRec(const AliMUONTrackParam &trackParamAtHit1, AliMUONHitForRec* hitForRec2,
586 AliMUONTrackParam &trackParamAtHit2)
ea94c18b 587{
588/// Test the compatibility between the track and the 2 hitForRec together (using trackParam's covariance matrix):
589/// return the corresponding Chi2 accounting for covariances between the 2 hitForRec
590/// return trackParamAtHit1 & 2
591
ea94c18b 592 // extrapolate track parameters at the z position of the second hit
593 trackParamAtHit2.SetParameters(trackParamAtHit1.GetParameters());
594 trackParamAtHit2.SetZ(trackParamAtHit1.GetZ());
595 AliMUONTrackExtrap::ExtrapToZ(&trackParamAtHit2, hitForRec2->GetZ());
596
597 // set pointer to hit2 into trackParamAtHit2
598 trackParamAtHit2.SetHitForRecPtr(hitForRec2);
599
600 // Set differences between track and the 2 hitForRec in the bending and non bending directions
019df241 601 AliMUONHitForRec* hitForRec1 = trackParamAtHit1.GetHitForRecPtr();
ea94c18b 602 TMatrixD dPos(4,1);
603 dPos(0,0) = hitForRec1->GetNonBendingCoor() - trackParamAtHit1.GetNonBendingCoor();
604 dPos(1,0) = hitForRec1->GetBendingCoor() - trackParamAtHit1.GetBendingCoor();
605 dPos(2,0) = hitForRec2->GetNonBendingCoor() - trackParamAtHit2.GetNonBendingCoor();
606 dPos(3,0) = hitForRec2->GetBendingCoor() - trackParamAtHit2.GetBendingCoor();
607
ea94c18b 608 // Calculate the error matrix from the track parameter covariances at first hitForRec
609 TMatrixD error(4,4);
610 error.Zero();
611 if (trackParamAtHit1.CovariancesExist()) {
612 // Save track parameters at first hitForRec
613 AliMUONTrackParam trackParamAtHit1Save(trackParamAtHit1);
614 TMatrixD paramAtHit1Save(trackParamAtHit1Save.GetParameters());
615 Double_t z1 = trackParamAtHit1Save.GetZ();
616
617 // Save track coordinates at second hitForRec
618 Double_t nonBendingCoor2 = trackParamAtHit2.GetNonBendingCoor();
619 Double_t bendingCoor2 = trackParamAtHit2.GetBendingCoor();
620
621 // add MCS effect at first hitForRec
622 AliMUONTrackExtrap::AddMCSEffect(&trackParamAtHit1Save,AliMUONConstants::ChamberThicknessInX0(),1.);
623
624 // Get the pointer to the parameter covariance matrix at first hitForRec
625 const TMatrixD& kParamCov = trackParamAtHit1Save.GetCovariances();
626
627 // Calculate the jacobian related to the transformation between track parameters
628 // at first hitForRec and track coordinates at the 2 hitForRec z-position
629 TMatrixD jacob(4,5);
630 jacob.Zero();
631 // first derivative at the first hitForRec:
632 jacob(0,0) = 1.; // dx1/dx
633 jacob(1,2) = 1.; // dy1/dy
634 // first derivative at the second hitForRec:
635 TMatrixD dParam(5,1);
636 for (Int_t i=0; i<5; i++) {
637 // Skip jacobian calculation for parameters with no associated error
638 if (kParamCov(i,i) == 0.) continue;
639 // Small variation of parameter i only
640 for (Int_t j=0; j<5; j++) {
641 if (j==i) {
642 dParam(j,0) = TMath::Sqrt(kParamCov(i,i));
643 if (j == 4) dParam(j,0) *= TMath::Sign(1.,-paramAtHit1Save(4,0)); // variation always in the same direction
644 } else dParam(j,0) = 0.;
645 }
646
647 // Set new track parameters at first hitForRec
648 trackParamAtHit1Save.SetParameters(paramAtHit1Save);
649 trackParamAtHit1Save.AddParameters(dParam);
650 trackParamAtHit1Save.SetZ(z1);
651
652 // Extrapolate new track parameters to the z position of the second hitForRec
653 AliMUONTrackExtrap::ExtrapToZ(&trackParamAtHit1Save,hitForRec2->GetZ());
654
655 // Calculate the jacobian
656 jacob(2,i) = (trackParamAtHit1Save.GetNonBendingCoor() - nonBendingCoor2) / dParam(i,0); // dx2/dParami
657 jacob(3,i) = (trackParamAtHit1Save.GetBendingCoor() - bendingCoor2 ) / dParam(i,0); // dy2/dParami
208f139e 658 }
ea94c18b 659
660 // Calculate the error matrix
661 TMatrixD tmp(jacob,TMatrixD::kMult,kParamCov);
662 error = TMatrixD(tmp,TMatrixD::kMultTranspose,jacob);
663 }
664
665 // Add hitForRec resolution to the error matrix
666 error(0,0) += hitForRec1->GetNonBendingReso2();
667 error(1,1) += hitForRec1->GetBendingReso2();
668 error(2,2) += hitForRec2->GetNonBendingReso2();
669 error(3,3) += hitForRec2->GetBendingReso2();
670
671 // invert the error matrix for Chi2 calculation
672 if (error.Determinant() != 0) {
673 error.Invert();
208f139e 674 } else {
ea94c18b 675 AliWarning(" Determinant error=0");
676 return 1.e10;
208f139e 677 }
678
ea94c18b 679 // Compute the Chi2 value
680 TMatrixD tmp2(dPos,TMatrixD::kTransposeMult,error);
681 TMatrixD result(tmp2,TMatrixD::kMult,dPos);
682
683 return result(0,0);
684
685}
686
687 //__________________________________________________________________________
688void AliMUONTrackReconstructor::UpdateTrack(AliMUONTrack &track, AliMUONTrackParam &trackParamAtHit)
689{
690 /// Add 1 hit to the track candidate
691 /// Update chi2 of the track
692
693 // Compute local chi2
694 AliMUONHitForRec* hit = trackParamAtHit.GetHitForRecPtr();
695 Double_t deltaX = trackParamAtHit.GetNonBendingCoor() - hit->GetNonBendingCoor();
696 Double_t deltaY = trackParamAtHit.GetBendingCoor() - hit->GetBendingCoor();
697 Double_t localChi2 = deltaX*deltaX / hit->GetNonBendingReso2() +
698 deltaY*deltaY / hit->GetBendingReso2();
699
5f4ceff2 700 // Flag hit as being not removable
701 trackParamAtHit.SetRemovable(kFALSE);
702 trackParamAtHit.SetLocalChi2(0.); // --> Local chi2 not used
703
ea94c18b 704 // Update the chi2 of the new track
705 track.SetFitFMin(track.GetFitFMin() + localChi2);
706
707 // Update TrackParamAtHit
708 track.AddTrackParamAtHit(&trackParamAtHit,trackParamAtHit.GetHitForRecPtr());
709 track.GetTrackParamAtHit()->Sort();
710
04b5ea16 711}
712
de2cd600 713 //__________________________________________________________________________
ea94c18b 714void AliMUONTrackReconstructor::UpdateTrack(AliMUONTrack &track, AliMUONTrackParam &trackParamAtHit1, AliMUONTrackParam &trackParamAtHit2)
715{
716 /// Add 2 hits to the track candidate
717 /// Update track and local chi2
718
719 // Update local chi2 at first hit
720 AliMUONHitForRec* hit1 = trackParamAtHit1.GetHitForRecPtr();
721 Double_t deltaX = trackParamAtHit1.GetNonBendingCoor() - hit1->GetNonBendingCoor();
722 Double_t deltaY = trackParamAtHit1.GetBendingCoor() - hit1->GetBendingCoor();
723 Double_t localChi2AtHit1 = deltaX*deltaX / hit1->GetNonBendingReso2() +
724 deltaY*deltaY / hit1->GetBendingReso2();
725 trackParamAtHit1.SetLocalChi2(localChi2AtHit1);
726
727 // Flag first hit as being removable
728 trackParamAtHit1.SetRemovable(kTRUE);
729
730 // Update local chi2 at second hit
731 AliMUONHitForRec* hit2 = trackParamAtHit2.GetHitForRecPtr();
732 deltaX = trackParamAtHit2.GetNonBendingCoor() - hit2->GetNonBendingCoor();
733 deltaY = trackParamAtHit2.GetBendingCoor() - hit2->GetBendingCoor();
734 Double_t localChi2AtHit2 = deltaX*deltaX / hit2->GetNonBendingReso2() +
735 deltaY*deltaY / hit2->GetBendingReso2();
736 trackParamAtHit2.SetLocalChi2(localChi2AtHit2);
737
738 // Flag first hit as being removable
739 trackParamAtHit2.SetRemovable(kTRUE);
740
741 // Update the chi2 of the new track
742 track.SetFitFMin(track.GetFitFMin() + localChi2AtHit1 + localChi2AtHit2);
743
744 // Update TrackParamAtHit
745 track.AddTrackParamAtHit(&trackParamAtHit1,trackParamAtHit1.GetHitForRecPtr());
746 track.AddTrackParamAtHit(&trackParamAtHit2,trackParamAtHit2.GetHitForRecPtr());
747 track.GetTrackParamAtHit()->Sort();
748
749}
750
751 //__________________________________________________________________________
752Bool_t AliMUONTrackReconstructor::RecoverTrack(AliMUONTrack &trackCandidate, Int_t nextStation)
753{
754 /// Try to recover the track candidate in the next station
755 /// by removing the worst of the two hits attached in the current station
756 /// Return kTRUE if recovering succeeds
757 AliDebug(1,"Enter RecoverTrack");
758
759 // Do not try to recover track until we have attached hit(s) on station(1..) 3
760 if (nextStation > 1) return kFALSE;
761
762 Int_t worstHitNumber = -1;
763 Double_t localChi2, worstLocalChi2 = 0.;
764
765 // Look for the hit to remove
766 for (Int_t hitNumber = 0; hitNumber < 2; hitNumber++) {
767 AliMUONTrackParam *trackParamAtHit = (AliMUONTrackParam*)trackCandidate.GetTrackParamAtHit()->UncheckedAt(hitNumber);
768
769 // check if current hit is removable
770 if (!trackParamAtHit->IsRemovable()) return kFALSE;
771
772 // Pick up hit with the worst chi2
773 localChi2 = trackParamAtHit->GetLocalChi2();
774 if (localChi2 > worstLocalChi2) {
775 worstLocalChi2 = localChi2;
776 worstHitNumber = hitNumber;
777 }
778 }
779
780 // Reset best hit as being NOT removable
781 ((AliMUONTrackParam*)trackCandidate.GetTrackParamAtHit()->UncheckedAt((worstHitNumber+1)%2))->SetRemovable(kFALSE);
782
783 // Remove the worst hit
784 trackCandidate.RemoveTrackParamAtHit((AliMUONTrackParam*)trackCandidate.GetTrackParamAtHit()->UncheckedAt(worstHitNumber));
785
786 // Re-fit the track:
787 // Do not take into account the multiple scattering to speed up the fit
788 // Calculate the track parameter covariance matrix
789 trackCandidate.SetFitWithVertex(kFALSE); // To be sure
790 Fit(trackCandidate, kFALSE, kTRUE);
791
792 // Look for new hit(s) in next station
793 return FollowTrackInStation(trackCandidate,nextStation);
794
795}
796
797 //__________________________________________________________________________
798void AliMUONTrackReconstructor::SetVertexForFit(AliMUONTrack &trackCandidate)
de2cd600 799{
208f139e 800 /// Add the vertex as a measured hit to constrain the fit of the "trackCandidate"
801 /// Compute the vertex resolution from natural vertex dispersion and
802 /// multiple scattering effets according to trackCandidate path in absorber
803 /// It is necessary to account for multiple scattering effects here instead of during the fit of
804 /// the "trackCandidate" to do not influence the result by changing track resolution at vertex
805 AliDebug(1,"Enter SetVertexForFit");
de2cd600 806
ea94c18b 807 Double_t nonBendingReso2 = fgkNonBendingVertexDispersion * fgkNonBendingVertexDispersion;
808 Double_t bendingReso2 = fgkBendingVertexDispersion * fgkBendingVertexDispersion;
208f139e 809 // add multiple scattering effets
ea94c18b 810 AliMUONTrackParam paramAtVertex(*((AliMUONTrackParam*)(trackCandidate.GetTrackParamAtHit()->First())));
208f139e 811 paramAtVertex.DeleteCovariances(); // to be sure to account only for multiple scattering
812 AliMUONTrackExtrap::ExtrapToVertexUncorrected(&paramAtVertex,0.);
ea94c18b 813 const TMatrixD& kParamCov = paramAtVertex.GetCovariances();
814 nonBendingReso2 += kParamCov(0,0);
815 bendingReso2 += kParamCov(2,2);
208f139e 816 // Set the vertex
817 AliMUONHitForRec vertex; // Coordinates set to (0.,0.,0.) by default
818 vertex.SetNonBendingReso2(nonBendingReso2);
819 vertex.SetBendingReso2(bendingReso2);
ea94c18b 820 trackCandidate.SetVertex(&vertex);
208f139e 821}
822
823 //__________________________________________________________________________
ea94c18b 824void AliMUONTrackReconstructor::Fit(AliMUONTrack &track, Bool_t includeMCS, Bool_t calcCov)
208f139e 825{
ea94c18b 826 /// Fit the track "track" w/wo multiple Coulomb scattering according to "includeMCS".
de2cd600 827
208f139e 828 Double_t benC, errorParam, invBenP, nonBenC, x, y;
de2cd600 829 AliMUONTrackParam *trackParam;
208f139e 830 Double_t arg[1], fedm, errdef, fitFMin;
831 Int_t npari, nparx;
832 Int_t status, covStatus;
833
8cde4af5 834 // Instantiate gMinuit if not already done
835 if (!gMinuit) gMinuit = new TMinuit(6);
208f139e 836 // Clear MINUIT parameters
837 gMinuit->mncler();
838 // Give the fitted track to MINUIT
ea94c18b 839 gMinuit->SetObjectFit(&track);
208f139e 840 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 2) || (AliLog::GetGlobalDebugLevel() >= 2)) {
841 // Define print level
842 arg[0] = 1;
843 gMinuit->mnexcm("SET PRI", arg, 1, status);
844 // Print covariance matrix
845 gMinuit->mnexcm("SHO COV", arg, 0, status);
846 } else {
847 arg[0] = -1;
848 gMinuit->mnexcm("SET PRI", arg, 1, status);
849 }
de2cd600 850 // No warnings
208f139e 851 gMinuit->mnexcm("SET NOW", arg, 0, status);
852 // Define strategy
853 //arg[0] = 2;
854 //gMinuit->mnexcm("SET STR", arg, 1, status);
855
ea94c18b 856 // set flag w/wo multiple scattering according to "includeMCS"
857 track.SetFitWithMCS(includeMCS);
858 if (includeMCS) {
859 // compute hit weights only once
860 if (!track.ComputeHitWeights()) {
861 AliWarning("cannot take into account the multiple scattering effects");
862 track.SetFitWithMCS(kFALSE);
863 }
864 }
865
866 // Set fitting function
867 gMinuit->SetFCN(TrackChi2);
208f139e 868
869 // Set fitted parameters (!! The order is very important for the covariance matrix !!)
ea94c18b 870 trackParam = (AliMUONTrackParam*) (track.GetTrackParamAtHit()->First());
de2cd600 871 // could be tried with no limits for the search (min=max=0) ????
208f139e 872 // mandatory limits in non Bending to avoid NaN values of parameters
873 gMinuit->mnparm(0, "X", trackParam->GetNonBendingCoor(), 0.03, -500.0, 500.0, status);
874 gMinuit->mnparm(1, "NonBenS", trackParam->GetNonBendingSlope(), 0.001, -0.5, 0.5, status);
875 // mandatory limits in Bending to avoid NaN values of parameters
876 gMinuit->mnparm(2, "Y", trackParam->GetBendingCoor(), 0.10, -500.0, 500.0, status);
877 gMinuit->mnparm(3, "BenS", trackParam->GetBendingSlope(), 0.001, -0.5, 0.5, status);
878 gMinuit->mnparm(4, "InvBenP", trackParam->GetInverseBendingMomentum(), 0.003, -0.4, 0.4, status);
879
de2cd600 880 // minimization
208f139e 881 gMinuit->mnexcm("MIGRAD", arg, 0, status);
882
883 // Calculate the covariance matrix more accurately if required
884 if (calcCov) gMinuit->mnexcm("HESSE", arg, 0, status);
8cde4af5 885
de2cd600 886 // get results into "invBenP", "benC", "nonBenC" ("x", "y")
208f139e 887 gMinuit->GetParameter(0, x, errorParam);
888 trackParam->SetNonBendingCoor(x);
889 gMinuit->GetParameter(1, nonBenC, errorParam);
de2cd600 890 trackParam->SetNonBendingSlope(nonBenC);
208f139e 891 gMinuit->GetParameter(2, y, errorParam);
892 trackParam->SetBendingCoor(y);
893 gMinuit->GetParameter(3, benC, errorParam);
894 trackParam->SetBendingSlope(benC);
895 gMinuit->GetParameter(4, invBenP, errorParam);
896 trackParam->SetInverseBendingMomentum(invBenP);
897
de2cd600 898 // global result of the fit
208f139e 899 gMinuit->mnstat(fitFMin, fedm, errdef, npari, nparx, covStatus);
ea94c18b 900 track.SetFitFMin(fitFMin);
208f139e 901
902 // Get the covariance matrix if required
903 if (calcCov) {
904 // Covariance matrix according to HESSE status
905 // If problem then keep only the diagonal terms (variances)
906 Double_t matrix[5][5];
907 gMinuit->mnemat(&matrix[0][0],5);
908 if (covStatus == 3) trackParam->SetCovariances(matrix);
909 else trackParam->SetVariances(matrix);
ea94c18b 910 } else trackParam->DeleteCovariances();
208f139e 911
de2cd600 912}
913
914 //__________________________________________________________________________
ea94c18b 915void TrackChi2(Int_t & /*nParam*/, Double_t * /*gradient*/, Double_t &chi2, Double_t *param, Int_t /*flag*/)
de2cd600 916{
ea94c18b 917 /// Return the "Chi2" to be minimized with Minuit for track fitting.
2457f726 918 /// Assumes that the track hits are sorted according to increasing Z.
919 /// Track parameters at each TrackHit are updated accordingly.
ea94c18b 920 /// Vertex is used according to the flag "trackBeingFitted->GetFitWithVertex()".
921 /// Multiple Coulomb scattering is taken into account according to the flag "trackBeingFitted->GetFitWithMCS()".
208f139e 922
923 AliMUONTrack *trackBeingFitted = (AliMUONTrack*) gMinuit->GetObjectFit();
ea94c18b 924 AliMUONTrackParam* trackParamAtHit = (AliMUONTrackParam*) trackBeingFitted->GetTrackParamAtHit()->First();
208f139e 925 Double_t dX, dY;
ea94c18b 926 chi2 = 0.; // initialize chi2
208f139e 927
ea94c18b 928 // update track parameters
929 trackParamAtHit->SetNonBendingCoor(param[0]);
930 trackParamAtHit->SetNonBendingSlope(param[1]);
931 trackParamAtHit->SetBendingCoor(param[2]);
932 trackParamAtHit->SetBendingSlope(param[3]);
933 trackParamAtHit->SetInverseBendingMomentum(param[4]);
934 trackBeingFitted->UpdateTrackParamAtHit();
208f139e 935
936 // Take the vertex into account in the fit if required
937 if (trackBeingFitted->GetFitWithVertex()) {
ea94c18b 938 AliMUONTrackParam paramAtVertex(*trackParamAtHit);
208f139e 939 AliMUONTrackExtrap::ExtrapToZ(&paramAtVertex, 0.);
940 AliMUONHitForRec *vertex = trackBeingFitted->GetVertex();
941 if (!vertex) {
942 cout<<"Error in TrackChi2: Want to use the vertex in tracking but it has not been created!!"<<endl;
943 exit(-1);
944 }
945 dX = vertex->GetNonBendingCoor() - paramAtVertex.GetNonBendingCoor();
946 dY = vertex->GetBendingCoor() - paramAtVertex.GetBendingCoor();
ea94c18b 947 chi2 += dX * dX / vertex->GetNonBendingReso2() + dY * dY / vertex->GetBendingReso2();
de2cd600 948 }
208f139e 949
ea94c18b 950 // compute chi2 w/wo multiple scattering
b709ac13 951 chi2 += trackBeingFitted->ComputeGlobalChi2(trackBeingFitted->GetFitWithMCS());
952
953}
954
955 //__________________________________________________________________________
956void AliMUONTrackReconstructor::ComplementTracks()
957{
958 /// Complete tracks by adding missing clusters (if there is an overlap between
959 /// two detection elements, the track may have two clusters in the same chamber)
960 /// Re-fit track parameters and covariances
961 AliDebug(1,"Enter ComplementTracks");
962
963 Int_t chamberId, detElemId;
964 Double_t chi2OfHitForRec, bestChi2OfHitForRec;
965 Bool_t foundOneHit, trackModified;
966 AliMUONHitForRec* hitForRec;
967 AliMUONTrackParam* trackParam, *nextTrackParam;
968 AliMUONTrackParam copyOfTrackParam;
969 AliMUONTrackParam trackParamAtHit;
970 AliMUONTrackParam bestTrackParamAtHit;
971
972 // Remove double track to complete only "good" tracks
973 RemoveDoubleTracks();
974
975 AliMUONTrack *track = (AliMUONTrack*) fRecTracksPtr->First();
976 while (track) {
977 trackModified = kFALSE;
978
979 trackParam = (AliMUONTrackParam*)track->GetTrackParamAtHit()->First();
980 while (trackParam) {
981 foundOneHit = kFALSE;
982 bestChi2OfHitForRec = 2. * fgkSigmaToCutForTracking * fgkSigmaToCutForTracking; // 2 because 2 quantities in chi2
983
984 // prepare nextTrackParam before adding new cluster because of the sorting
985 nextTrackParam = (AliMUONTrackParam*)track->GetTrackParamAtHit()->After(trackParam);
986
987 chamberId = trackParam->GetHitForRecPtr()->GetChamberNumber();
988 detElemId = trackParam->GetHitForRecPtr()->GetDetElemId();
989
990 // recover track parameters from local fit and put them into a copy of trackParam
991 copyOfTrackParam.SetZ(trackParam->GetZ());
992 copyOfTrackParam.SetParameters(trackParam->GetSmoothParameters());
993 copyOfTrackParam.SetCovariances(trackParam->GetSmoothCovariances());
994
995 // look for one second candidate in the same chamber
996 for (Int_t hit = 0; hit < fNHitsForRecPerChamber[chamberId]; hit++) {
997
998 hitForRec = (AliMUONHitForRec*) fHitsForRecPtr->UncheckedAt(fIndexOfFirstHitForRecPerChamber[chamberId]+hit);
999
1000 // look for a cluster in another detection element
1001 if (hitForRec->GetDetElemId() == detElemId) continue;
1002
1003 // try to add the current hit fast
1004 if (!TryOneHitForRecFast(copyOfTrackParam, hitForRec)) continue;
1005
1006 // try to add the current hit accurately
1007 chi2OfHitForRec = TryOneHitForRec(copyOfTrackParam, hitForRec, trackParamAtHit);
1008
1009 // if better chi2 then prepare to add this cluster to the track
1010 if (chi2OfHitForRec < bestChi2OfHitForRec) {
1011 bestChi2OfHitForRec = chi2OfHitForRec;
1012 bestTrackParamAtHit = trackParamAtHit;
1013 foundOneHit = kTRUE;
1014 }
1015
1016 }
1017
1018 // add new cluster if any
1019 if (foundOneHit) {
1020 UpdateTrack(*track,bestTrackParamAtHit);
1021 bestTrackParamAtHit.SetAloneInChamber(kFALSE);
1022 trackParam->SetAloneInChamber(kFALSE);
1023 trackModified = kTRUE;
1024 }
1025
1026 trackParam = nextTrackParam;
1027 }
1028
1029 // re-fit track parameters if needed
1030 if (trackModified) Fit(*track, kTRUE, kTRUE);
1031
1032 track = (AliMUONTrack*) fRecTracksPtr->After(track);
1033 }
ea94c18b 1034
de2cd600 1035}
1036
1037 //__________________________________________________________________________
ea94c18b 1038void AliMUONTrackReconstructor::ImproveTracks()
de2cd600 1039{
ea94c18b 1040 /// Improve tracks by removing clusters with local chi2 highter than the defined cut
1041 /// Recompute track parameters and covariances at the remaining clusters
1042 AliDebug(1,"Enter ImproveTracks");
208f139e 1043
ea94c18b 1044 Double_t localChi2, worstLocalChi2;
b709ac13 1045 Int_t worstChamber, previousChamber;
1046 AliMUONTrack *track, *nextTrack;
1047 AliMUONTrackParam *trackParamAtHit, *worstTrackParamAtHit, *previousTrackParam, *nextTrackParam;
208f139e 1048
ea94c18b 1049 // Remove double track to improve only "good" tracks
1050 RemoveDoubleTracks();
1051
b709ac13 1052 track = (AliMUONTrack*) fRecTracksPtr->First();
ea94c18b 1053 while (track) {
1054
b709ac13 1055 // prepare next track in case the actual track is suppressed
1056 nextTrack = (AliMUONTrack*) fRecTracksPtr->After(track);
1057
ea94c18b 1058 while (!track->IsImproved()) {
1059
1060 // Update track parameters and covariances
1061 track->UpdateCovTrackParamAtHit();
1062
1063 // Compute local chi2 of each hits
1064 track->ComputeLocalChi2(kTRUE);
1065
1066 // Look for the hit to remove
b709ac13 1067 worstTrackParamAtHit = NULL;
ea94c18b 1068 worstLocalChi2 = 0.;
1069 trackParamAtHit = (AliMUONTrackParam*) track->GetTrackParamAtHit()->First();
1070 while (trackParamAtHit) {
1071
1072 // Pick up hit with the worst chi2
1073 localChi2 = trackParamAtHit->GetLocalChi2();
1074 if (localChi2 > worstLocalChi2) {
1075 worstLocalChi2 = localChi2;
1076 worstTrackParamAtHit = trackParamAtHit;
1077 }
1078
1079 trackParamAtHit = (AliMUONTrackParam*) track->GetTrackParamAtHit()->After(trackParamAtHit);
de2cd600 1080 }
ea94c18b 1081
1082 // Check if bad hit found
1083 if (!worstTrackParamAtHit) {
1084 track->SetImproved(kTRUE);
1085 break;
de2cd600 1086 }
ea94c18b 1087
b709ac13 1088 // Check whether the worst chi2 is under requirement or not
1089 if (worstLocalChi2 < 2. * fgkSigmaToCutForImprovement * fgkSigmaToCutForImprovement) { // 2 because 2 quantities in chi2
ea94c18b 1090 track->SetImproved(kTRUE);
1091 break;
de2cd600 1092 }
ea94c18b 1093
b709ac13 1094 // if the worst hit is not removable then remove the entire track
1095 if (!worstTrackParamAtHit->IsRemovable() && worstTrackParamAtHit->IsAloneInChamber()) {
1096 fRecTracksPtr->Remove(track);
1097 fNRecTracks--;
ea94c18b 1098 break;
1099 }
1100
b709ac13 1101 // Reset the second hit in the same station as being not removable
1102 // or reset the second hit in the same chamber as being alone
ea94c18b 1103 worstChamber = worstTrackParamAtHit->GetHitForRecPtr()->GetChamberNumber();
b709ac13 1104 previousTrackParam = (AliMUONTrackParam*) track->GetTrackParamAtHit()->Before(worstTrackParamAtHit);
1105 nextTrackParam = (AliMUONTrackParam*) track->GetTrackParamAtHit()->After(worstTrackParamAtHit);
1106 if (worstTrackParamAtHit->IsAloneInChamber()) { // Worst hit removable and alone in chamber
1107
1108 if (worstChamber%2 == 0) { // Modify flags in next chamber
1109
1110 nextTrackParam->SetRemovable(kFALSE);
1111 if (!nextTrackParam->IsAloneInChamber()) // Make sure both hits in second chamber are not removable anymore
1112 ((AliMUONTrackParam*) track->GetTrackParamAtHit()->After(nextTrackParam))->SetRemovable(kFALSE);
1113
1114 } else { // Modify flags in previous chamber
1115
1116 previousTrackParam->SetRemovable(kFALSE);
1117 if (!previousTrackParam->IsAloneInChamber()) // Make sure both hits in second chamber are not removable anymore
1118 ((AliMUONTrackParam*) track->GetTrackParamAtHit()->Before(previousTrackParam))->SetRemovable(kFALSE);
1119
1120 }
1121
1122 } else { // Worst hit not alone in its chamber
1123
1124 if (previousTrackParam) previousChamber = previousTrackParam->GetHitForRecPtr()->GetChamberNumber();
1125 else previousChamber = -1;
1126
1127 if (previousChamber == worstChamber) { // the second hit on the same chamber is the previous one
1128
1129 previousTrackParam->SetAloneInChamber(kTRUE);
1130 // transfert the removability to the second hit
1131 if (worstTrackParamAtHit->IsRemovable()) previousTrackParam->SetRemovable(kTRUE);
1132
1133 } else { // the second hit on the same chamber is the next one
1134
1135 nextTrackParam->SetAloneInChamber(kTRUE);
1136 // transfert the removability to the second hit
1137 if (worstTrackParamAtHit->IsRemovable()) nextTrackParam->SetRemovable(kTRUE);
1138
1139 }
1140
1141 }
ea94c18b 1142
1143 // Remove the worst hit
1144 track->RemoveTrackParamAtHit(worstTrackParamAtHit);
1145
1146 // Re-fit the track:
1147 // Take into account the multiple scattering
1148 // Calculate the track parameter covariance matrix
ea94c18b 1149 Fit(*track, kTRUE, kTRUE);
1150
1151 // Printout for debuging
1152 if ((AliLog::GetDebugLevel("MUON","AliMUONTrackReconstructor") >= 1) || (AliLog::GetGlobalDebugLevel() >= 1)) {
1153 cout << "ImproveTracks: track " << fRecTracksPtr->IndexOf(track)+1 << " improved " << endl;
1154 }
1155
de2cd600 1156 }
ea94c18b 1157
b709ac13 1158 track = nextTrack;
de2cd600 1159 }
1160
b709ac13 1161 // compress the array in case of some tracks have been removed
1162 fRecTracksPtr->Compress();
1163
de2cd600 1164}
1165
208f139e 1166 //__________________________________________________________________________
ea94c18b 1167void AliMUONTrackReconstructor::Finalize()
b8dc484b 1168{
b58638a9 1169 /// Fill AliMUONTrack's fHitForRecAtHit array
1170 /// Recompute track parameters and covariances at each attached cluster from those at the first one
b709ac13 1171
b8dc484b 1172 AliMUONTrack *track;
de2cd600 1173 AliMUONTrackParam *trackParamAtHit;
b58638a9 1174
b8dc484b 1175 track = (AliMUONTrack*) fRecTracksPtr->First();
1176 while (track) {
ea94c18b 1177
1178 // update track parameters if not already done
1179 if (!track->IsImproved()) track->UpdateCovTrackParamAtHit();
1180
de2cd600 1181 trackParamAtHit = (AliMUONTrackParam*) (track->GetTrackParamAtHit()->First());
1182 while (trackParamAtHit) {
ea94c18b 1183
b58638a9 1184 // update array of track hit
ea94c18b 1185 track->AddHitForRecAtHit(trackParamAtHit->GetHitForRecPtr());
1186
1187 trackParamAtHit = (AliMUONTrackParam*) (track->GetTrackParamAtHit()->After(trackParamAtHit));
de2cd600 1188 }
ea94c18b 1189
b8dc484b 1190 track = (AliMUONTrack*) fRecTracksPtr->After(track);
ea94c18b 1191
de2cd600 1192 }
ea94c18b 1193
a9e2aefa 1194}
1195
276c44b7 1196