CMS 3D CMS Logo

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

Public Types

typedef
SiStripRecHitMatcher::Collector 
Collector
 

Public Member Functions

void add (SiStripMatchedRecHit2D const &hit)
 
void addProjected (const TrackingRecHit &hit, const GlobalVector &gdir)
 
void clearNewMatchedHitsFlag ()
 
SiStripRecHitMatcher::Collectorcollector ()
 
bool hasNewMatchedHits () const
 
 HitCollectorForRecHits (const GeomDet *geomDet, const SiStripRecHitMatcher *matcher, const StripClusterParameterEstimator *cpe, RecHitContainer &target)
 
size_t size () const
 always fast as no estimator available here! More...
 

Static Public Member Functions

static const MeasurementEstimatorestimator ()
 
static bool filter ()
 

Private Attributes

SiStripRecHitMatcher::Collector collector_
 
const
StripClusterParameterEstimator
cpe_
 
const GeomDetgeomDet_
 
bool hasNewHits_
 
const SiStripRecHitMatchermatcher_
 
RecHitContainertarget_
 

Detailed Description

Definition at line 64 of file TkGluedMeasurementDet.h.

Member Typedef Documentation

Definition at line 66 of file TkGluedMeasurementDet.h.

Constructor & Destructor Documentation

TkGluedMeasurementDet::HitCollectorForRecHits::HitCollectorForRecHits ( const GeomDet geomDet,
const SiStripRecHitMatcher matcher,
const StripClusterParameterEstimator cpe,
RecHitContainer target 
)

Definition at line 414 of file TkGluedMeasurementDet.cc.

416  :
417  geomDet_(geomDet), matcher_(matcher), cpe_(cpe),target_(target),
418  collector_(boost::bind(&HitCollectorForRecHits::add,boost::ref(*this),_1)),
419  hasNewHits_(false)
420 {
421 }
const StripClusterParameterEstimator * cpe_
void add(SiStripMatchedRecHit2D const &hit)

Member Function Documentation

void TkGluedMeasurementDet::HitCollectorForRecHits::add ( SiStripMatchedRecHit2D const &  hit)
inline
void TkGluedMeasurementDet::HitCollectorForRecHits::addProjected ( const TrackingRecHit hit,
const GlobalVector gdir 
)

Definition at line 438 of file TkGluedMeasurementDet.cc.

440 {
441  auto && vl = projectedPos(hit,*geomDet_, gdir, cpe_);
442  auto && phit = std::make_shared<ProjectedSiStripRecHit2D> (vl.first,vl.second,*geomDet_, static_cast<SiStripRecHit2D const &>(hit));
443  target_.push_back(std::move(phit));
444 }
const StripClusterParameterEstimator * cpe_
void TkGluedMeasurementDet::HitCollectorForRecHits::clearNewMatchedHitsFlag ( )
inline
SiStripRecHitMatcher::Collector& TkGluedMeasurementDet::HitCollectorForRecHits::collector ( void  )
inline

Definition at line 77 of file TkGluedMeasurementDet.h.

77 { return collector_; }
static const MeasurementEstimator& TkGluedMeasurementDet::HitCollectorForRecHits::estimator ( void  )
inlinestatic

Definition at line 83 of file TkGluedMeasurementDet.h.

83 { static MeasurementEstimator * dummy=0; return *dummy;}
static bool TkGluedMeasurementDet::HitCollectorForRecHits::filter ( )
inlinestatic

Definition at line 80 of file TkGluedMeasurementDet.h.

80 { return false;}
bool TkGluedMeasurementDet::HitCollectorForRecHits::hasNewMatchedHits ( ) const
inline
size_t TkGluedMeasurementDet::HitCollectorForRecHits::size ( void  ) const
inline

always fast as no estimator available here!

Definition at line 81 of file TkGluedMeasurementDet.h.

81 { return target_.size();}

Member Data Documentation

SiStripRecHitMatcher::Collector TkGluedMeasurementDet::HitCollectorForRecHits::collector_
private

Definition at line 90 of file TkGluedMeasurementDet.h.

const StripClusterParameterEstimator* TkGluedMeasurementDet::HitCollectorForRecHits::cpe_
private

Definition at line 88 of file TkGluedMeasurementDet.h.

const GeomDet* TkGluedMeasurementDet::HitCollectorForRecHits::geomDet_
private

Definition at line 86 of file TkGluedMeasurementDet.h.

bool TkGluedMeasurementDet::HitCollectorForRecHits::hasNewHits_
private

Definition at line 91 of file TkGluedMeasurementDet.h.

const SiStripRecHitMatcher* TkGluedMeasurementDet::HitCollectorForRecHits::matcher_
private

Definition at line 87 of file TkGluedMeasurementDet.h.

RecHitContainer& TkGluedMeasurementDet::HitCollectorForRecHits::target_
private

Definition at line 89 of file TkGluedMeasurementDet.h.