CMS 3D CMS Logo

HCALAndHOLinker.cc
Go to the documentation of this file.
5 
7 public:
10  useKDTree_(conf.getParameter<bool>("useKDTree")),
11  debug_(conf.getUntrackedParameter<bool>("debug", false)) {}
12 
13  double testLink(const reco::PFBlockElement*, const reco::PFBlockElement*) const override;
14 
15 private:
17 };
18 
20 
21 double HCALAndHOLinker::testLink(const reco::PFBlockElement* elem1, const reco::PFBlockElement* elem2) const {
22  const reco::PFBlockElementCluster *hcalelem(nullptr), *hoelem(nullptr);
23  double dist(-1.0);
24  if (elem1->type() < elem2->type()) {
25  hcalelem = static_cast<const reco::PFBlockElementCluster*>(elem1);
26  hoelem = static_cast<const reco::PFBlockElementCluster*>(elem2);
27  } else {
28  hcalelem = static_cast<const reco::PFBlockElementCluster*>(elem2);
29  hoelem = static_cast<const reco::PFBlockElementCluster*>(elem1);
30  }
31  const reco::PFClusterRef& hcalref = hcalelem->clusterRef();
32  const reco::PFClusterRef& horef = hoelem->clusterRef();
33  const reco::PFCluster::REPPoint& hcalreppos = hcalref->positionREP();
34  if (hcalref.isNull() || horef.isNull()) {
35  throw cms::Exception("BadClusterRefs") << "PFBlockElementCluster's refs are null!";
36  }
37  dist = (std::abs(hcalreppos.Eta()) < 1.5
39  hcalreppos.Eta(), hcalreppos.Phi(), horef->positionREP().Eta(), horef->positionREP().Phi())
40  : -1.0);
41  return (dist < 0.2 ? dist : -1.0);
42 }
electrons_cff.bool
bool
Definition: electrons_cff.py:366
funct::false
false
Definition: Factorize.h:29
PFBlockElementCluster.h
edm::Ref::isNull
bool isNull() const
Checks for null.
Definition: Ref.h:235
BlockElementLinkerBase
Definition: BlockElementLinkerBase.h:10
edm::Ref< PFClusterCollection >
PFCluster.h
HCALAndHOLinker::debug_
bool debug_
Definition: HCALAndHOLinker.cc:16
DEFINE_EDM_PLUGIN
#define DEFINE_EDM_PLUGIN(factory, type, name)
Definition: PluginFactory.h:124
edm::ParameterSet
Definition: ParameterSet.h:47
edmplugin::PluginFactory
Definition: PluginFactory.h:34
LinkByRecHit.h
HCALAndHOLinker::useKDTree_
bool useKDTree_
Definition: HCALAndHOLinker.cc:16
reco::PFBlockElement
Abstract base class for a PFBlock element (track, cluster...)
Definition: PFBlockElement.h:26
reco::PFBlockElementCluster
Cluster Element.
Definition: PFBlockElementCluster.h:16
Exception
Definition: hltDiff.cc:245
BlockElementLinkerBase.h
reco::PFBlockElementCluster::clusterRef
const PFClusterRef & clusterRef() const override
Definition: PFBlockElementCluster.h:29
reco::PFBlockElement::type
Type type() const
Definition: PFBlockElement.h:69
HCALAndHOLinker::HCALAndHOLinker
HCALAndHOLinker(const edm::ParameterSet &conf)
Definition: HCALAndHOLinker.cc:8
HCALAndHOLinker
Definition: HCALAndHOLinker.cc:6
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
reco::PFCluster::REPPoint
ROOT::Math::PositionVector3D< ROOT::Math::CylindricalEta3D< double > > REPPoint
Definition: PFCluster.h:48
LinkByRecHit::computeDist
static double computeDist(double eta1, double phi1, double eta2, double phi2, bool etaPhi=true)
computes a chisquare
Definition: LinkByRecHit.cc:519
HCALAndHOLinker::testLink
double testLink(const reco::PFBlockElement *, const reco::PFBlockElement *) const override
Definition: HCALAndHOLinker.cc:21