CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Protected Member Functions
PFRecHitNavigatorBase Class Referenceabstract

#include <PFRecHitNavigatorBase.h>

Inheritance diagram for PFRecHitNavigatorBase:
HGCRecHitNavigator< D1, hgcee, D2, hgchef, D3, hgcheb > PFECALHashNavigator PFRecHitCaloNavigator< DET, TOPO, ownsTopo > PFRecHitCaloNavigator< CaloTowerDetId, CaloTowerTopology > PFRecHitCaloNavigator< EBDetId, EcalBarrelTopology > PFRecHitCaloNavigator< EEDetId, EcalEndcapTopology > PFRecHitCaloNavigator< ESDetId, EcalPreshowerTopology > PFRecHitCaloNavigator< HcalDetId, HcalTopology, false > PFRecHitCaloNavigatorWithTime< D, T, ownsTopo > PFRecHitCaloNavigatorWithTime< EBDetId, EcalBarrelTopology > PFRecHitCaloNavigatorWithTime< EEDetId, EcalEndcapTopology > PFRecHitCaloNavigatorWithTime< HcalDetId, HcalTopology, false > PFRecHitDualNavigator< D1, barrel, D2, endcap > PFRecHitFakeNavigator< DET > PFRecHitFakeNavigator< HGCalDetId > PFRecHitFakeNavigator< HGCEEDetId > PFRecHitFakeNavigator< HGCHEDetId >

Public Types

typedef std::unordered_map< unsigned, unsigned > DetIdToHitIdx
 

Public Member Functions

virtual void associateNeighbours (reco::PFRecHit &, std::unique_ptr< reco::PFRecHitCollection > &, edm::RefProd< reco::PFRecHitCollection > &)=0
 
virtual void beginEvent (const edm::EventSetup &)=0
 
 PFRecHitNavigatorBase ()=default
 
 PFRecHitNavigatorBase (const edm::ParameterSet &iConfig)
 
virtual ~PFRecHitNavigatorBase ()=default
 

Protected Member Functions

void associateNeighbour (const DetId &id, reco::PFRecHit &hit, std::unique_ptr< reco::PFRecHitCollection > &hits, edm::RefProd< reco::PFRecHitCollection > &refProd, short eta, short phi, short depth)
 

Detailed Description

Definition at line 26 of file PFRecHitNavigatorBase.h.

Member Typedef Documentation

typedef std::unordered_map<unsigned,unsigned> PFRecHitNavigatorBase::DetIdToHitIdx

Definition at line 28 of file PFRecHitNavigatorBase.h.

Constructor & Destructor Documentation

PFRecHitNavigatorBase::PFRecHitNavigatorBase ( )
default
PFRecHitNavigatorBase::PFRecHitNavigatorBase ( const edm::ParameterSet iConfig)
inline

Definition at line 31 of file PFRecHitNavigatorBase.h.

References associateNeighbours(), beginEvent(), and ~PFRecHitNavigatorBase().

31 {}
virtual PFRecHitNavigatorBase::~PFRecHitNavigatorBase ( )
virtualdefault

Referenced by PFRecHitNavigatorBase().

Member Function Documentation

void PFRecHitNavigatorBase::associateNeighbour ( const DetId id,
reco::PFRecHit hit,
std::unique_ptr< reco::PFRecHitCollection > &  hits,
edm::RefProd< reco::PFRecHitCollection > &  refProd,
short  eta,
short  phi,
short  depth 
)
inlineprotected

Definition at line 41 of file PFRecHitNavigatorBase.h.

References a, reco::PFRecHit::addNeighbour(), and triggerObjects_cff::id.

Referenced by PFRecHitCaloNavigator< CaloTowerDetId, CaloTowerTopology >::associateNeighbours(), and PFECALHashNavigator::associateNeighbours().

41  {
42  auto found_hit = std::lower_bound(hits->begin(),hits->end(),
43  id,
44  [](const reco::PFRecHit& a,
45  const DetId& id){
46  return a.detId() < id;
47  });
48  if( found_hit != hits->end() && found_hit->detId() == id.rawId() ) {
49  hit.addNeighbour(eta,phi,depth,found_hit-hits->begin());
50  }
51  }
void addNeighbour(short x, short y, short z, unsigned int)
Definition: PFRecHit.cc:5
Particle flow rechit (rechit + geometry and topology information). See clustering algorithm in PFClus...
Definition: PFRecHit.h:31
Definition: DetId.h:18
double a
Definition: hdecay.h:121
virtual void PFRecHitNavigatorBase::associateNeighbours ( reco::PFRecHit ,
std::unique_ptr< reco::PFRecHitCollection > &  ,
edm::RefProd< reco::PFRecHitCollection > &   
)
pure virtual
virtual void PFRecHitNavigatorBase::beginEvent ( const edm::EventSetup )
pure virtual