CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups 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 119 of file MuonShowerInformationFiller.h.

Constructor & Destructor Documentation

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

Definition at line 120 of file MuonShowerInformationFiller.h.

Member Function Documentation

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

Definition at line 121 of file MuonShowerInformationFiller.h.

References mag(), and thePoint.

121  {
122  return (lhs - thePoint).mag() < (rhs - thePoint).mag();
123  }
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 124 of file MuonShowerInformationFiller.h.

References mag(), and thePoint.

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

Member Data Documentation

GlobalPoint MuonShowerInformationFiller::LessMag::thePoint

Definition at line 128 of file MuonShowerInformationFiller.h.

Referenced by operator()().