]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTrack.h
Updated list of framework libraries
[u/mrichter/AliRoot.git] / MUON / AliMUONTrack.h
CommitLineData
a9e2aefa 1#ifndef ALIMUONTRACK_H
2#define ALIMUONTRACK_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/*$Id$*/
30178c30 7// Revision of includes 07/05/2004
8
692de412 9/// \ingroup rec
10/// \class AliMUONTrack
11/// \brief Reconstructed track in ALICE dimuon spectrometer
12///
13////////////////////////////////////////////////////
14/// Reconstructed track in ALICE dimuon spectrometer
15////////////////////////////////////////////////////
3831f268 16
c1a185bf 17#include "AliMUONTrackParam.h" // object belongs to the class
ea94c18b 18#include <TClonesArray.h>
a9e2aefa 19
96ebe67e 20class AliMUONVCluster;
ea94c18b 21class AliMUONObjectPair;
a9e2aefa 22
30178c30 23class AliMUONTrack : public TObject
24{
a9e2aefa 25 public:
d837040f 26 AliMUONTrack(); // Default constructor
ea94c18b 27 AliMUONTrack(AliMUONObjectPair *segment); // Constructor from a segment
8429a5e4 28 virtual ~AliMUONTrack(); // Destructor
ea94c18b 29 AliMUONTrack (const AliMUONTrack& track); // copy constructor
30 AliMUONTrack& operator=(const AliMUONTrack& track); // assignment operator
a9e2aefa 31
a9e2aefa 32
96ebe67e 33 /// return array of track parameters at cluster
34 TClonesArray* GetTrackParamAtCluster() const {return fTrackParamAtCluster;}
35 void AddTrackParamAtCluster(const AliMUONTrackParam &trackParam, AliMUONVCluster &cluster, Bool_t copy = kFALSE);
36 void RemoveTrackParamAtCluster(AliMUONTrackParam *trackParam);
37 void UpdateTrackParamAtCluster();
38 void UpdateCovTrackParamAtCluster();
39
40 /// return the number of clusters attached to the track
41 Int_t GetNClusters() const {return fTrackParamAtCluster->GetEntriesFast();}
42
43 /// return kTrue if the vertex must be used to constrain the fit, kFalse if not
44 Bool_t FitWithVertex() const {return fFitWithVertex;}
45 /// set the flag telling whether the vertex must be used to constrain the fit or not
46 void FitWithVertex(Bool_t fitWithVertex) { fFitWithVertex = fitWithVertex; }
47 /// return the vertex resolution square used during the tracking procedure
48 void GetVertexErrXY2(Double_t &nonBendingErr2, Double_t &bendingErr2) const
49 { nonBendingErr2 = fVertexErrXY2[0]; bendingErr2 = fVertexErrXY2[1]; }
50 /// set the vertex resolution square used during the tracking procedure
51 void SetVertexErrXY2(Double_t nonBendingErr2, Double_t bendingErr2)
52 { fVertexErrXY2[0] = nonBendingErr2; fVertexErrXY2[1] = bendingErr2; }
53
54 /// return kTrue if the multiple scattering must be accounted for in the fit, kFalse if not
55 Bool_t FitWithMCS() const {return fFitWithMCS;}
56 /// set the flag telling whether the multiple scattering must be accounted for in the fit or not
57 void FitWithMCS(Bool_t fitWithMCS) {fFitWithMCS = fitWithMCS;}
58
59 Bool_t ComputeClusterWeights(TMatrixD* mcsCovariances = 0);
60 Bool_t ComputeLocalChi2(Bool_t accountForMCS);
61 Double_t ComputeGlobalChi2(Bool_t accountForMCS);
62
63 /// return the minimum value of the function minimized by the fit
64 Double_t GetGlobalChi2() const {return fGlobalChi2;}
65 /// set the minimum value of the function minimized by the fit
66 void SetGlobalChi2(Double_t chi2) { fGlobalChi2 = chi2;}
67
68 /// return kTRUE if the track has been improved
69 Bool_t IsImproved() const {return fImproved;}
70 /// set the flag telling whether the track has been improved or not
71 void SetImproved(Bool_t improved) { fImproved = improved;}
72
73 /// return 1,2,3 if track matches with trigger track, 0 if not
74 Int_t GetMatchTrigger(void) const {return fMatchTrigger;}
c6ba19f7 75 /// returns the local trigger number corresponding to the trigger track
96ebe67e 76 Int_t GetLoTrgNum(void) const {return floTrgNum;}
77 /// set the flag telling whether track matches with trigger track or not
78 void SetMatchTrigger(Int_t matchTrigger) {fMatchTrigger = matchTrigger;}
79 /// set the local trigger number corresponding to the trigger track
80 void SetLoTrgNum(Int_t loTrgNum) {floTrgNum = loTrgNum;}
81 /// return the chi2 of trigger/track matching
82 Double_t GetChi2MatchTrigger(void) const {return fChi2MatchTrigger;}
83 /// set the chi2 of trigger/track matching
84 void SetChi2MatchTrigger(Double_t chi2MatchTrigger) {fChi2MatchTrigger = chi2MatchTrigger;}
ea94c18b 85
96ebe67e 86 Int_t ClustersInCommon(AliMUONTrack* track) const;
ea94c18b 87
96ebe67e 88 Double_t GetNormalizedChi2() const;
ea94c18b 89
96ebe67e 90 Bool_t* CompatibleTrack(AliMUONTrack* track, Double_t sigma2Cut) const; // return array of compatible chamber
b8dc484b 91
96ebe67e 92 /// return track number in TrackRefs
93 Int_t GetTrackID() const {return fTrackID;}
94 /// set track number in TrackRefs
95 void SetTrackID(Int_t trackID) {fTrackID = trackID;}
6464217e 96
96ebe67e 97 AliMUONTrackParam* GetTrackParamAtVertex();
98 void SetTrackParamAtVertex(const AliMUONTrackParam* trackParam);
99
100 /// set word telling which trigger chambers where hit by track
101 UShort_t GetHitsPatternInTrigCh() const {return fHitsPatternInTrigCh;}
102 /// set word telling which trigger chambers where hit by track
103 void SetHitsPatternInTrigCh(UShort_t hitsPatternInTrigCh) {fHitsPatternInTrigCh = hitsPatternInTrigCh;}
7771752e 104
423b32ca 105 /// set local trigger information for the matched trigger track
96ebe67e 106 void SetLocalTrigger(Int_t loCirc, Int_t loStripX, Int_t loStripY, Int_t loDev, Int_t loLpt, Int_t loHpt);
423b32ca 107 /// return local trigger information for the matched trigger track
108 Int_t GetLocalTrigger(void) const { return fLocalTrigger; }
4a335550 109 /// number of triggering circuit
01413742 110 Int_t LoCircuit(void) const { return fLocalTrigger & 0xFF; }
4a335550 111 /// x-strip local trigger
423b32ca 112 Int_t LoStripX(void) const { return fLocalTrigger >> 8 & 0x1F; }
4a335550 113 /// y-strip local trigger
423b32ca 114 Int_t LoStripY(void) const { return fLocalTrigger >> 13 & 0x0F; }
4a335550 115 /// deviation local trigger
423b32ca 116 Int_t LoDev(void) const { return fLocalTrigger >> 17 & 0x1F; }
4a335550 117 /// low pt decision local trigger
423b32ca 118 Int_t LoLpt(void) const { return fLocalTrigger >> 22 & 0x03; }
4a335550 119 /// high pt decision local trigger
423b32ca 120 Int_t LoHpt(void) const { return fLocalTrigger >> 24 & 0x03; }
121
96ebe67e 122 void RecursiveDump(void) const; // Recursive dump (with associated clusters)
6464217e 123
96ebe67e 124 virtual void Print(Option_t* opt="") const;
a9e2aefa 125
d2b1e7bb 126 virtual void Clear(Option_t* opt="");
956019b6 127
ea94c18b 128
a9e2aefa 129 private:
ea94c18b 130
96ebe67e 131 TClonesArray* fTrackParamAtCluster; ///< Track parameters at cluster
de2cd600 132
96ebe67e 133 Bool_t fFitWithVertex; //!< kTRUE if using the vertex to constrain the fit, kFALSE if not
134 Double_t fVertexErrXY2[2]; //!< Vertex resolution square used during the tracking procedure if required
208f139e 135
ea94c18b 136 Bool_t fFitWithMCS; //!< kTRUE if accounting for multiple scattering in the fit, kFALSE if not
137
96ebe67e 138 TMatrixD* fClusterWeightsNonBending; //!< weights matrix, in non bending direction, of clusters attached to the track
139 //!< (accounting for multiple scattering and cluster resolution)
140 TMatrixD* fClusterWeightsBending; //!< weights matrix, in bending direction, of clusters attached to the track
141 //!< (accounting for multiple scattering and cluster resolution)
ea94c18b 142
143 Double_t fGlobalChi2; ///< Global chi2 of the track
144
145 Bool_t fImproved; //!< kTRUE if the track has been improved
146
423b32ca 147 Int_t fMatchTrigger; ///< 0 track does not match trigger
148 ///< 1 track match but does not pass pt cut
149 ///< 2 track match Low pt cut
150 ///< 3 track match High pt cut
c6ba19f7 151 Int_t floTrgNum; ///< the number of the corresponding loTrg, -1 if no matching
829425a5 152 Double_t fChi2MatchTrigger; ///< chi2 of trigger/track matching
de2cd600 153
829425a5 154 Int_t fTrackID; ///< track ID = track number in TrackRefs
96ebe67e 155
156 AliMUONTrackParam* fTrackParamAtVertex; //!< Track parameters at vertex
157
7771752e 158 UShort_t fHitsPatternInTrigCh; ///< Word containing info on the hits left in trigger chambers
423b32ca 159
160 Int_t fLocalTrigger; ///< packed local trigger information
de2cd600 161
ea94c18b 162
163 // methods
96ebe67e 164 Bool_t ComputeClusterWeights(TMatrixD& clusterWeightsNB, TMatrixD& clusterWeightsB,
165 TMatrixD* mcsCovariances = 0, AliMUONVCluster* discardedCluster = 0) const;
ea94c18b 166 void ComputeMCSCovariances(TMatrixD& mcsCovariances) const;
167
168
96ebe67e 169 ClassDef(AliMUONTrack, 8) // Reconstructed track in ALICE dimuon spectrometer
de2cd600 170};
a9e2aefa 171
172#endif