CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
LayerTriplets.cc
Go to the documentation of this file.
2 
3 namespace LayerTriplets {
4  std::vector<LayerSetAndLayers> layers(const SeedingLayerSetsHits& sets) {
5  std::vector<LayerSetAndLayers> result;
6  if (sets.numberOfLayersInSet() < 3)
7  return result;
8 
9  for (LayerSet set : sets) {
10  bool added = false;
11 
12  for (auto ir = result.begin(); ir < result.end(); ++ir) {
13  const LayerSet& resSet = ir->first;
14  if (resSet[0].index() == set[0].index() && resSet[1].index() == set[1].index()) {
15  std::vector<Layer>& thirds = ir->second;
16  // 3rd layer can already be there if we are dealing with quadruplet layer sets
17  auto found =
18  std::find_if(thirds.begin(), thirds.end(), [&](const Layer& l) { return l.index() == set[2].index(); });
19  if (found == thirds.end())
20  thirds.push_back(set[2]);
21  added = true;
22  break;
23  }
24  }
25  if (!added) {
26  LayerSetAndLayers lpl = std::make_pair(set, std::vector<Layer>(1, set[2]));
27  result.push_back(lpl);
28  }
29  }
30  return result;
31  }
32 } // namespace LayerTriplets
unsigned short numberOfLayersInSet() const
Get number of layers in each SeedingLayerSets.
std::vector< LayerSetAndLayers > layers(const SeedingLayerSetsHits &sets)
Definition: LayerTriplets.cc:4
tuple result
Definition: mps_fire.py:311
std::pair< LayerSet, std::vector< Layer > > LayerSetAndLayers
Definition: LayerTriplets.h:16