#ifndef ROOT_TreeSearch_Road
#define ROOT_TreeSearch_Road
#include "Hit.h"
#include "Node.h"
#include "TVector2.h"
#include <set>
#include <utility>
#include <vector>
#include <list>
#include <functional>
#include <cassert>
#include <cstring>
class THaTrack;
using std::vector;
namespace TreeSearch {
class Projection;
class BuildInfo_t;
class Road : public TObject {
public:
struct Point {
Point() : x(0), hit(0) {}
Point( Double_t _x, Double_t _z, Hit* _hit )
: x(_x), z(_z), hit(_hit) { assert(hit); }
virtual ~Point() {}
Double_t res() const { return hit->GetResolution(); }
Double_t x;
Double_t z;
Hit* hit;
ClassDef(Point,0)
};
typedef std::vector<Road::Point*> Pvec_t;
typedef std::list<const Node_t*> NodeList_t;
friend class Corners;
class Corners : public TObject {
public:
explicit Corners( Road* rd )
: fXLL(rd->fCornerX[0]), fXLR(rd->fCornerX[1]), fZL(rd->fZL),
fXUL(rd->fCornerX[3]), fXUR(rd->fCornerX[2]), fZU(rd->fZU) {}
Corners() {}
virtual ~Corners() {}
private:
Double_t fXLL;
Double_t fXLR;
Double_t fZL;
Double_t fXUL;
Double_t fXUR;
Double_t fZU;
ClassDef(Corners,0)
};
explicit Road( const Projection* proj );
Road( const Node_t& nd, const Projection* proj );
Road() : fProjection(0), fTrack(0), fBuild(0) {}
Road( const Road& );
Road& operator=( const Road& );
virtual ~Road();
Bool_t Add( const Node_t& nd );
void ClearGrow() { fGrown = false; }
virtual Int_t Compare( const TObject* obj ) const;
void Finish();
Bool_t Fit();
Double_t GetChi2() const { return fChi2; }
const Hset_t& GetHits() const { return fHits; }
const Pvec_t& GetPoints() const { return fFitCoord; }
Double_t GetPos() const { return fPos; }
Double_t GetPos( Double_t z ) const { return fPos + z*fSlope; }
Double_t GetPosErrsq( Double_t z ) const;
const Projection* GetProjection() const { return fProjection; }
Double_t GetSlope() const { return fSlope; }
THaTrack* GetTrack() const { return fTrack; }
Bool_t HasGrown() const { return fGrown; }
Bool_t Include( const Road* other );
TVector2 Intersect( const Road* other, Double_t z ) const;
Bool_t IsGood() const { return fGood; }
Bool_t IsInFrontRange( const NodeDescriptor& nd ) const;
virtual Bool_t IsSortable() const { return kTRUE; }
Bool_t IsVoid() const { return !fGood; }
virtual void Print( Option_t* opt="" ) const;
void SetGrow() { fGrown = true; }
void SetTrack( THaTrack* track ) { fTrack = track; }
void Void() { fGood = false; }
#ifdef VERBOSE
const NodeList_t& GetPatterns() const { return fPatterns; }
#endif
struct PosIsLess
: public std::binary_function< Road*, Road*, bool >
{
bool operator() ( const Road* a, const Road* b ) const
{ return ( a->GetPos() < b->GetPos() ); }
};
class PosIsNear {
public:
PosIsNear( Double_t tolerance ) : fTol(tolerance) {}
bool operator() ( const Road* rd, Double_t pos ) const
{ return ( rd->GetPos() + fTol < pos ); }
bool operator() ( Double_t pos, const Road* rd ) const
{ return ( pos + fTol < rd->GetPos() ); }
private:
Double_t fTol;
};
protected:
NodeList_t fPatterns;
Hset_t fHits;
vector<Pvec_t> fPoints;
Pvec_t fFitCoord;
const Projection* fProjection;
Double_t fCornerX[5];
Double_t fZL;
Double_t fZU;
Double_t fPos;
Double_t fSlope;
Double_t fChi2;
Double_t fV[3];
UInt_t fDof;
Bool_t fGood;
THaTrack* fTrack;
BuildInfo_t* fBuild;
Bool_t fGrown;
#ifdef TESTCODE
UInt_t fNfits;
#endif
Bool_t CheckMatch( const Hset_t& hits ) const;
Bool_t CollectCoordinates();
Bool_t IsInBackRange( const NodeDescriptor& nd ) const;
Bool_t IsInRange( const NodeDescriptor& nd ) const;
private:
void CopyPointData( const Road& orig );
ClassDef(Road,1)
};
inline
Int_t Road::Compare( const TObject* obj ) const
{
assert( obj && IsA() == obj->IsA() );
if( fChi2 < static_cast<const Road*>(obj)->fChi2 ) return -1;
if( fChi2 > static_cast<const Road*>(obj)->fChi2 ) return 1;
return 0;
}
inline
Double_t Road::GetPosErrsq( Double_t z ) const
{
return fV[0] + 2.0*fV[1]*z + fV[2]*z*z;
}
inline
Bool_t Road::IsInRange( const NodeDescriptor& nd ) const
{
return ( IsInFrontRange(nd) and IsInBackRange(nd) );
}
}
#endif