]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliTrackResiduals.h
Apply manu mask to motifPositionID
[u/mrichter/AliRoot.git] / STEER / AliTrackResiduals.h
CommitLineData
98937d93 1#ifndef ALITRACKRESIDUALS_H
2#define ALITRACKRESIDUALS_H
3
4//************************************************************************
5// AliTrackResiduals: base class for collecting the track space point *
6// residuals produced by the fast track fitters (AliTrackFitter class). *
7// It provides an interface to the arrays which contain the space points *
8// and track extrapolation points within the detector volume to be *
9// aligned. The derived classes should implement method to analyze the *
10// track residuals and minimize their sum in order to get the *
11// AliAlignObj for the given detector volume. *
12//************************************************************************
13
14#include "TObject.h"
15
46ae650f 16#include "AliAlignObjAngles.h"
17
98937d93 18class AliTrackPointArray;
19
20class AliTrackResiduals : public TObject {
21
22 public:
23
24 AliTrackResiduals();
46ae650f 25 AliTrackResiduals(Int_t ntracks);
98937d93 26 AliTrackResiduals(const AliTrackResiduals &res);
27 AliTrackResiduals& operator= (const AliTrackResiduals& res);
28 virtual ~AliTrackResiduals();
29
30 void SetNTracks(Int_t ntracks);
98937d93 31 Bool_t AddTrackPointArrays(AliTrackPointArray *volarray, AliTrackPointArray *trackarray);
46ae650f 32 void SetAlignObj(AliAlignObj *alignobj);
98937d93 33
34 virtual Bool_t Minimize() = 0;
35
36 Int_t GetNTracks() const { return fN; }
37 Int_t GetNFilledTracks() const { return fLast; }
38 Bool_t GetTrackPointArrays(Int_t i, AliTrackPointArray* &volarray, AliTrackPointArray* &trackarray) const;
39 AliAlignObj *GetAlignObj() const { return fAlignObj; }
46ae650f 40 Float_t GetChi2() const { return fChi2; }
41 Int_t GetNdf() const { return fNdf; }
98937d93 42
43 protected:
44
45 void DeleteTrackPointArrays();
46
47 Int_t fN; // Number of tracks
48 Int_t fLast; // Index of the last filled track arrays
49 AliAlignObj *fAlignObj; // Pointer to the volume alignment object to be fitted
50 AliTrackPointArray **fVolArray; //! Pointers to the arrays containing space points
51 AliTrackPointArray **fTrackArray; //! Pointers to the arrays containing track extrapolation points
46ae650f 52 Float_t fChi2; // Chi2 (or distance) of residuals minimization
53 Int_t fNdf; // Number of degrees of freedom
98937d93 54 Bool_t fIsOwner; // Track point arrays owned by the object
55
56 ClassDef(AliTrackResiduals,1)
57
58};
59
60#endif