CMS 3D CMS Logo

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

Public Member Functions

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

Private Attributes

const bool debug_
 
const bool useKDTree_
 

Detailed Description

Definition at line 7 of file TrackAndECALLinker.cc.

Constructor & Destructor Documentation

◆ TrackAndECALLinker()

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

Definition at line 9 of file TrackAndECALLinker.cc.

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

Member Function Documentation

◆ linkPrefilter()

bool TrackAndECALLinker::linkPrefilter ( const reco::PFBlockElement elem1,
const reco::PFBlockElement elem2 
) const
overridevirtual

Reimplemented from BlockElementLinkerBase.

Definition at line 24 of file TrackAndECALLinker.cc.

24  {
25  bool result = false;
26  // Track-ECAL KDTree multilinks are stored to ecal's elem
27  switch (elem1->type()) {
29  result = (elem2->isMultilinksValide(elem1->type()) && !elem2->getMultilinks(elem1->type()).empty() &&
30  elem1->isMultilinksValide(elem2->type()));
31  break;
33  result = (elem1->isMultilinksValide(elem2->type()) && !elem1->getMultilinks(elem2->type()).empty() &&
34  elem2->isMultilinksValide(elem1->type()));
35  default:
36  break;
37  }
38  return (useKDTree_ ? result : true);
39 }

References reco::PFBlockElement::ECAL, relativeConstraints::empty, reco::PFBlockElement::getMultilinks(), reco::PFBlockElement::isMultilinksValide(), mps_fire::result, reco::PFBlockElement::TRACK, reco::PFBlockElement::type(), and useKDTree_.

◆ testLink()

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

Implements BlockElementLinkerBase.

Definition at line 41 of file TrackAndECALLinker.cc.

41  {
43  const reco::PFBlockElementCluster* ecalelem(nullptr);
44  const reco::PFBlockElementTrack* tkelem(nullptr);
45  double dist(-1.0);
46  if (elem1->type() < elem2->type()) {
47  tkelem = static_cast<const reco::PFBlockElementTrack*>(elem1);
48  ecalelem = static_cast<const reco::PFBlockElementCluster*>(elem2);
49  } else {
50  tkelem = static_cast<const reco::PFBlockElementTrack*>(elem2);
51  ecalelem = static_cast<const reco::PFBlockElementCluster*>(elem1);
52  }
53  const reco::PFRecTrackRef& trackref = tkelem->trackRefPF();
54  const reco::PFClusterRef& clusterref = ecalelem->clusterRef();
55  const reco::PFCluster::REPPoint& ecalreppos = clusterref->positionREP();
56  const reco::PFTrajectoryPoint& tkAtECAL = trackref->extrapolatedPoint(ECALShowerMax);
57 
58  // Check if the linking has been done using the KDTree algo
59  // Glowinski & Gouzevitch
60  if (useKDTree_ && ecalelem->isMultilinksValide(tkelem->type())) { //KDTree Algo
61  const reco::PFMultilinksType& multilinks = ecalelem->getMultilinks(tkelem->type());
62  const double tracketa = tkAtECAL.positionREP().Eta();
63  const double trackphi = tkAtECAL.positionREP().Phi();
64 
65  // Check if the link Track/Ecal exist
66  reco::PFMultilinksType::const_iterator mlit = multilinks.begin();
67  for (; mlit != multilinks.end(); ++mlit)
68  if ((mlit->first == trackphi) && (mlit->second == tracketa))
69  break;
70 
71  // If the link exist, we fill dist and linktest.
72  if (mlit != multilinks.end()) {
73  dist = LinkByRecHit::computeDist(ecalreppos.Eta(), ecalreppos.Phi(), tracketa, trackphi);
74  }
75 
76  } else { // Old algorithm
77  if (tkAtECAL.isValid())
78  dist = LinkByRecHit::testTrackAndClusterByRecHit(*trackref, *clusterref, false, debug_);
79  }
80 
81  if (debug_) {
82  if (dist > 0.) {
83  std::cout << " Here a link has been established"
84  << " between a track an Ecal with dist " << dist << std::endl;
85  } else
86  std::cout << " No link found " << std::endl;
87  }
88  return dist;
89 }

References reco::PFBlockElementCluster::clusterRef(), LinkByRecHit::computeDist(), gather_cfg::cout, debug_, reco::PFTrajectoryPoint::ECALShowerMax, reco::PFBlockElement::getMultilinks(), reco::PFBlockElement::isMultilinksValide(), reco::PFTrajectoryPoint::isValid(), reco::PFTrajectoryPoint::positionREP(), LinkByRecHit::testTrackAndClusterByRecHit(), reco::PFBlockElementTrack::trackRefPF(), reco::PFBlockElement::type(), and useKDTree_.

Member Data Documentation

◆ debug_

const bool TrackAndECALLinker::debug_
private

Definition at line 19 of file TrackAndECALLinker.cc.

Referenced by testLink().

◆ useKDTree_

const bool TrackAndECALLinker::useKDTree_
private

Definition at line 19 of file TrackAndECALLinker.cc.

Referenced by linkPrefilter(), and testLink().

reco::PFMultilinksType
std::vector< std::pair< double, double > > PFMultilinksType
Abstract This class is used by the KDTree Track / Ecal Cluster linker to store all found links.
Definition: PFMultilinksTC.h:13
TrackAndECALLinker::useKDTree_
const bool useKDTree_
Definition: TrackAndECALLinker.cc:19
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
reco::PFBlockElement::isMultilinksValide
bool isMultilinksValide(Type type) const
Definition: PFBlockElement.h:117
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::Ref< PFRecTrackCollection >
reco::PFTrajectoryPoint::positionREP
const REPPoint & positionREP() const
trajectory position in (rho, eta, phi) base
Definition: PFTrajectoryPoint.h:103
reco::PFBlockElement::TRACK
Definition: PFBlockElement.h:32
reco::PFTrajectoryPoint::ECALShowerMax
Definition: PFTrajectoryPoint.h:46
BlockElementLinkerBase::BlockElementLinkerBase
BlockElementLinkerBase(const edm::ParameterSet &conf)
Definition: BlockElementLinkerBase.h:12
reco::PFBlockElement::ECAL
Definition: PFBlockElement.h:35
reco::PFTrajectoryPoint::LayerType
LayerType
Define the different layers where the track can be propagated.
Definition: PFTrajectoryPoint.h:34
reco::PFTrajectoryPoint::isValid
bool isValid() const
is this point valid ?
Definition: PFTrajectoryPoint.h:84
reco::PFTrajectoryPoint
A PFTrack holds several trajectory points, which basically contain the position and momentum of a tra...
Definition: PFTrajectoryPoint.h:26
relativeConstraints.empty
bool empty
Definition: relativeConstraints.py:46
reco::PFBlockElementCluster
Cluster Element.
Definition: PFBlockElementCluster.h:16
reco::PFBlockElementTrack
Track Element.
Definition: PFBlockElementTrack.h:17
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
reco::PFBlockElement::type
Type type() const
Definition: PFBlockElement.h:69
mps_fire.result
result
Definition: mps_fire.py:311
reco::PFCluster::REPPoint
ROOT::Math::PositionVector3D< ROOT::Math::CylindricalEta3D< double > > REPPoint
Definition: PFCluster.h:48
reco::PFBlockElement::getMultilinks
const PFMultilinksType & getMultilinks(Type type) const
Definition: PFBlockElement.h:124
LinkByRecHit::computeDist
static double computeDist(double eta1, double phi1, double eta2, double phi2, bool etaPhi=true)
computes a chisquare
Definition: LinkByRecHit.cc:519
TrackAndECALLinker::debug_
const bool debug_
Definition: TrackAndECALLinker.cc:19