CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes
MuonShowerInformationFiller::LessMag Struct Reference

Public Member Functions

 LessMag (const GlobalPoint &point)
 
bool operator() (const GlobalPoint &lhs, const GlobalPoint &rhs) const
 
bool operator() (const MuonTransientTrackingRecHit::MuonRecHitPointer &lhs, const MuonTransientTrackingRecHit::MuonRecHitPointer &rhs) const
 

Public Attributes

GlobalPoint thePoint
 

Detailed Description

Definition at line 111 of file MuonShowerInformationFiller.h.

Constructor & Destructor Documentation

MuonShowerInformationFiller::LessMag::LessMag ( const GlobalPoint point)
inline

Definition at line 112 of file MuonShowerInformationFiller.h.

Member Function Documentation

bool MuonShowerInformationFiller::LessMag::operator() ( const GlobalPoint lhs,
const GlobalPoint rhs 
) const
inline

Definition at line 113 of file MuonShowerInformationFiller.h.

References mag(), and thePoint.

114  {
115  return (lhs - thePoint).mag() < (rhs -thePoint).mag();
116  }
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
bool MuonShowerInformationFiller::LessMag::operator() ( const MuonTransientTrackingRecHit::MuonRecHitPointer lhs,
const MuonTransientTrackingRecHit::MuonRecHitPointer rhs 
) const
inline

Definition at line 117 of file MuonShowerInformationFiller.h.

References mag(), and thePoint.

118  {
119  return (lhs->globalPosition() - thePoint).mag() < (rhs->globalPosition() -thePoint).mag();
120  }
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())

Member Data Documentation

GlobalPoint MuonShowerInformationFiller::LessMag::thePoint

Definition at line 121 of file MuonShowerInformationFiller.h.

Referenced by operator()().