CMS 3D CMS Logo

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

#include <GlobalTrajectoryBuilderBase.h>

Public Member Functions

bool operator() (const TransientTrackingRecHit::ConstRecHitPointer &a, const TransientTrackingRecHit::ConstRecHitPointer &b) const
 

Detailed Description

Definition at line 141 of file GlobalTrajectoryBuilderBase.h.

Member Function Documentation

bool GlobalTrajectoryBuilderBase::ComparatorInOut::operator() ( const TransientTrackingRecHit::ConstRecHitPointer a,
const TransientTrackingRecHit::ConstRecHitPointer b 
) const
inline

Definition at line 143 of file GlobalTrajectoryBuilderBase.h.

References GeomDetEnumerators::DT, and GeomDetEnumerators::RPCBarrel.

144  {
145  bool barrel_a = ( a->det()->subDetector() == GeomDetEnumerators::DT ||
146  a->det()->subDetector() == GeomDetEnumerators::RPCBarrel );
147 
148  bool barrel_b = ( b->det()->subDetector() == GeomDetEnumerators::DT ||
149  b->det()->subDetector() == GeomDetEnumerators::RPCBarrel );
150 
151  if ( barrel_a && barrel_b ) return a->det()->surface().position().perp() < b->det()->surface().position().perp();
152 
153  else if ( !barrel_a && !barrel_b ) return fabs(a->globalPosition().z()) < fabs(b->globalPosition().z());
154  else if ( barrel_a && !barrel_b ) return true;
155  else if ( !barrel_a && barrel_b ) return false;
156  //shouldn;t really get here in any case (there's some sense to throw here )
157  return false;
158  }