CMS 3D CMS Logo

TrackAndHCALLinker.cc
Go to the documentation of this file.
9 
11 public:
13  : BlockElementLinkerBase(conf),
14  useKDTree_(conf.getParameter<bool>("useKDTree")),
15  trajectoryLayerEntranceString_(conf.getParameter<std::string>("trajectoryLayerEntrance")),
16  trajectoryLayerExitString_(conf.getParameter<std::string>("trajectoryLayerExit")),
17  debug_(conf.getUntrackedParameter<bool>("debug", false)) {
18  // convert TrajectoryLayers info from string to enum
21  // make sure the requested setting is supported
28  // flag if exit layer should be checked or not
30  }
31 
32  bool linkPrefilter(const reco::PFBlockElement*, const reco::PFBlockElement*) const override;
33 
34  double testLink(const reco::PFBlockElement*, const reco::PFBlockElement*) const override;
35 
36 private:
37  bool useKDTree_;
42  bool debug_;
43  bool checkExit_;
44 };
45 
47 
49  bool result = false;
50  // Track-HCAL KDTree multilinks are stored to track's elem
51  switch (elem1->type()) {
53  result = (elem1->isMultilinksValide(elem2->type()) && !elem1->getMultilinks(elem2->type()).empty() &&
54  elem2->isMultilinksValide(elem1->type()));
55  break;
57  result = (elem2->isMultilinksValide(elem1->type()) && !elem2->getMultilinks(elem1->type()).empty() &&
58  elem1->isMultilinksValide(elem2->type()));
59  default:
60  break;
61  }
62  return (useKDTree_ ? result : true);
63 }
64 
66  const reco::PFBlockElementCluster* hcalelem(nullptr);
67  const reco::PFBlockElementTrack* tkelem(nullptr);
68  double dist(-1.0);
69  if (elem1->type() < elem2->type()) {
70  tkelem = static_cast<const reco::PFBlockElementTrack*>(elem1);
71  hcalelem = static_cast<const reco::PFBlockElementCluster*>(elem2);
72  } else {
73  tkelem = static_cast<const reco::PFBlockElementTrack*>(elem2);
74  hcalelem = static_cast<const reco::PFBlockElementCluster*>(elem1);
75  }
76  const reco::PFRecTrackRef& trackref = tkelem->trackRefPF();
77  const reco::PFClusterRef& clusterref = hcalelem->clusterRef();
78  const reco::PFCluster::REPPoint& hcalreppos = clusterref->positionREP();
79  const reco::PFTrajectoryPoint& tkAtHCALEnt = trackref->extrapolatedPoint(trajectoryLayerEntrance_);
80  const reco::PFCluster::REPPoint& tkreppos = tkAtHCALEnt.positionREP();
81  // Check exit point
82  double dHEta = 0.;
83  double dHPhi = 0.;
84  double dRHCALEx = 0.;
85  if (checkExit_) {
86  const reco::PFTrajectoryPoint& tkAtHCALEx = trackref->extrapolatedPoint(trajectoryLayerExit_);
87  dHEta = (tkAtHCALEx.positionREP().Eta() - tkAtHCALEnt.positionREP().Eta());
88  dHPhi = reco::deltaPhi(tkAtHCALEx.positionREP().Phi(), tkAtHCALEnt.positionREP().Phi());
89  dRHCALEx = tkAtHCALEx.position().R();
90  }
91 
92  // Check if the linking has been done using the KDTree algo
93  // Glowinski & Gouzevitch
94  if (useKDTree_ && tkelem->isMultilinksValide(hcalelem->type())) { //KDTree Algo
95  const reco::PFMultilinksType& multilinks = tkelem->getMultilinks(hcalelem->type());
96 
97  // Check if the link Track/Hcal exist
98  reco::PFMultilinksType::const_iterator mlit = multilinks.begin();
99  for (; mlit != multilinks.end(); ++mlit)
100  if (mlit->clusterRef == clusterref)
101  break;
102 
103  // If the link exist, we fill dist and linktest.
104 
105  if (mlit != multilinks.end()) {
106  // when checkExit_ is false
107  if (!checkExit_) {
108  dist = LinkByRecHit::computeDist(hcalreppos.Eta(), hcalreppos.Phi(), tkreppos.Eta(), tkreppos.Phi());
109  }
110  // when checkExit_ is true
111  else {
112  //special case ! A looper can exit the barrel inwards and hit the endcap
113  //In this case calculate the distance based on the first crossing since
114  //the looper will probably never make it to the endcap
115  if (dRHCALEx < tkAtHCALEnt.position().R()) {
116  dist = LinkByRecHit::computeDist(hcalreppos.Eta(), hcalreppos.Phi(), tkreppos.Eta(), tkreppos.Phi());
117  edm::LogWarning("TrackHCALLinker ")
118  << "Special case of linking with track hitting HCAL and looping back in the tracker ";
119  } else {
121  hcalreppos.Eta(), hcalreppos.Phi(), tkreppos.Eta() + 0.1 * dHEta, tkreppos.Phi() + 0.1 * dHPhi);
122  }
123  } // checkExit_
124  } // multilinks
125 
126  } else { // Old algorithm
127  if (tkAtHCALEnt.isValid())
128  dist = LinkByRecHit::testTrackAndClusterByRecHit(*trackref, *clusterref, false, debug_);
129  }
130  return dist;
131 }
constexpr double deltaPhi(double phi1, double phi2)
Definition: deltaPhi.h:26
Abstract base class for a PFBlock element (track, cluster...)
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
double testLink(const reco::PFBlockElement *, const reco::PFBlockElement *) const override
assert(be >=bs)
const PFMultilinksType & getMultilinks(Type type) const
bool isValid() const
is this point valid ?
std::vector< PFMultilink > PFMultilinksType
collection of PFSuperCluster objects
static LayerType layerTypeByName(const std::string &name)
bool isMultilinksValide(Type type) const
const PFClusterRef & clusterRef() const override
const math::XYZPoint & position() const
cartesian position (x, y, z)
TrackAndHCALLinker(const edm::ParameterSet &conf)
std::string trajectoryLayerEntranceString_
bool linkPrefilter(const reco::PFBlockElement *, const reco::PFBlockElement *) const override
ROOT::Math::PositionVector3D< ROOT::Math::CylindricalEta3D< double > > REPPoint
Definition: PFCluster.h:48
#define DEFINE_EDM_PLUGIN(factory, type, name)
reco::PFTrajectoryPoint::LayerType trajectoryLayerExit_
A PFTrack holds several trajectory points, which basically contain the position and momentum of a tra...
const PFRecTrackRef & trackRefPF() const override
reco::PFTrajectoryPoint::LayerType trajectoryLayerEntrance_
Log< level::Warning, false > LogWarning
std::string trajectoryLayerExitString_
LayerType
Define the different layers where the track can be propagated.
static double testTrackAndClusterByRecHit(const reco::PFRecTrack &track, const reco::PFCluster &cluster, bool isBrem=false, bool debug=false)
Definition: LinkByRecHit.cc:18