test
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 | Private Attributes
TkGluedMeasurementDet::HitCollectorForFastMeasurements Class Reference

Public Types

typedef
SiStripRecHitMatcher::Collector 
Collector
 
typedef
TransientTrackingRecHit::RecHitPointer 
RecHitPointer
 

Public Member Functions

void add (SiStripMatchedRecHit2D const &hit)
 
void addProjected (const TrackingRecHit &hit, const GlobalVector &gdir)
 
void clearNewMatchedHitsFlag ()
 
SiStripRecHitMatcher::Collectorcollector ()
 
const MeasurementEstimatorestimator ()
 
bool filter () const
 
bool hasNewMatchedHits () const
 
 HitCollectorForFastMeasurements (const GeomDet *geomDet, const SiStripRecHitMatcher *matcher, const StripClusterParameterEstimator *cpe, const TrajectoryStateOnSurface &stateOnThisDet, const MeasurementEstimator &est, TempMeasurements &target)
 
size_t size () const
 

Private Attributes

SiStripRecHitMatcher::Collector collector_
 
const
StripClusterParameterEstimator
cpe_
 
const MeasurementEstimatorest_
 
const GeomDetgeomDet_
 
bool hasNewHits_
 
const SiStripRecHitMatchermatcher_
 
const TrajectoryStateOnSurfacestateOnThisDet_
 
TempMeasurementstarget_
 

Detailed Description

Definition at line 129 of file TkGluedMeasurementDet.h.

Member Typedef Documentation

Definition at line 132 of file TkGluedMeasurementDet.h.

Definition at line 131 of file TkGluedMeasurementDet.h.

Constructor & Destructor Documentation

TkGluedMeasurementDet::HitCollectorForFastMeasurements::HitCollectorForFastMeasurements ( const GeomDet geomDet,
const SiStripRecHitMatcher matcher,
const StripClusterParameterEstimator cpe,
const TrajectoryStateOnSurface stateOnThisDet,
const MeasurementEstimator est,
TempMeasurements target 
)

Definition at line 514 of file TkGluedMeasurementDet.cc.

518  :
519  geomDet_(geomDet), matcher_(matcher), cpe_(cpe),stateOnThisDet_(stateOnThisDet), est_(est), target_(target),
520  collector_(boost::bind(&HitCollectorForFastMeasurements::add,boost::ref(*this),_1)),
521  hasNewHits_(false)
522 {
523 }

Member Function Documentation

void TkGluedMeasurementDet::HitCollectorForFastMeasurements::add ( SiStripMatchedRecHit2D const &  hit)

Definition at line 527 of file TkGluedMeasurementDet.cc.

References SiStripMatchedRecHit2D::cloneSH(), TrackingRecHit::geographicalId(), SiStripMatchedRecHit2D::monoCluster(), eostools::move(), and SiStripMatchedRecHit2D::stereoCluster().

Referenced by counter.Counter::register().

528 {
529  hasNewHits_ = true; //FIXME: see also what happens moving this within testAndPush // consistent with previous code...
530  if ( !est_.preFilter(stateOnThisDet_, ClusterFilterPayload(hit2d.geographicalId(), &hit2d.monoCluster(), &hit2d.stereoCluster()) ) ) return;
531  hasNewHits_ = true; //FIXME: see also what happens moving this within testAndPush
532 
533  std::pair<bool,double> diffEst = est_.estimate( stateOnThisDet_, hit2d);
534  if (diffEst.first)
535  target_.add(std::move(hit2d.cloneSH()),diffEst.second);
536 }
virtual bool preFilter(const TrajectoryStateOnSurface &, OpaquePayload const &) const
void add(ConstRecHitPointer const &h, float d)
def move
Definition: eostools.py:510
virtual HitReturnType estimate(const TrajectoryStateOnSurface &ts, const TrackingRecHit &hit) const =0
void TkGluedMeasurementDet::HitCollectorForFastMeasurements::addProjected ( const TrackingRecHit hit,
const GlobalVector gdir 
)

Definition at line 540 of file TkGluedMeasurementDet.cc.

References compareJSON::const, and TrackingRecHit::geographicalId().

542 {
543  auto const & thit = reinterpret_cast<TrackerSingleRecHit const&>(hit);
544  if ( !est_.preFilter(stateOnThisDet_, ClusterFilterPayload(hit.geographicalId(), &thit.stripCluster()) ) ) return;
545 
546 
547  // here we're ok with some extra casual new's and delete's
548  auto && vl = projectedPos(hit,*geomDet_, gdir, cpe_);
549  auto && phit = std::make_shared<ProjectedSiStripRecHit2D> (vl.first,vl.second,*geomDet_, static_cast<SiStripRecHit2D const &>(hit));
550 
551  std::pair<bool,double> diffEst = est_.estimate( stateOnThisDet_, *phit);
552  if ( diffEst.first) {
553  target_.add(phit, diffEst.second);
554  }
555 }
virtual bool preFilter(const TrajectoryStateOnSurface &, OpaquePayload const &) const
void add(ConstRecHitPointer const &h, float d)
virtual HitReturnType estimate(const TrajectoryStateOnSurface &ts, const TrackingRecHit &hit) const =0
string const
Definition: compareJSON.py:14
DetId geographicalId() const
void TkGluedMeasurementDet::HitCollectorForFastMeasurements::clearNewMatchedHitsFlag ( )
inline
SiStripRecHitMatcher::Collector& TkGluedMeasurementDet::HitCollectorForFastMeasurements::collector ( void  )
inline

Definition at line 144 of file TkGluedMeasurementDet.h.

144 { return collector_; }
const MeasurementEstimator& TkGluedMeasurementDet::HitCollectorForFastMeasurements::estimator ( void  )
inline

Definition at line 149 of file TkGluedMeasurementDet.h.

149 { return est_;}
bool TkGluedMeasurementDet::HitCollectorForFastMeasurements::filter ( ) const
inline

Definition at line 147 of file TkGluedMeasurementDet.h.

147 { return matcher_->preFilter();} // if true mono-colection will been filter using the estimator before matching
bool TkGluedMeasurementDet::HitCollectorForFastMeasurements::hasNewMatchedHits ( ) const
inline
size_t TkGluedMeasurementDet::HitCollectorForFastMeasurements::size ( void  ) const
inline

Definition at line 148 of file TkGluedMeasurementDet.h.

Member Data Documentation

SiStripRecHitMatcher::Collector TkGluedMeasurementDet::HitCollectorForFastMeasurements::collector_
private

Definition at line 157 of file TkGluedMeasurementDet.h.

const StripClusterParameterEstimator* TkGluedMeasurementDet::HitCollectorForFastMeasurements::cpe_
private

Definition at line 153 of file TkGluedMeasurementDet.h.

const MeasurementEstimator& TkGluedMeasurementDet::HitCollectorForFastMeasurements::est_
private

Definition at line 155 of file TkGluedMeasurementDet.h.

const GeomDet* TkGluedMeasurementDet::HitCollectorForFastMeasurements::geomDet_
private

Definition at line 151 of file TkGluedMeasurementDet.h.

bool TkGluedMeasurementDet::HitCollectorForFastMeasurements::hasNewHits_
private

Definition at line 158 of file TkGluedMeasurementDet.h.

const SiStripRecHitMatcher* TkGluedMeasurementDet::HitCollectorForFastMeasurements::matcher_
private

Definition at line 152 of file TkGluedMeasurementDet.h.

const TrajectoryStateOnSurface& TkGluedMeasurementDet::HitCollectorForFastMeasurements::stateOnThisDet_
private

Definition at line 154 of file TkGluedMeasurementDet.h.

TempMeasurements& TkGluedMeasurementDet::HitCollectorForFastMeasurements::target_
private

Definition at line 156 of file TkGluedMeasurementDet.h.