CMS 3D CMS Logo

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 StripClusterParameterEstimatorcpe_
 
const GeomDetgeomDet_
 
bool hasNewHits_
 
const SiStripRecHitMatchermatcher_
 
RecHitContainertarget_
 

Detailed Description

Definition at line 72 of file TkGluedMeasurementDet.h.

Member Typedef Documentation

Definition at line 74 of file TkGluedMeasurementDet.h.

Constructor & Destructor Documentation

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

Definition at line 423 of file TkGluedMeasurementDet.cc.

427  : geomDet_(geomDet),
428  matcher_(matcher),
429  cpe_(cpe),
430  target_(target),
431  collector_(boost::bind(&HitCollectorForRecHits::add, boost::ref(*this), _1)),
432  hasNewHits_(false) {}
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 450 of file TkGluedMeasurementDet.cc.

References watchdog::const, TkGluedMeasurementDet::HitCollectorForSimpleHits::cpe_, TkGluedMeasurementDet::HitCollectorForSimpleHits::geomDet_, eostools::move(), and TkGluedMeasurementDet::HitCollectorForSimpleHits::target_.

450  {
451  auto&& vl = projectedPos(hit, *geomDet_, gdir, cpe_);
452  auto&& phit = std::make_shared<ProjectedSiStripRecHit2D>(
453  vl.first, vl.second, *geomDet_, static_cast<SiStripRecHit2D const&>(hit));
454  target_.push_back(std::move(phit));
455 }
const StripClusterParameterEstimator * cpe_
def move(src, dest)
Definition: eostools.py:511
void TkGluedMeasurementDet::HitCollectorForRecHits::clearNewMatchedHitsFlag ( )
inline
SiStripRecHitMatcher::Collector& TkGluedMeasurementDet::HitCollectorForRecHits::collector ( void  )
inline

Definition at line 84 of file TkGluedMeasurementDet.h.

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

Definition at line 90 of file TkGluedMeasurementDet.h.

90  {
91  static const MeasurementEstimator* dummy = nullptr;
92  return *dummy;
93  }
static bool TkGluedMeasurementDet::HitCollectorForRecHits::filter ( )
inlinestatic

Definition at line 87 of file TkGluedMeasurementDet.h.

87 { 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 88 of file TkGluedMeasurementDet.h.

Referenced by ntupleDataFormat._Collection::__iter__(), and ntupleDataFormat._Collection::__len__().

88 { return target_.size(); }

Member Data Documentation

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

Definition at line 100 of file TkGluedMeasurementDet.h.

const StripClusterParameterEstimator* TkGluedMeasurementDet::HitCollectorForRecHits::cpe_
private

Definition at line 98 of file TkGluedMeasurementDet.h.

const GeomDet* TkGluedMeasurementDet::HitCollectorForRecHits::geomDet_
private

Definition at line 96 of file TkGluedMeasurementDet.h.

bool TkGluedMeasurementDet::HitCollectorForRecHits::hasNewHits_
private

Definition at line 101 of file TkGluedMeasurementDet.h.

const SiStripRecHitMatcher* TkGluedMeasurementDet::HitCollectorForRecHits::matcher_
private

Definition at line 97 of file TkGluedMeasurementDet.h.

RecHitContainer& TkGluedMeasurementDet::HitCollectorForRecHits::target_
private

Definition at line 99 of file TkGluedMeasurementDet.h.