CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
GSFAndHCALLinker Class Reference
Inheritance diagram for GSFAndHCALLinker:
BlockElementLinkerBase

Public Member Functions

 GSFAndHCALLinker (const edm::ParameterSet &conf)
 
double testLink (const reco::PFBlockElement *, const reco::PFBlockElement *) const override
 
- Public Member Functions inherited from BlockElementLinkerBase
 BlockElementLinkerBase (const BlockElementLinkerBase &)=delete
 
 BlockElementLinkerBase (const edm::ParameterSet &conf)
 
virtual bool linkPrefilter (const reco::PFBlockElement *, const reco::PFBlockElement *) const
 
const std::string & name () const
 
BlockElementLinkerBaseoperator= (const BlockElementLinkerBase &)=delete
 
virtual ~BlockElementLinkerBase ()=default
 

Private Attributes

bool debug_
 
bool useKDTree_
 

Detailed Description

Definition at line 7 of file GSFAndHCALLinker.cc.

Constructor & Destructor Documentation

◆ GSFAndHCALLinker()

GSFAndHCALLinker::GSFAndHCALLinker ( const edm::ParameterSet conf)
inline

Definition at line 9 of file GSFAndHCALLinker.cc.

10  : BlockElementLinkerBase(conf),
11  useKDTree_(conf.getParameter<bool>("useKDTree")),
12  debug_(conf.getUntrackedParameter<bool>("debug", false)) {}

Member Function Documentation

◆ testLink()

double GSFAndHCALLinker::testLink ( const reco::PFBlockElement elem1,
const reco::PFBlockElement elem2 
) const
overridevirtual

Implements BlockElementLinkerBase.

Definition at line 22 of file GSFAndHCALLinker.cc.

22  {
24  const reco::PFBlockElementCluster* hcalelem(nullptr);
25  const reco::PFBlockElementGsfTrack* gsfelem(nullptr);
26  double dist(-1.0);
27  if (elem1->type() < elem2->type()) {
28  hcalelem = static_cast<const reco::PFBlockElementCluster*>(elem1);
29  gsfelem = static_cast<const reco::PFBlockElementGsfTrack*>(elem2);
30  } else {
31  hcalelem = static_cast<const reco::PFBlockElementCluster*>(elem2);
32  gsfelem = static_cast<const reco::PFBlockElementGsfTrack*>(elem1);
33  }
34  const reco::PFRecTrack& track = gsfelem->GsftrackPF();
35  const reco::PFClusterRef& clusterref = hcalelem->clusterRef();
36  const reco::PFTrajectoryPoint& tkAtHCAL = track.extrapolatedPoint(HCALEnt);
37  if (tkAtHCAL.isValid()) {
38  dist = LinkByRecHit::testTrackAndClusterByRecHit(track, *clusterref, false, debug_);
39  }
40  if (debug_) {
41  if (dist > 0.) {
42  std::cout << " Here a link has been established"
43  << " between a GSF track an Hcal with dist " << dist << std::endl;
44  } else {
45  if (debug_)
46  std::cout << " No link found " << std::endl;
47  }
48  }
49 
50  return dist;
51 }

References reco::PFBlockElementCluster::clusterRef(), gather_cfg::cout, debug_, reco::PFBlockElementGsfTrack::GsftrackPF(), reco::PFTrajectoryPoint::HCALEntrance, reco::PFTrajectoryPoint::isValid(), LinkByRecHit::testTrackAndClusterByRecHit(), HLT_FULL_cff::track, and reco::PFBlockElement::type().

Member Data Documentation

◆ debug_

bool GSFAndHCALLinker::debug_
private

Definition at line 17 of file GSFAndHCALLinker.cc.

Referenced by testLink().

◆ useKDTree_

bool GSFAndHCALLinker::useKDTree_
private

Definition at line 17 of file GSFAndHCALLinker.cc.

HLT_FULL_cff.track
track
Definition: HLT_FULL_cff.py:11776
gather_cfg.cout
cout
Definition: gather_cfg.py:144
LinkByRecHit::testTrackAndClusterByRecHit
static double testTrackAndClusterByRecHit(const reco::PFRecTrack &track, const reco::PFCluster &cluster, bool isBrem=false, bool debug=false)
Definition: LinkByRecHit.cc:18
GSFAndHCALLinker::useKDTree_
bool useKDTree_
Definition: GSFAndHCALLinker.cc:17
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::Ref< PFClusterCollection >
BlockElementLinkerBase::BlockElementLinkerBase
BlockElementLinkerBase(const edm::ParameterSet &conf)
Definition: BlockElementLinkerBase.h:12
reco::PFTrajectoryPoint::HCALEntrance
HCAL front face.
Definition: PFTrajectoryPoint.h:48
reco::PFTrajectoryPoint::LayerType
LayerType
Define the different layers where the track can be propagated.
Definition: PFTrajectoryPoint.h:34
GSFAndHCALLinker::debug_
bool debug_
Definition: GSFAndHCALLinker.cc:17
reco::PFTrajectoryPoint::isValid
bool isValid() const
is this point valid ?
Definition: PFTrajectoryPoint.h:84
reco::PFBlockElementGsfTrack
Track Element.
Definition: PFBlockElementGsfTrack.h:18
reco::PFRecTrack
reconstructed track used as an input to particle flow
Definition: PFRecTrack.h:20
reco::PFTrajectoryPoint
A PFTrack holds several trajectory points, which basically contain the position and momentum of a tra...
Definition: PFTrajectoryPoint.h:26
reco::PFBlockElementCluster
Cluster Element.
Definition: PFBlockElementCluster.h:16
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
reco::PFBlockElement::type
Type type() const
Definition: PFBlockElement.h:69