X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=MUON%2FAliMUONSegment.h;h=b17122684d5f7066a44937810d0da331c9c3ce94;hb=36d042d445f76ec3fe68f389d496dcdd5347e7c8;hp=4e987f95b9175a7cb66729b3ce84b22000208cdc;hpb=0b936dc01b2ff324e3256c1b5c63dd67f372e976;p=u%2Fmrichter%2FAliRoot.git diff --git a/MUON/AliMUONSegment.h b/MUON/AliMUONSegment.h index 4e987f95b91..b17122684d5 100644 --- a/MUON/AliMUONSegment.h +++ b/MUON/AliMUONSegment.h @@ -21,6 +21,7 @@ class AliMUONSegment : public TObject public: AliMUONSegment(); AliMUONSegment(Double_t xstart, Double_t ystart, Double_t xend, Double_t yend); + /// dtor virtual ~AliMUONSegment() {} virtual Int_t Compare(const TObject* obj) const; @@ -71,18 +72,18 @@ public: void Set(Double_t xstart, Double_t ystart, Double_t xend, Double_t yend); private: - Double_t fStartX; /// x of start point - Double_t fStartY; /// y of start point - Double_t fEndX; /// x of end point - Double_t fEndY; /// y of end point - Double_t fSmallerY; /// Either StartY or EndY - Bool_t fIsHorizontal; /// Whether the segment is horizontal - Bool_t fIsVertical; /// Whether the segment is vertical - Bool_t fIsLeftEdge; /// Whether the segment is a left edge - Bool_t fIsRightEdge; /// Whether the segment is a right edge - Bool_t fIsAPoint; /// Whether start==end + Double_t fStartX; ///< x of start point + Double_t fStartY; ///< y of start point + Double_t fEndX; ///< x of end point + Double_t fEndY; ///< y of end point + Double_t fSmallerY; ///< Either StartY or EndY + Bool_t fIsHorizontal; ///< Whether the segment is horizontal + Bool_t fIsVertical; ///< Whether the segment is vertical + Bool_t fIsLeftEdge; ///< Whether the segment is a left edge + Bool_t fIsRightEdge; ///< Whether the segment is a right edge + Bool_t fIsAPoint; ///< Whether start==end - static const Double_t fgkPrecision; /// Floating point precision used in comparisons + static const Double_t fgkPrecision; ///< Floating point precision used in comparisons ClassDef(AliMUONSegment,1) // A basic line segment };