ROOT logo
#ifndef ROOT_TreeSearch_Road
#define ROOT_TreeSearch_Road

///////////////////////////////////////////////////////////////////////////////
//                                                                           //
// 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;    // Defined in implementation

  class Road : public TObject {

  public:
    //_________________________________________________________________________
    // Coordinates of hit positions, for track fitting
    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;    // Selected x coordinates
      Double_t z;    // z coordinate
      Hit*     hit;  // Associated hit (stored in WirePlane)
      ClassDef(Point,0)
    };

    typedef std::vector<Road::Point*>  Pvec_t;
    typedef std::list<const Node_t*>   NodeList_t;

    //_________________________________________________________________________
    // For global variable access/event display
    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() {}  // For ROOT RTTI
      virtual ~Corners() {}
    private:
      Double_t fXLL;  // Lower left corner x coord
      Double_t fXLR;  // Lower right corner x coord
      Double_t fZL;   // Lower edge z coord
      Double_t fXUL;  // Upper left corner x coord
      Double_t fXUR;  // Upper right corner x coord
      Double_t fZU;   // Upper edge z coord
      ClassDef(Corners,0)
    };

    //_________________________________________________________________________
    explicit Road( const Projection* proj );
    Road( const Node_t& nd, const Projection* proj );
    Road() : fProjection(0), fTrack(0), fBuild(0) {} // For internal ROOT use
    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;   // Patterns in this road
    Hset_t         fHits;       // All hits linked to the patterns
    vector<Pvec_t> fPoints;     // All hit coordinates within road [nplanes][]
    Pvec_t         fFitCoord;   // fPoints used in best fit [nplanes]

    const Projection* fProjection; //! Projection that this Road belongs to

    Double_t       fCornerX[5]; // x positions of corners
    Double_t       fZL;         // z-eps of first plane
    Double_t       fZU;         // z+eps of last plane 

    // Best fit results 
    Double_t       fPos;        // Track origin
    Double_t       fSlope;      // Track slope
    Double_t       fChi2;       // Chi2 of fit
    Double_t       fV[3];       // Covar matrix of param (V11, V12=V21, V22)
    UInt_t         fDof;        // Degrees of freedom of fit (nhits-2)

    Bool_t         fGood;       // Road successfully built and fit
    THaTrack*      fTrack;      // The lowest-chi2 3D track using this road

    BuildInfo_t*   fBuild;      //! Working data for building
    Bool_t         fGrown;      //! Add() added hits in front or back plane

#ifdef TESTCODE
    UInt_t         fNfits;      // Statistics: num fits with acceptable chi2
#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)  // Region containing track candidate hits and fit results
  };

  //___________________________________________________________________________
  inline
  Int_t Road::Compare( const TObject* obj ) const 
  {
    // Used for sorting Roads in a TClonesArray or similar.
    // A Road is "less than" another if the chi2 of its best fit is smaller.
    // Returns -1 if this is smaller than rhs, 0 if equal, +1 if greater.

    // Require identical classes of objects
    assert( obj && IsA() == obj->IsA() );

    //TODO: take fDof into account & compare statistical significance
    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 square of uncertainty in x = a1+z2*z for best fit (in m^2)
    
    return fV[0] + 2.0*fV[1]*z + fV[2]*z*z;
  }

  //---------------------------------------------------------------------------
  inline
  Bool_t Road::IsInRange( const NodeDescriptor& nd ) const
  {
    // Test if given pattern is within the allowed maximum distance from the
    // current front and back bin ranges of the cluster

    return ( IsInFrontRange(nd) and IsInBackRange(nd) );
  }

///////////////////////////////////////////////////////////////////////////////

} // end namespace TreeSearch


#endif
 Road.h:1
 Road.h:2
 Road.h:3
 Road.h:4
 Road.h:5
 Road.h:6
 Road.h:7
 Road.h:8
 Road.h:9
 Road.h:10
 Road.h:11
 Road.h:12
 Road.h:13
 Road.h:14
 Road.h:15
 Road.h:16
 Road.h:17
 Road.h:18
 Road.h:19
 Road.h:20
 Road.h:21
 Road.h:22
 Road.h:23
 Road.h:24
 Road.h:25
 Road.h:26
 Road.h:27
 Road.h:28
 Road.h:29
 Road.h:30
 Road.h:31
 Road.h:32
 Road.h:33
 Road.h:34
 Road.h:35
 Road.h:36
 Road.h:37
 Road.h:38
 Road.h:39
 Road.h:40
 Road.h:41
 Road.h:42
 Road.h:43
 Road.h:44
 Road.h:45
 Road.h:46
 Road.h:47
 Road.h:48
 Road.h:49
 Road.h:50
 Road.h:51
 Road.h:52
 Road.h:53
 Road.h:54
 Road.h:55
 Road.h:56
 Road.h:57
 Road.h:58
 Road.h:59
 Road.h:60
 Road.h:61
 Road.h:62
 Road.h:63
 Road.h:64
 Road.h:65
 Road.h:66
 Road.h:67
 Road.h:68
 Road.h:69
 Road.h:70
 Road.h:71
 Road.h:72
 Road.h:73
 Road.h:74
 Road.h:75
 Road.h:76
 Road.h:77
 Road.h:78
 Road.h:79
 Road.h:80
 Road.h:81
 Road.h:82
 Road.h:83
 Road.h:84
 Road.h:85
 Road.h:86
 Road.h:87
 Road.h:88
 Road.h:89
 Road.h:90
 Road.h:91
 Road.h:92
 Road.h:93
 Road.h:94
 Road.h:95
 Road.h:96
 Road.h:97
 Road.h:98
 Road.h:99
 Road.h:100
 Road.h:101
 Road.h:102
 Road.h:103
 Road.h:104
 Road.h:105
 Road.h:106
 Road.h:107
 Road.h:108
 Road.h:109
 Road.h:110
 Road.h:111
 Road.h:112
 Road.h:113
 Road.h:114
 Road.h:115
 Road.h:116
 Road.h:117
 Road.h:118
 Road.h:119
 Road.h:120
 Road.h:121
 Road.h:122
 Road.h:123
 Road.h:124
 Road.h:125
 Road.h:126
 Road.h:127
 Road.h:128
 Road.h:129
 Road.h:130
 Road.h:131
 Road.h:132
 Road.h:133
 Road.h:134
 Road.h:135
 Road.h:136
 Road.h:137
 Road.h:138
 Road.h:139
 Road.h:140
 Road.h:141
 Road.h:142
 Road.h:143
 Road.h:144
 Road.h:145
 Road.h:146
 Road.h:147
 Road.h:148
 Road.h:149
 Road.h:150
 Road.h:151
 Road.h:152
 Road.h:153
 Road.h:154
 Road.h:155
 Road.h:156
 Road.h:157
 Road.h:158
 Road.h:159
 Road.h:160
 Road.h:161
 Road.h:162
 Road.h:163
 Road.h:164
 Road.h:165
 Road.h:166
 Road.h:167
 Road.h:168
 Road.h:169
 Road.h:170
 Road.h:171
 Road.h:172
 Road.h:173
 Road.h:174
 Road.h:175
 Road.h:176
 Road.h:177
 Road.h:178
 Road.h:179
 Road.h:180
 Road.h:181
 Road.h:182
 Road.h:183
 Road.h:184
 Road.h:185
 Road.h:186
 Road.h:187
 Road.h:188
 Road.h:189
 Road.h:190
 Road.h:191
 Road.h:192
 Road.h:193
 Road.h:194
 Road.h:195
 Road.h:196
 Road.h:197
 Road.h:198
 Road.h:199
 Road.h:200
 Road.h:201
 Road.h:202
 Road.h:203
 Road.h:204
 Road.h:205
 Road.h:206
 Road.h:207
 Road.h:208
 Road.h:209