CMS 3D CMS Logo

ECALAndHCALCaloJetLinker.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 
22  const reco::PFBlockElementCluster *hcalelem(nullptr), *ecalelem(nullptr);
23  double dist(-1.0);
24  if (elem1->type() < elem2->type()) {
25  ecalelem = static_cast<const reco::PFBlockElementCluster*>(elem1);
26  hcalelem = static_cast<const reco::PFBlockElementCluster*>(elem2);
27  } else {
28  ecalelem = static_cast<const reco::PFBlockElementCluster*>(elem2);
29  hcalelem = static_cast<const reco::PFBlockElementCluster*>(elem1);
30  }
31  const reco::PFClusterRef& ecalref = ecalelem->clusterRef();
32  const reco::PFClusterRef& hcalref = hcalelem->clusterRef();
33  const reco::PFCluster::REPPoint& ecalreppos = ecalref->positionREP();
34  if (hcalref.isNull() || ecalref.isNull()) {
35  throw cms::Exception("BadClusterRefs") << "PFBlockElementCluster's refs are null!";
36  }
37  //dist = ( std::abs(ecalreppos.Eta()) > 2.5 ?
38  // LinkByRecHit::computeDist( ecalreppos.Eta(),
39  // ecalreppos.Phi(),
40  // hcalref->positionREP().Eta(),
41  // hcalref->positionREP().Phi() )
42  // : -1.0 );
43  // return (dist < 0.2 ? dist : -1.0);
45  ecalreppos.Eta(), ecalreppos.Phi(), hcalref->positionREP().Eta(), hcalref->positionREP().Phi());
46 
47  return (dist < 0.2 ? dist : -1.0);
48 }
Abstract base class for a PFBlock element (track, cluster...)
static double computeDist(double eta1, double phi1, double eta2, double phi2, bool etaPhi=true)
computes a chisquare
double testLink(const reco::PFBlockElement *, const reco::PFBlockElement *) const override
ECALAndHCALCaloJetLinker(const edm::ParameterSet &conf)
bool isNull() const
Checks for null.
Definition: Ref.h:235
const PFClusterRef & clusterRef() const override
ROOT::Math::PositionVector3D< ROOT::Math::CylindricalEta3D< double > > REPPoint
Definition: PFCluster.h:48
#define DEFINE_EDM_PLUGIN(factory, type, name)