CMS 3D CMS Logo

GSFAndHGCalLinker.cc
Go to the documentation of this file.
6 
8 public:
10  : BlockElementLinkerBase(conf),
11  useKDTree_(conf.getParameter<bool>("useKDTree")),
12  debug_(conf.getUntrackedParameter<bool>("debug", false)) {}
13 
14  double testLink(const reco::PFBlockElement*, const reco::PFBlockElement*) const override;
15 
16 private:
18 };
19 
21 
22 double GSFAndHGCalLinker::testLink(const reco::PFBlockElement* elem1, const reco::PFBlockElement* elem2) const {
24  const reco::PFBlockElementCluster* hgcalelem(nullptr);
25  const reco::PFBlockElementGsfTrack* gsfelem(nullptr);
26  double dist(-1.0);
27  if (elem1->type() > elem2->type()) {
28  hgcalelem = static_cast<const reco::PFBlockElementCluster*>(elem1);
29  gsfelem = static_cast<const reco::PFBlockElementGsfTrack*>(elem2);
30  } else {
31  hgcalelem = 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 = hgcalelem->clusterRef();
36  const reco::PFTrajectoryPoint& tkAtECAL = track.extrapolatedPoint(ECALShowerMax);
37  if (tkAtECAL.isValid()) {
38  dist = LinkByRecHit::computeDist(tkAtECAL.positionREP().eta(),
39  tkAtECAL.positionREP().phi(),
40  clusterref->positionREP().Eta(),
41  clusterref->positionREP().Phi());
42  if (dist > 0.3)
43  dist = -1.0;
44  }
45  if (debug_) {
46  if (dist > 0.) {
47  std::cout << " Here a link has been established"
48  << " between a GSF track an HGCal with dist " << dist << std::endl;
49  } else {
50  if (debug_)
51  std::cout << " No link found " << std::endl;
52  }
53  }
54 
55  return dist;
56 }
Abstract base class for a PFBlock element (track, cluster...)
const GsfPFRecTrack & GsftrackPF() const
reconstructed track used as an input to particle flow
Definition: PFRecTrack.h:20
const REPPoint & positionREP() const
trajectory position in (rho, eta, phi) base
static double computeDist(double eta1, double phi1, double eta2, double phi2, bool etaPhi=true)
computes a chisquare
bool isValid() const
is this point valid ?
const PFClusterRef & clusterRef() const override
double testLink(const reco::PFBlockElement *, const reco::PFBlockElement *) const override
GSFAndHGCalLinker(const edm::ParameterSet &conf)
#define DEFINE_EDM_PLUGIN(factory, type, name)
A PFTrack holds several trajectory points, which basically contain the position and momentum of a tra...
LayerType
Define the different layers where the track can be propagated.