CMS 3D CMS Logo

HGCal3DClustering.cc
Go to the documentation of this file.
3 
4 namespace {
6  // initialize original index locations
7  std::vector<size_t> idx(v.size());
8  std::iota(std::begin(idx), std::end(idx), 0);
9 
10  // sort indices based on comparing values in v
11  std::sort(idx.begin(), idx.end(), [&v](size_t i1, size_t i2) { return (*v[i1]) > (*v[i2]); });
12 
13  return idx;
14  }
15 
16  float distReal2(const edm::Ptr<reco::BasicCluster> &a, const std::array<double, 3> &to) {
17  return (a->x() - to[0]) * (a->x() - to[0]) + (a->y() - to[1]) * (a->y() - to[1]);
18  }
19 } // namespace
20 
22  es = sorted_indices(thecls);
23  unsigned int es_size = es.size();
24  for (unsigned int i = 0; i < es_size; ++i) {
25  int layer = rhtools_.getLayerWithOffset(thecls[es[i]]->hitsAndFractions()[0].first);
26  layer += int(thecls[es[i]]->z() > 0) * (maxlayer + 1);
27  float x = thecls[es[i]]->x();
28  float y = thecls[es[i]]->y();
29  float z = thecls[es[i]]->z();
30  points[layer].emplace_back(ClusterRef(i, z), x, y);
31  if (zees[layer] == 0.) {
32  // At least one cluster for layer at z
33  zees[layer] = z;
34  }
35  if (points[layer].empty()) {
36  minpos[layer][0] = x;
37  minpos[layer][1] = y;
38  maxpos[layer][0] = x;
39  maxpos[layer][1] = y;
40  } else {
41  minpos[layer][0] = std::min(x, minpos[layer][0]);
42  minpos[layer][1] = std::min(y, minpos[layer][1]);
43  maxpos[layer][0] = std::max(x, maxpos[layer][0]);
44  maxpos[layer][1] = std::max(y, maxpos[layer][1]);
45  }
46  }
47 }
48 std::vector<reco::HGCalMultiCluster> HGCal3DClustering::makeClusters(
50  reset();
51  organizeByLayer(thecls);
52  std::vector<reco::HGCalMultiCluster> thePreClusters;
53 
54  std::vector<KDTree> hit_kdtree(2 * (maxlayer + 1));
55  for (unsigned int i = 0; i <= 2 * maxlayer + 1; ++i) {
56  KDTreeBox bounds(minpos[i][0], maxpos[i][0], minpos[i][1], maxpos[i][1]);
57  hit_kdtree[i].build(points[i], bounds);
58  }
59  std::vector<int> vused(es.size(), 0);
60 
61  unsigned int es_size = es.size();
62  for (unsigned int i = 0; i < es_size; ++i) {
63  if (vused[i] == 0) {
65  temp.push_back(thecls[es[i]]);
66  vused[i] = (thecls[es[i]]->z() > 0) ? 1 : -1;
67  // Starting from cluster es[i] at from[0] - from[1] - from[2]
68  std::array<double, 3> from{{thecls[es[i]]->x(), thecls[es[i]]->y(), thecls[es[i]]->z()}};
69  unsigned int firstlayer = int(thecls[es[i]]->z() > 0) * (maxlayer + 1);
70  unsigned int lastlayer = firstlayer + maxlayer + 1;
71  for (unsigned int j = firstlayer; j < lastlayer; ++j) {
72  if (zees[j] == 0.) {
73  // layer j not yet ever reached?
74  continue;
75  }
76  std::array<double, 3> to{{0., 0., zees[j]}};
77  layerIntersection(to, from);
78  unsigned int layer =
79  j > maxlayer ? (j - (maxlayer + 1)) : j; //maps back from index used for KD trees to actual layer
80  float radius = radii[2];
81  if (layer <= rhtools_.lastLayerEE())
82  radius = radii[0];
83  else if (layer < rhtools_.firstLayerBH())
84  radius = radii[1];
85  float radius2 = radius * radius;
86  KDTreeBox search_box(
87  float(to[0]) - radius, float(to[0]) + radius, float(to[1]) - radius, float(to[1]) + radius);
88  std::vector<ClusterRef> found;
89  // at layer j in box float(to[0])+/-radius - float(to[1])+/-radius
90  hit_kdtree[j].search(search_box, found);
91  // found found.size() clusters within box
92  for (unsigned int k = 0; k < found.size(); k++) {
93  if (vused[found[k].ind] == 0 && distReal2(thecls[es[found[k].ind]], to) < radius2) {
94  temp.push_back(thecls[es[found[k].ind]]);
95  vused[found[k].ind] = vused[i];
96  }
97  }
98  }
99  if (temp.size() > minClusters) {
100  math::XYZPoint position = clusterTools->getMultiClusterPosition(temp);
101  if (std::abs(position.z()) <= 0.)
102  continue;
103  // only store multiclusters that pass the energy threshold in getMultiClusterPosition
104  // giving them a position inside the HGCal
105  thePreClusters.push_back(temp);
106  auto &back = thePreClusters.back();
107  back.setPosition(position);
108  back.setEnergy(clusterTools->getMultiClusterEnergy(back));
109  }
110  }
111  }
112 
113  return thePreClusters;
114 }
115 
116 void HGCal3DClustering::layerIntersection(std::array<double, 3> &to, const std::array<double, 3> &from) const {
117  if (from[2] != 0) {
118  to[0] = from[0] / from[2] * to[2];
119  to[1] = from[1] / from[2] * to[2];
120  } else {
121  to[0] = 0;
122  to[1] = 0;
123  }
124 }
std::vector< std::vector< KDNode > > points
std::vector< double > radii
unsigned int firstLayerBH() const
Definition: RecHitTools.h:78
void organizeByLayer(const reco::HGCalMultiCluster::ClusterCollection &)
std::vector< float > zees
std::vector< size_t > sorted_indices(const std::vector< T > &v)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::vector< std::array< float, 2 > > maxpos
std::vector< std::array< float, 2 > > minpos
void layerIntersection(std::array< double, 3 > &to, const std::array< double, 3 > &from) const
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
std::unique_ptr< hgcal::ClusterTools > clusterTools
hgcal::RecHitTools rhtools_
unsigned int maxlayer
double a
Definition: hdecay.h:121
static int position[264][3]
Definition: ReadPGInfo.cc:289
std::vector< size_t > es
std::vector< reco::HGCalMultiCluster > makeClusters(const reco::HGCalMultiCluster::ClusterCollection &)
unsigned int lastLayerEE(bool nose=false) const
Definition: RecHitTools.h:76
unsigned int getLayerWithOffset(const DetId &) const
Definition: RecHitTools.cc:376