22 _selector.nSuperLayers(2);
23 _selector.minPt(0.05);
24 _selector.maxImpact(100.);
25 _selector.maxSigma(30.);
26 _selector.nLinksStereo(3);
27 _selector.maxDistance(30.);
28 _builder.trackSelector(_selector);
47 _axialHits.removeAll();
48 _stereoHits.removeAll();
49 HepAListDeleteAll(_axialLinks);
50 HepAListDeleteAll(_stereoLinks);
59 selectHits2(axialHits, stereoHits);
71 hist.
fillX(_axialLinks);
75 unsigned n = clusters.length();
76 for (
unsigned i = 0; i <
n; i++) {
79 TTrack *
t = _builder.buildRphi(clusters[i]->links());
80 if (
t ==
NULL)
continue;
81#ifdef TRKRECO_DEBUG_DETAIL
82 std::cout <<
"TFastFinder::doit ... 2D track found" << std::endl;
87 ts = _builder.buildStereo(*
t,
88 findCloseHits(_stereoLinks,
90 if (ts ==
NULL)
continue;
91#ifdef TRKRECO_DEBUG_DETAIL
92 std::cout <<
"TFastFinder::doit ... 3D track found" << std::endl;
100 _stereoLinks.remove(
t->links());
104 HepAListDeleteAll(clusters);
111 unsigned n = axialHits.length();
112 for (
unsigned i = 0; i <
n; i++) {
117 n = stereoHits.length();
118 for (
unsigned i = 0; i <
n; i++) {
119 const TMDCWireHit & h = * stereoHits[i];
121 _stereoHits.append((TMDCWireHit &) h);
128 selectSimpleSegments(axialHits, _axialHits);
129 selectSimpleSegments(stereoHits, _stereoHits);
134 const TTrack & track)
const {
141 if (track.
links().length() == 0) {
142#ifdef TRKRECO_DEBUG_DETAIL
143 std::cout <<
"TConformalFinder::findCloseHits !!! ";
144 std::cout <<
" no links found in a track : This should not be happened";
145 std::cout << std::endl;
153 float dRcut[11] = {0., 4.3, 0., 6.5, 0., 7.5, 0., 8.0, 0., 9.5, 0.};
157 double xInnerWire = track.
links()[0]->wire()->xyPosition().x();
158 double yInnerWire = track.
links()[0]->wire()->xyPosition().y();
159 unsigned nall = links.length();
160 for (
unsigned j = 0; j < nall; j++) {
161 TMLink &
t = * links[j];
162 const TMDCWire &
w = *
t.wire();
164 double Rmag2 = X.mag2();
165 double DR = fabs(sqrt(Rmag2) - fabs(R0));
168 if (DR < dRcut[
w.superLayerId()] &&
169 (xInnerWire*
w.xyPosition().x()+yInnerWire*
w.xyPosition().y())>0.){
180 AList<TMDCWireHit> hits = in;
181 while (hits.last()) {
182 TMDCWireHit & h = * hits.last();
186 AList<TMDCWireHit> cluster;
187 AList<TMDCWireHit> toBeChecked;
189 toBeChecked.append(h);
190 while (toBeChecked.length()) {
191 TMDCWireHit & a = * toBeChecked.last();
192 toBeChecked.remove(a);
193 if (cluster.hasMember(a))
continue;
196 unsigned state = a.
state();
205 for (
unsigned i = 0; i < 6; i++) {
206 if ((ptn >> i) % 2) {
208 toBeChecked.append((TMDCWireHit &)
b);
214 if ((cluster.length() < 4) || (cluster.length() > 8)) ok =
false;
217 if (ok) out.append(cluster);
220 hits.remove(cluster);
223#ifdef TRKRECO_DEBUG_DETAIL
224 std::cout <<
"TFastFinder::selectSimpleSegment ... cluster : ok = ";
225 std::cout << ok <<
" : ";
227 for (
unsigned i = 0; i < cluster.length(); i++) {
228 TMDCWireHit & h = * cluster[i];
229#ifdef TRKRECO_DEBUG_DETAIL
230 std::cout << h.
wire()->
name() <<
",";
233 unsigned state = h.
state();
239#ifdef TRKRECO_DEBUG_DETAIL
240 std::cout << std::endl;
HepGeom::Vector3D< double > HepVector3D
const HepPoint3D ORIGIN
Constants.
#define WireHitFastFinder
#define WireHitContinuous
#define WireHitNeighborPattern
const HepPoint3D & center(void) const
returns position of helix center(z = 0.);
std::string version(void) const
returns version.
void dump(const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
dumps debug information.
void clear(void)
clear internal information.
int doit(const AList< TMDCWireHit > &axialHits, const AList< TMDCWireHit > &stereoHits, AList< TTrack > &tracks)
finds tracks.
virtual ~TFastFinder()
Destructor.
TFastFinder()
Constructor.
virtual void dump(const std::string &message=std::string(""), const std::string &prefix=std::string("")) const
dumps debug information.
A class for a histogram used in tracking.
AList< TSegment0 > clusters0(void) const
returns an AList<TSegment0> of clusters.
void fillX(const AList< TMLink > &links)
fills with hits.
unsigned state(void) const
returns state.
const TMDCWire *const wire(void) const
returns a pointer to a TMDCWire.
const TMDCWireHit *const hit(void) const
returns a pointer to a TMDCWireHit.
const TMDCWire *const neighbor(unsigned) const
returns a pointer to a neighbor wire.
std::string name(void) const
returns name.
const AList< TMLink > & links(unsigned mask=0) const
returns a list of masked TMLinks assigned to this track. 'mask' will be applied if mask is not 0.
A class to represent a track in tracking.
const Helix & helix(void) const
returns helix parameter.