]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTriggerTrack.cxx
In AliMUONTrackerQADataMakerRec: Coverity fix
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerTrack.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 AliMUONTriggerTrack
20 //---------------------------
21 // Reconstructed Trigger track in ALICE dimuon spectrometer
22 // Note: equivalent to AliMUONTriggerTrack for tracking,
23 // No need for a AliMUONTriggerTrackParam
24 // Author: Philippe Crochet
25 //-----------------------------------------------------------------------------
26
27 #include "AliMUONTriggerTrack.h"
28 #include "AliMUONTrackReconstructor.h" 
29 #include "TString.h"
30 #include <Riostream.h>
31 #include "AliLog.h"
32
33 /// \cond CLASSIMP
34 ClassImp(AliMUONTriggerTrack)
35 /// \endcond
36
37 //__________________________________________________________________________
38 AliMUONTriggerTrack::AliMUONTriggerTrack()
39   : TObject(),
40     fx11(0),
41     fy11(0),
42     fz11(0.),
43     fz21(0.),
44     fSlopeX(0),
45     fSlopeY(0),
46     floTrgNum(0),
47     fGTPattern(0),
48     fPtCutLevel(0),
49     fHitsPatternInTrigCh(0),
50     fCovariances(0x0)
51 {
52   /// default ctr
53       AliDebug(5,Form("this=%p",this));
54 }
55 //__________________________________________________________________________
56 AliMUONTriggerTrack::AliMUONTriggerTrack(Float_t x11, Float_t y11, Float_t z11, Float_t z21, Float_t slopeX, Float_t slopeY, Int_t loTrgNum, Long_t theGTPattern, Int_t ptCutLevel)
57     : TObject(),
58       fx11(x11),
59       fy11(y11),
60       fz11(z11),
61       fz21(z21),
62       fSlopeX(slopeX),
63       fSlopeY(slopeY),
64       floTrgNum(loTrgNum),
65       fGTPattern(theGTPattern),
66       fPtCutLevel(ptCutLevel),
67       fHitsPatternInTrigCh(0),
68       fCovariances(0x0)
69 {
70 /// ctor from local trigger output
71         AliDebug(5,Form("this=%p x11=%f y11=%f z11=%f z21=%f slopeX=%f slopeY=%f loTrgNum=%d GTPattern=%ld HitsPatternInTrigCh %i",
72                         this,x11,y11,z11,z21,slopeX,slopeY,loTrgNum,theGTPattern,fHitsPatternInTrigCh));
73
74 }
75
76 //__________________________________________________________________________
77 AliMUONTriggerTrack::~AliMUONTriggerTrack()
78 {
79   /// Destructor
80   AliDebug(5,Form("this=%p",this));
81   if (fCovariances) {
82     delete fCovariances;
83     fCovariances = 0x0;
84   }
85 }
86
87 //__________________________________________________________________________
88 AliMUONTriggerTrack::AliMUONTriggerTrack (const AliMUONTriggerTrack& theMUONTriggerTrack)
89     : TObject(theMUONTriggerTrack),
90       fx11(theMUONTriggerTrack.fx11),
91       fy11(theMUONTriggerTrack.fy11),
92       fz11(theMUONTriggerTrack.fz11),
93       fz21(theMUONTriggerTrack.fz21),
94       fSlopeX(theMUONTriggerTrack.fSlopeX),
95       fSlopeY(theMUONTriggerTrack.fSlopeY),
96       floTrgNum(theMUONTriggerTrack.floTrgNum),
97       fGTPattern(theMUONTriggerTrack.fGTPattern),
98       fPtCutLevel(theMUONTriggerTrack.fPtCutLevel),
99       fHitsPatternInTrigCh(theMUONTriggerTrack.fHitsPatternInTrigCh),
100       fCovariances(0x0)
101 {
102 ///
103 /// copy ctor
104 ///
105   if (theMUONTriggerTrack.fCovariances) fCovariances = new TMatrixD(*(theMUONTriggerTrack.fCovariances));
106   AliDebug(5,Form("this=%p copy ctor",this));
107
108 }
109       
110 //__________________________________________________________________________
111 AliMUONTriggerTrack & AliMUONTriggerTrack::operator=(const AliMUONTriggerTrack&
112 theMUONTriggerTrack)
113 {
114 /// Assignment operator
115
116     // check assignement to self
117     if (this == &theMUONTriggerTrack)
118         return *this;
119     
120     /// base class assignement
121     TObject::operator=(theMUONTriggerTrack);
122
123     fx11 = theMUONTriggerTrack.fx11;
124     fy11 = theMUONTriggerTrack.fy11;
125     fz11 = theMUONTriggerTrack.fz11;
126     fz21 = theMUONTriggerTrack.fz21;
127     fSlopeX = theMUONTriggerTrack.fSlopeX;
128     fSlopeY = theMUONTriggerTrack.fSlopeY;
129     floTrgNum = theMUONTriggerTrack.floTrgNum;
130     fGTPattern = theMUONTriggerTrack.fGTPattern;
131     fHitsPatternInTrigCh = theMUONTriggerTrack.fHitsPatternInTrigCh;
132
133     if (theMUONTriggerTrack.fCovariances) {
134       if (fCovariances) *fCovariances = *(theMUONTriggerTrack.fCovariances);
135       else fCovariances = new TMatrixD(*(theMUONTriggerTrack.fCovariances));
136     } else {
137       delete fCovariances;
138       fCovariances = 0x0;
139     }
140
141     return *this;
142 }
143
144 //__________________________________________________________________________
145 void AliMUONTriggerTrack::Clear(Option_t* /*opt*/)
146 {
147   /// Clean memory
148   delete fCovariances;
149   fCovariances = 0x0;
150 }
151
152 //__________________________________________________________________________
153 void
154 AliMUONTriggerTrack::Print(Option_t* opt) const
155 {
156 /// Printing
157   TString optString(opt);
158   optString.ToUpper();
159   if ( optString.Contains("FULL") ) optString = "PARAM COV";
160
161   if ( optString.Contains("PARAM"))
162     cout << Form("(X,Y,Z)11=(%7.2f,%7.2f,%7.2f) Z21=%7.2f Slope(X,Y)=(%7.2f,%7.2f) LocalBoard #%3d GlobalTriggerPattern %x HitsPatternInTrigCh %x",
163                  fx11,fy11,fz11,fz21,fSlopeX,fSlopeY,floTrgNum,fGTPattern,fHitsPatternInTrigCh) << endl;
164
165   if ( optString.Contains("COV") ){
166     if ( ! fCovariances ) cout << "Covariances not initialized " << endl;
167     else fCovariances->Print();
168   }
169 }
170
171 //__________________________________________________________________________
172 void AliMUONTriggerTrack::SetCovariances(const TMatrixD& covariances)
173 {
174   /// Set the covariance matrix
175   if (fCovariances) *fCovariances = covariances;
176   else fCovariances = new TMatrixD(covariances);
177 }
178
179 //__________________________________________________________________________
180 void AliMUONTriggerTrack::SetCovariances(const Double_t matrix[3][3])
181 {
182   /// Set the covariance matrix
183   if (fCovariances) fCovariances->SetMatrixArray(&(matrix[0][0]));
184   else fCovariances = new TMatrixD(3,3,&(matrix[0][0]));
185 }
186
187 //__________________________________________________________________________
188 const TMatrixD& AliMUONTriggerTrack::GetCovariances() const
189 {
190   /// Return the covariance matrix (create it before if needed)
191   if (!fCovariances) {
192     fCovariances = new TMatrixD(3,3);
193     fCovariances->Zero();
194   }
195   return *fCovariances;
196 }
197
198 //__________________________________________________________________________
199 Bool_t AliMUONTriggerTrack::Match(AliMUONTriggerTrack &track,
200                                   Double_t sigmaCut) const
201 {
202   /// Try to match this track with the given track. Matching conditions:
203   /// - x, y position and y slope within sigmaCut
204   
205   // Find the track with the covariances correctly set
206   // Extrapolate to the z of the other track
207   Bool_t hasCov1 = ( GetCovariances().NonZeros() != 0 );
208   Bool_t hasCov2 = ( track.GetCovariances().NonZeros() != 0 );
209
210   const AliMUONTriggerTrack* trackToExtrap = ( hasCov2 ) ? &track : this;
211   const AliMUONTriggerTrack* fixedTrack = ( hasCov2 ) ? this : &track;
212
213   TMatrixD paramDiff(3,1);
214   Double_t deltaZ = fixedTrack->GetZ11() - trackToExtrap->GetZ11();
215   paramDiff(0,0) = fixedTrack->GetX11() - trackToExtrap->GetX11();
216   paramDiff(1,0) = fixedTrack->GetY11() - ( trackToExtrap->GetY11() + trackToExtrap->GetSlopeY() * deltaZ );
217   paramDiff(2,0) = fixedTrack->GetSlopeY() - trackToExtrap->GetSlopeY();
218   Double_t chi2 = 0.;
219
220   TMatrixD cov1(fixedTrack->GetCovariances());
221   TMatrixD cov2(trackToExtrap->GetCovariances());
222
223   // Extrapolate covariances to z
224   if ( deltaZ != 0 ) {
225     if ( hasCov1 || hasCov2 ){
226       TMatrixD jacob(3,3);
227       jacob.UnitMatrix();
228       jacob(1,2) = deltaZ;
229       TMatrixD tmp(trackToExtrap->GetCovariances(),TMatrixD::kMultTranspose,jacob);
230       TMatrixD tmp2(jacob,TMatrixD::kMult,tmp);
231       cov2 = tmp2;
232     }
233   }
234
235   AliDebug(3, Form("track1 Y11 %f  track2 Y11: %f (Z11 %f)  -> %f (Z11 %f)", fixedTrack->GetY11(), trackToExtrap->GetY11(), trackToExtrap->GetZ11(), trackToExtrap->GetY11() + trackToExtrap->GetSlopeY() * deltaZ, fixedTrack->GetZ11()));
236
237   TMatrixD sumCov(cov1,TMatrixD::kPlus,cov2);
238   if (sumCov.Determinant() != 0) {
239     sumCov.Invert();      
240     TMatrixD tmp(sumCov,TMatrixD::kMult,paramDiff);
241     TMatrixD chi2M(paramDiff,TMatrixD::kTransposeMult,tmp);
242     chi2 = chi2M(0,0);
243   } else {
244     AliWarning(" Determinant = 0");
245     Double_t sigma2 = 0.;
246     for (Int_t iVar = 0; iVar < 3; iVar++) {
247       sigma2 = cov1(iVar,iVar) + cov2(iVar,iVar);
248       chi2 += paramDiff(iVar,0) * paramDiff(iVar,0) / sigma2;
249     }
250   }
251
252   if ( chi2/3 > sigmaCut * sigmaCut )
253     return kFALSE;
254   
255   return kTRUE;
256 }