]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTracker.cxx
Fixes for #86279 Improper usage of TClonesArrays in MUON
[u/mrichter/AliRoot.git] / MUON / AliMUONTracker.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 //-----------------------------------------------------------------------------
19 /// \class AliMUONTracker
20 ///
21 /// Steering class for use in global tracking framework;
22 /// reconstruct tracks from recpoints
23 ///
24 /// Actual tracking is performed by some AliMUONVTrackReconstructor children
25 /// Tracking modes (ORIGINAL, KALMAN) and associated options and parameters can be changed
26 /// through the AliMUONRecoParam object set in the reconstruction macro or read from the CDB
27 /// (see methods in AliMUONRecoParam.h file for details)
28 ///
29 /// \author Christian Finck and Laurent Aphecetche, SUBATECH Nantes
30 //-----------------------------------------------------------------------------
31
32 #include "AliMUONTracker.h"
33
34 #include "AliCodeTimer.h"
35 #include "AliESDEvent.h"
36 #include "AliESDMuonTrack.h"
37 #include "AliESDVertex.h"
38 #include "AliLog.h"
39 #include "AliMUONClusterStoreV2.h"
40 #include "AliMUONESDInterface.h"
41 #include "AliMUONLegacyClusterServer.h"
42 #include "AliMUONRecoParam.h"
43 #include "AliMUONReconstructor.h"
44 #include "AliMUONTrack.h"
45 #include "AliMUONTrackExtrap.h"
46 #include "AliMUONTrackHitPattern.h"
47 #include "AliMUONTrackParam.h"
48 #include "AliMUONTrackReconstructor.h"
49 #include "AliMUONTrackReconstructorK.h"
50 #include "AliMUONTrackStoreV1.h"
51 #include "AliMUONTriggerTrackStoreV1.h"
52 #include "AliMUONTriggerTrack.h"
53 #include "AliMUONLocalTrigger.h"
54 #include "AliMUONVClusterServer.h"
55 #include "AliMUONVDigitStore.h"
56 #include "AliMUONVTriggerStore.h"
57 #include "AliMUONTriggerUtilities.h"
58 #include <Riostream.h>
59 #include <TRandom.h>
60 #include <TTree.h>
61 #include "AliLog.h"
62
63 /// \cond CLASSIMP
64 ClassImp(AliMUONTracker)
65 /// \endcond
66
67
68 //_____________________________________________________________________________
69 AliMUONTracker::AliMUONTracker(const AliMUONRecoParam* recoParam,
70                                AliMUONVClusterServer* clusterServer,
71                                AliMUONVDigitStore& digitStore,
72                                const AliMUONGeometryTransformer* transformer,
73                                const AliMUONTriggerCircuit* triggerCircuit,
74                                const AliMUONTriggerUtilities* triggerUtilities)
75 : AliTracker(),
76 fkTransformer(transformer), // not owner
77 fkTriggerCircuit(triggerCircuit), // not owner
78 fTrackHitPatternMaker(0x0),
79 fTrackReco(0x0),
80 fClusterStore(0x0),
81 fTriggerStore(0x0),
82 fClusterServer(clusterServer), 
83 fIsOwnerOfClusterServer(kFALSE),
84 fkDigitStore(digitStore), // not owner
85 fInputClusterStore(0x0),
86 fTriggerTrackStore(0x0),
87 fkRecoParam(recoParam),
88 fInternalTrackStore(0x0)
89 {
90   /// constructor
91   
92   if (fkTransformer)
93     fTrackHitPatternMaker = new AliMUONTrackHitPattern(recoParam,*fkTransformer,fkDigitStore,triggerUtilities);
94   
95   if (!fClusterServer)
96   {
97     AliDebug(1,"No cluster server given. Will use AliMUONLegacyClusterServer");
98     fIsOwnerOfClusterServer = kTRUE;
99   }
100   else
101   {
102     TIter next(fkDigitStore.CreateIterator());
103     fClusterServer->UseDigits(next,&digitStore);
104     
105     SetupClusterServer(*fClusterServer);
106   }
107 }
108
109 //_____________________________________________________________________________
110 AliMUONTracker::~AliMUONTracker()
111 {
112   /// dtor
113   
114   delete fTrackReco;
115   delete fTrackHitPatternMaker;
116   delete fClusterStore;
117   delete fTriggerStore;
118   if ( fIsOwnerOfClusterServer ) delete fClusterServer;
119   delete fInputClusterStore;
120   delete fTriggerTrackStore;
121   delete fInternalTrackStore;
122 }
123
124 //_____________________________________________________________________________
125 AliMUONVClusterStore*
126 AliMUONTracker::ClusterStore() const
127 {
128   /// Return (and create if necessary) the cluster container
129   if (!fClusterStore) 
130   {
131     fClusterStore = new AliMUONClusterStoreV2;
132   }
133   return fClusterStore;
134 }
135
136 //_____________________________________________________________________________
137 AliMUONVTriggerTrackStore*
138 AliMUONTracker::TriggerTrackStore() const
139 {
140   /// Return (and create if necessary) the trigger track container
141   if (!fTriggerTrackStore) 
142   {
143     fTriggerTrackStore = new AliMUONTriggerTrackStoreV1;
144   }
145   return fTriggerTrackStore;
146 }
147
148 //_____________________________________________________________________________
149 Int_t AliMUONTracker::LoadClusters(TTree* clustersTree)
150 {
151   /// Load triggerStore from clustersTree
152
153   if ( ! clustersTree ) {
154     AliFatal("No clustersTree");
155     return 1;
156   }
157
158   if ( !fTriggerStore ) 
159   {
160     fTriggerStore = AliMUONVTriggerStore::Create(*clustersTree);    
161   }
162   
163   if (!fTriggerStore)
164   {
165     AliError("Could not get triggerStore");
166     return 2;
167   }
168   
169   if (!fInputClusterStore) 
170   {
171     fInputClusterStore = AliMUONVClusterStore::Create(*clustersTree);
172     if (!fInputClusterStore)
173     {
174       AliError("Could not get clusterStore");
175       return 3;
176     }
177     AliDebug(1,Form("Created %s from cluster tree",fInputClusterStore->ClassName()));
178   }
179     
180   if ( !fClusterServer && fIsOwnerOfClusterServer )
181   {
182     if ( !fClusterServer ) 
183     {
184       fClusterServer = new AliMUONLegacyClusterServer(*fkTransformer,fInputClusterStore,
185                                                       GetRecoParam()->BypassSt4(),
186                                                       GetRecoParam()->BypassSt5());
187       SetupClusterServer(*fClusterServer);
188     }
189
190   }
191   
192   fInputClusterStore->Clear();
193   fInputClusterStore->Connect(*clustersTree,kFALSE);
194   fTriggerStore->Clear();
195   fTriggerStore->Connect(*clustersTree,kFALSE);
196   
197   clustersTree->GetEvent(0);
198
199   return 0;
200 }
201
202 //_____________________________________________________________________________
203 Int_t AliMUONTracker::Clusters2Tracks(AliESDEvent* esd)
204 {
205   /// Performs the tracking and store the resulting tracks in the ESD
206   ///
207   /// note that we're dealing with two cluster stores here : fInputClusterStore
208   /// and ClusterStore().
209   /// The first one is read from the TreeR and may be used by the cluster server 
210   /// (that's the case for the legacy cluster server) to fill the other one.
211   /// The second one is more dynamic and might be created on the fly by the cluster
212   /// server (used by the combined tracking, in which case the first one is not used
213   /// at all).
214   
215   AliCodeTimerAuto("",0)
216   
217   if (!fTrackReco) 
218   {
219     fTrackReco = CreateTrackReconstructor(GetRecoParam(),fClusterServer);
220     fInternalTrackStore = new AliMUONTrackStoreV1;
221   }
222   
223   // if the required tracking mode does not exist
224   if  (!fTrackReco) return 1;
225   
226   if ( ! ClusterStore() ) 
227   {
228     AliError("ClusterStore is NULL");
229     return 2;
230   }
231   
232   if (!fTriggerStore) {
233     AliError("TriggerStore is NULL");
234     return 3;
235   }
236
237   // Make trigger tracks
238   if ( fkTriggerCircuit ) 
239   {
240     TriggerTrackStore()->Clear();
241     fTrackReco->EventReconstructTrigger(*fkTriggerCircuit,*fTriggerStore,*(TriggerTrackStore()));
242   }
243   
244   if ( TriggerTrackStore()->GetSize() > GetRecoParam()->GetMaxTriggerTracks() ) 
245   {
246     // cut to reject shower events
247     
248     AliCodeTimerAuto("MUON Shower events",1);
249
250     AliWarning(Form("Probably got a shower event (%d trigger tracks). Will not reconstruct tracks.",
251                     TriggerTrackStore()->GetSize()));
252     
253     return 0;
254   }
255        
256   fTrackReco->EventReconstruct(*(ClusterStore()),*fInternalTrackStore);
257   
258   // Match tracker/trigger tracks
259   if ( fTrackHitPatternMaker ) 
260   {
261     fTrackReco->ValidateTracksWithTrigger(*fInternalTrackStore,*(TriggerTrackStore()),*fTriggerStore,*fTrackHitPatternMaker);
262   }
263   
264   // Fill ESD
265   FillESD(*fInternalTrackStore,esd);
266   
267   fInternalTrackStore->Clear();
268   ClusterStore()->Clear();
269   
270   return 0;
271 }
272
273 //_____________________________________________________________________________
274 void AliMUONTracker::FillESD(const AliMUONVTrackStore& trackStore, AliESDEvent* esd) const
275 {
276   /// Fill the ESD from the trackStore
277   AliDebug(1,"");
278   AliCodeTimerAuto("",0)
279   
280   // get ITS vertex
281   Double_t vertex[3] = {0., 0., 0.};
282   const AliESDVertex* esdVert = esd->GetVertex(); 
283   if (esdVert->GetNContributors() > 0 || !strcmp(esdVert->GetTitle(),"vertexer: smearMC")) {
284     esdVert->GetXYZ(vertex);
285     AliDebug(1,Form("found vertex (%e,%e,%e)",vertex[0],vertex[1],vertex[2]));
286   }
287   
288   // fill ESD event including all info in ESD cluster if required and only for the given fraction of events
289   AliMUONTrack* track;
290   AliMUONLocalTrigger* locTrg;
291   AliESDMuonTrack esdTrack;
292   TIter next(trackStore.CreateIterator());
293   if (GetRecoParam()->SaveFullClusterInESD() && 
294       gRandom->Uniform(100.) <= GetRecoParam()->GetPercentOfFullClusterInESD()) {
295     
296     while ( ( track = static_cast<AliMUONTrack*>(next()) ) ) {
297       
298       if (track->GetMatchTrigger() > 0) {
299         locTrg = static_cast<AliMUONLocalTrigger*>(fTriggerStore->FindLocal(track->LoCircuit()));
300         AliMUONESDInterface::MUONToESD(*track, esdTrack, vertex, &fkDigitStore, locTrg);
301       } else AliMUONESDInterface::MUONToESD(*track, esdTrack, vertex, &fkDigitStore);
302       
303       esd->AddMuonTrack(&esdTrack);
304     }
305     
306   } else {
307     
308     while ( ( track = static_cast<AliMUONTrack*>(next()) ) ) {
309       
310       if (track->GetMatchTrigger() > 0) {
311         locTrg = static_cast<AliMUONLocalTrigger*>(fTriggerStore->FindLocal(track->LoCircuit()));
312         AliMUONESDInterface::MUONToESD(*track, esdTrack, vertex, 0x0, locTrg);
313       } else AliMUONESDInterface::MUONToESD(*track, esdTrack, vertex);
314       
315       esd->AddMuonTrack(&esdTrack);
316     }
317     
318   }
319   
320   // fill the local trigger decisions not matched with tracks (associate them to "ghost" tracks)
321   UInt_t ghostId = 0xFFFFFFFF - 1;
322   Bool_t matched = kFALSE;
323   AliMUONTriggerTrack *triggerTrack;
324   TIter itTriggerTrack(fTriggerTrackStore->CreateIterator());
325   while ( ( triggerTrack = static_cast<AliMUONTriggerTrack*>(itTriggerTrack()) ) ) {
326     
327     locTrg = static_cast<AliMUONLocalTrigger*>(fTriggerStore->FindLocal(triggerTrack->GetLoTrgNum()));
328     
329     // check if this local trigger has already been matched
330     TIter itTrack(trackStore.CreateIterator());
331     while ( ( track = static_cast<AliMUONTrack*>(itTrack()) ) ) {
332       matched = (track->LoCircuit() == locTrg->LoCircuit());
333       if (matched) break;
334     }
335     if (matched) continue;
336
337     AliMUONESDInterface::MUONToESD(*locTrg, esdTrack, ghostId, triggerTrack);
338     
339     esd->AddMuonTrack(&esdTrack);
340     ghostId -= 1;
341   }
342   
343 }
344
345 //_____________________________________________________________________________
346 AliMUONVTrackReconstructor* AliMUONTracker::CreateTrackReconstructor(const AliMUONRecoParam* recoParam, AliMUONVClusterServer* clusterServer)
347 {
348   /// Create track reconstructor, depending on tracking mode set in RecoParam
349   
350   AliMUONVTrackReconstructor* trackReco(0x0);
351   
352   TString opt(recoParam->GetTrackingMode());
353   opt.ToUpper();
354   
355   if (strstr(opt,"ORIGINAL"))
356   {
357     trackReco = new AliMUONTrackReconstructor(recoParam,clusterServer);
358   }
359   else if (strstr(opt,"KALMAN"))
360   {
361     trackReco = new AliMUONTrackReconstructorK(recoParam,clusterServer);
362   }
363   else
364   {
365     AliErrorClass(Form("tracking mode \"%s\" does not exist",opt.Data()));
366     return 0x0;
367   }
368   
369   AliDebugClass(1,Form("Will use %s for tracking",trackReco->ClassName()));
370   
371   return trackReco;
372 }
373
374 //_____________________________________________________________________________
375 void AliMUONTracker::UnloadClusters()
376 {
377   /// Clear internal clusterStore
378   
379   fInputClusterStore->Clear();
380 }
381
382
383 //_____________________________________________________________________________
384 void
385 AliMUONTracker::SetupClusterServer(AliMUONVClusterServer& clusterServer)
386 {
387   /// Setup the cluster server
388   
389   if ( GetRecoParam()->BypassSt4() ||
390                          GetRecoParam()->BypassSt5() )
391   {
392     Bool_t ok = clusterServer.UseTriggerTrackStore(TriggerTrackStore());
393   
394                 TString msg1;
395                 TString msg2;
396                 
397                 if ( GetRecoParam()->BypassSt45() )
398                 {
399                         msg1 = "STATIONS 4 AND 5";
400                         msg2 = "THOSE TWO STATIONS";
401                 }
402                 else if ( GetRecoParam()->BypassSt4() )
403                 {
404                         msg1 = "STATION 4";
405                         msg2 = "THAT STATION";
406                 }
407                 else if ( GetRecoParam()->BypassSt5() )
408                 {
409                         msg1 = "STATION 5";
410                         msg2 = "THAT STATION";
411                 }
412                 
413     if ( ok ) 
414     {
415       AliWarning(Form("WILL USE TRIGGER TRACKS TO GENERATE CLUSTERS IN %s, "
416                                                                                         "THUS BYPASSING REAL CLUSTERS IN %s!!!",msg1.Data(),msg2.Data()));    
417     }
418     else
419     {
420       AliWarning("BYPASSING OF ST4 AND/OR 5 REQUESTED, BUT CLUSTERSERVER DOES NOT SEEM TO SUPPORT IT !!!");    
421     }
422   }
423 }
424
425