]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCConfMapper.h
adding AliHLTAltroGenerator including unit test for simulation of Altro data and...
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCConfMapper.h
CommitLineData
a6c02c85 1// @(#) $Id$
4aa41877 2// Original: AliHLTConfMapper.h,v 1.11 2004/07/05 09:03:11 loizides
a6c02c85 3
4#ifndef ALIHLTTPCCONFMAPPER_H
5#define ALIHLTTPCCONFMAPPER_H
d6e2c707 6//* This file is property of and copyright by the ALICE HLT Project *
7//* ALICE Experiment at CERN, All rights reserved. *
8//* See cxx source for full Copyright notice *
a6c02c85 9
2b4385d9 10/** @file AliHLTTPCConfMapper.h
d6e2c707 11 @author Anders Vestbo, Matthias Richter
12 @date Conformal mapping base class.
13 @brief
14*/
a6c02c85 15
055fed30 16#include <vector>
a6c02c85 17
18class AliHLTTPCConfMapPoint;
19class AliHLTTPCConfMapTrack;
20class AliHLTTPCVertex;
21class AliHLTTPCTrackArray;
22class AliHLTTPCSpacePointData;
23
24
d6e2c707 25/**
26 * @class AliHLTTPCConfMapper
27 * Conformal mapping base class.
28 */
a6c02c85 29class AliHLTTPCConfMapper {
30
31 public:
32
33 AliHLTTPCConfMapper();
34 // AliHLTTPCConfMapper(AliTPCParam *param,AliHLTTPCVertex *vertex,Bool_t bench=(Bool_t)false);
2a083ac4 35 /** destructor */
a6c02c85 36 virtual ~AliHLTTPCConfMapper();
37
055fed30 38 /**
39 * Init and calculate bounds for the internal arrays.
40 */
a6c02c85 41 void InitVolumes();
055fed30 42
43 /**
44 * Reset internal arrays and free memory.
45 */
46 void Reset();
47
a6c02c85 48 void InitSector(Int_t sector,Int_t *rowrange=0,Float_t *etarange=0);
49 void SetVertex(AliHLTTPCVertex *vertex){fVertex = vertex;}
2a083ac4 50 void MainVertexTrackingA();
51 void MainVertexTrackingB();
a6c02c85 52 void MainVertexTracking();
53 void NonVertexTracking();
54 void MainVertexSettings(Int_t trackletlength, Int_t tracklength,
55 Int_t rowscopetracklet, Int_t rowscopetrack,Double_t maxphi=0.1,Double_t maxeta=0.1);
56 void NonVertexSettings(Int_t trackletlength, Int_t tracklength,
57 Int_t rowscopetracklet, Int_t rowscopetrack);
055fed30 58
59 /**
60 * Read an array of space point data.
61 * @param count array size
62 * @param hits array
63 * @return kTRUE if success.
64 */
a6c02c85 65 Bool_t ReadHits(UInt_t count, AliHLTTPCSpacePointData* hits );
66 void ClusterLoop();
67 void CreateTrack(AliHLTTPCConfMapPoint *hit);
68 AliHLTTPCConfMapPoint *GetNextNeighbor(AliHLTTPCConfMapPoint *start_hit,AliHLTTPCConfMapTrack *track=NULL);
69 Int_t EvaluateHit(AliHLTTPCConfMapPoint *start_hit,AliHLTTPCConfMapPoint *hit,AliHLTTPCConfMapTrack *track);
70
71 Double_t CalcDistance(const AliHLTTPCConfMapPoint *hit1,const AliHLTTPCConfMapPoint *hit2) const;
72 Double_t TrackletAngle(AliHLTTPCConfMapTrack *track,Int_t n=3) const;
73 Bool_t VerifyRange(const AliHLTTPCConfMapPoint *hit1,const AliHLTTPCConfMapPoint *hit2) const;
74 Int_t FillTracks();
75
76 //getters
77 Int_t GetNumberOfTracks() const {return fNTracks;}
78 AliHLTTPCTrackArray *GetTracks() const {return fTrack;}
79 Double_t GetMaxDca() const {return fMaxDca;}
80 AliHLTTPCVertex* GetVertex() const {return fVertex;}
81 Double_t CpuTime();
82
83 //setters
84 void SetTrackCuts(Double_t hitChi2Cut, Double_t goodHitChi2, Double_t trackChi2Cut, Int_t maxdist,Bool_t vertexconstraint);
85 void SetTrackletCuts(Double_t maxangle,Double_t goodDist,Bool_t vc); //Set cut of tracklet for the given vertex_constraint
86 void SetNSegments(Int_t f,Int_t g) {fNumPhiSegment=f,fNumEtaSegment=g;} //Set number of subvolumes (#segments in (phi,eta)
87 void SetMaxDca(Double_t f) {fMaxDca = f;}
88
89 //setter:
90 void SetMinPoints(Int_t f,Bool_t vconstraint) {fMinPoints[(Int_t)vconstraint] = f; }
91 void SetVertexConstraint(Bool_t f) {fVertexConstraint =f;}
92
93 void SetHitChi2Cut(Double_t f,Bool_t vert) {fHitChi2Cut[(Int_t)vert]=f;}
94 void SetGoodHitChi2(Double_t f,Bool_t vert) {fGoodHitChi2[(Int_t)vert]=f;}
95 void SetTrackChi2Cut(Double_t f,Bool_t vert) {fTrackChi2Cut[(Int_t)vert]=f;}
96 void SetMaxDist(Int_t f,Bool_t vert) {fMaxDist[(Int_t)vert]=f;}
97 void SetTrackletLength(Int_t f,Bool_t vert) {fTrackletLength[(Int_t)vert]=f;}
98 void SetRowScopeTrack(Int_t f, Bool_t vc){fRowScopeTrack[(Int_t)vc] = f;}
99 void SetRowScopeTracklet(Int_t f, Bool_t vc){fRowScopeTracklet[(Int_t)vc] = f;}
100 void SetMaxAngleTracklet(Double_t f, Bool_t vc){fMaxAngleTracklet[(Int_t)vc] = f;}
101
102 void SetPointers();
103 void SetParamDone(Bool_t vconstraint) {fParamSet[(Int_t)vconstraint] = kTRUE;}
104
105 private:
8f8bf0af 106 /** copy constructor prohibited */
107 AliHLTTPCConfMapper(const AliHLTTPCConfMapper&);
108 /** assignment operator prohibited */
109 AliHLTTPCConfMapper& operator=(const AliHLTTPCConfMapper&);
a6c02c85 110
111 struct AliHLTTPCConfMapContainer
112 {
113 void *first; // first track
114 void *last; // last track
115 };
116
117 Bool_t fBench; //run-time measurements
118 Int_t fNTracks; //number of tracks build.
119
120 AliHLTTPCVertex *fVertex; //!
121 Bool_t fParamSet[2]; //!
122 Bool_t fVertexFinder; //Include vertexfinding or not
123 //(latter case vertex=(0,0,0))
124
055fed30 125 /** the list of hits */
126 vector<AliHLTTPCConfMapPoint> fHit; //!
a6c02c85 127 AliHLTTPCTrackArray *fTrack; //!
128 Double_t fMaxDca; //cut value for momentum fit
129
130 AliHLTTPCConfMapContainer *fVolume; //! Segment volume
131 AliHLTTPCConfMapContainer *fRow; //! Row volume
132
133 //Number of cells (segments)
134 Int_t fNumRowSegment; // Total number of padrows
135 Int_t fNumPhiSegment; // number of phi segments
136 Int_t fNumEtaSegment; // number of eta segments
137 Int_t fNumRowSegmentPlusOne; // row+1
138 Int_t fNumPhiSegmentPlusOne; // phi+1
139 Int_t fNumEtaSegmentPlusOne; // eta+1
140 Int_t fNumPhiEtaSegmentPlusOne;// phieta+1
141 Int_t fBounds; // bounds
142 Int_t fPhiHitsOutOfRange; // phi hits out of range
143 Int_t fEtaHitsOutOfRange; // eta hits out of range
144
145 //tracking range:
146 Float_t fPhiMin; //MinPhi angle to consider
147 Float_t fPhiMax; //MaxPhi angle to consider
148 Float_t fEtaMin; //MinEta to consider
149 Float_t fEtaMax; //MaxEta to consider
150 Int_t fRowMin; //Minimum row to consider
151 Int_t fRowMax; //Maximum row to consider
152
153 Bool_t fVertexConstraint; //vertex constraint (true or false)
154 Int_t fTrackletLength[2]; //minimal length of tracks
155 Int_t fRowScopeTracklet[2]; //number of row segments to look for the next point of a tracklet
156 Int_t fRowScopeTrack[2]; //number of row segments to look for the next point of a track
157 Int_t fMinPoints[2]; //minimum number of points on one track
158
159 // Cuts
160 Double_t fMaxAngleTracklet[2]; //limit of angle between to pieces of a tracklet
161 Int_t fMaxDist[2]; //maximum distance between two hits
162 Double_t fHitChi2Cut[2]; //Maximum hit chi2
163 Double_t fGoodHitChi2[2]; //Chi2 to stop looking for next hit
164 Double_t fTrackChi2Cut[2]; //Maximum track chi2
165 Double_t fGoodDist; //In segment building, distance consider good enough
166 Double_t fMaxPhi; //Maximum phi
167 Double_t fMaxEta; //Maximum eta
168
169 // Tracking informtion
170 Int_t fMainVertexTracks; //number of tracks coming from the main vertex
171 Int_t fClustersUnused; //number of unused clusters
172
173 ClassDef(AliHLTTPCConfMapper,1) //Base class for conformal mapping tracking
174};
175
176#endif