CMS 3D CMS Logo

MeasurementByLayerGrouper.cc
Go to the documentation of this file.
7 
8 using namespace std;
9 
10 vector<pair<const DetLayer*, vector<TrajectoryMeasurement> > > MeasurementByLayerGrouper::operator()(
11  const vector<TM>& vtm) const {
12  if (vtm.empty())
13  return vector<pair<const DetLayer*, vector<TM> > >();
14 
15  vector<pair<const DetLayer*, vector<TM> > > result;
16  result.reserve(vtm.size());
17 
18  vector<TM>::const_iterator start = vtm.begin();
19  //here we assume that the TM on the same detLayer are consecutive (as it should)
20  while (start != vtm.end()) {
21  vector<TM>::const_iterator ipart = start;
22  do {
23  ipart++;
24  } while (ipart != vtm.end() && getDetLayer(*start) == getDetLayer(*ipart) &&
25  getDetLayer(*start) != nullptr //the returned pointer will be 0 in case
26  //the measurement contains an invalid hit with no associated detid.
27  //This kind of hits are at most one per layer.
28  //this last condition avoids that 2 consecutive measurements of this kind
29  //are grouped in the same layer.
30  //it would be useful if invalid hit out of the active area were
31  //given the detid reserved for the whole layer instead of 0
32  );
33 
34  vector<TM> group(start, ipart);
35  result.push_back(pair<const DetLayer*, vector<TM> >(getDetLayer(*start), group));
36  start = ipart;
37  }
38 #ifdef debug_MeasurementByLayerGrouper_
39  for (vector<pair<const DetLayer*, vector<TM> > >::const_iterator iter = result.begin(); iter != result.end();
40  iter++) {
41  LogTrace("MeasurementByLayerGrouper|SiTrackerMultiRecHitUpdator")
42  << "DetLayer " << iter->first << " has " << iter->second.size() << " measurements";
43  }
44 #endif
45 
46  return result;
47 }
48 
50  // if the DetLayer is set in the TM...
51  if (tm.layer())
52  return tm.layer();
53 
54  //if it corresponds to an invalid hit with no geomdet associated
55  //we can't retrieve the DetLayer
56  //because unfortunately the detlayer is not set in these cases
57  //returns 0 for the moment
58  //to be revisited
59 
60  if (tm.recHit()->det() == nullptr) {
61  LogDebug("MeasurementByLayerGrouper") << "This hit has no geomdet associated skipping... ";
62  return nullptr;
63  }
64 
65  //now the cases in which the detid is set
66 
67  if (!theGeomSearch) {
68  throw cms::Exception("MeasurementByLayerGrouper") << "Impossible to retrieve the det layer because it's not set in "
69  "the TM and the pointer to the GeometricSearchTracker is 0 ";
70  return nullptr;
71  }
72 
73  return theGeomSearch->detLayer(tm.recHit()->det()->geographicalId());
74 }
Definition: start.py:1
#define LogTrace(id)
DetLayer getDetLayer(DetId detId, const TrackerTopology *tTopo)
Definition: TrackQuality.cc:92
const DetLayer * getDetLayer(const TM &tm) const
std::vector< std::pair< const DetLayer *, std::vector< TM > > > operator()(const std::vector< TM > &) const
const DetLayer * layer() const
ConstRecHitPointer const & recHit() const
#define LogDebug(id)