CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Types | Private Attributes
RecHitLessByDet Class Reference

#include <RecHitLessByDet.h>

Public Member Functions

bool operator() (const RecHitPointer &aHit, const RecHitPointer &bHit) const
 
 RecHitLessByDet (const PropagationDirection &dir)
 
 ~RecHitLessByDet ()
 

Private Types

typedef
TransientTrackingRecHit::ConstRecHitPointer 
RecHitPointer
 

Private Attributes

PropagationDirection theDirection
 

Detailed Description

A comparison operator for RecHits. Returns true if the hits are in the order in which they would be seen by an outgoing (or an incoming) track. Only meaningful for RecHits from the same trajectory. Ported from ORCA

Date:
2007/07/18 22:16:06
Revision:
1.7
Author
todorov, cerati

Definition at line 18 of file RecHitLessByDet.h.

Member Typedef Documentation

Definition at line 20 of file RecHitLessByDet.h.

Constructor & Destructor Documentation

RecHitLessByDet::RecHitLessByDet ( const PropagationDirection dir)
inline

Definition at line 23 of file RecHitLessByDet.h.

23  :
24  theDirection(dir) {}
PropagationDirection theDirection
dbl *** dir
Definition: mlp_gen.cc:35
RecHitLessByDet::~RecHitLessByDet ( )
inline

Definition at line 26 of file RecHitLessByDet.h.

26 {}

Member Function Documentation

bool RecHitLessByDet::operator() ( const RecHitPointer aHit,
const RecHitPointer bHit 
) const
inline

Definition at line 28 of file RecHitLessByDet.h.

References alongMomentum, mag(), and theDirection.

28  {
29 
30  return (theDirection == alongMomentum ?
31  (aHit->surface()->toGlobal(aHit->localPosition()).mag() <
32  bHit->surface()->toGlobal(bHit->localPosition()).mag() ) :
33  (aHit->surface()->toGlobal(aHit->localPosition()).mag() >
34  bHit->surface()->toGlobal(bHit->localPosition()).mag()) );
35  }
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
PropagationDirection theDirection

Member Data Documentation

PropagationDirection RecHitLessByDet::theDirection
private

Definition at line 39 of file RecHitLessByDet.h.

Referenced by operator()().