CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Types | Private Member Functions | Private Attributes
MeasurementByLayerGrouper Class Reference

#include <MeasurementByLayerGrouper.h>

Public Member Functions

 MeasurementByLayerGrouper (const GeometricSearchTracker *search=0)
 
std::vector< std::pair< const
DetLayer *, std::vector< TM > > > 
operator() (const std::vector< TM > &) const
 

Private Types

typedef TrajectoryMeasurement TM
 

Private Member Functions

const DetLayergetDetLayer (const TM &tm) const
 

Private Attributes

const GeometricSearchTrackertheGeomSearch
 

Detailed Description

Definition at line 13 of file MeasurementByLayerGrouper.h.

Member Typedef Documentation

Definition at line 17 of file MeasurementByLayerGrouper.h.

Constructor & Destructor Documentation

MeasurementByLayerGrouper::MeasurementByLayerGrouper ( const GeometricSearchTracker search = 0)
inlineexplicit

Definition at line 24 of file MeasurementByLayerGrouper.h.

24 :theGeomSearch(search){};
const GeometricSearchTracker * theGeomSearch

Member Function Documentation

const DetLayer * MeasurementByLayerGrouper::getDetLayer ( const TM tm) const
private

Definition at line 49 of file MeasurementByLayerGrouper.cc.

References Exception, TrajectoryMeasurement::layer(), LogDebug, and TrajectoryMeasurement::recHit().

49  {
50  // if the DetLayer is set in the TM...
51  if (tm.layer()) return tm.layer();
52 
53  //if it corresponds to an invalid hit with no geomdet associated
54  //we can't retrieve the DetLayer
55  //because unfortunately the detlayer is not set in these cases
56  //returns 0 for the moment
57  //to be revisited
58 
59  if (tm.recHit()->det()==0){
60  LogDebug("MeasurementByLayerGrouper") <<"This hit has no geomdet associated skipping... ";
61  return 0;
62  }
63 
64  //now the cases in which the detid is set
65 
66  if (!theGeomSearch) {
67  throw cms::Exception("MeasurementByLayerGrouper") << "Impossible to retrieve the det layer because it's not set in the TM and the pointer to the GeometricSearchTracker is 0 ";
68  return 0;
69  }
70 
71  return theGeomSearch->detLayer(tm.recHit()->det()->geographicalId());
72 }
#define LogDebug(id)
const DetLayer * detLayer(const DetId &id) const
obsolete method. Use idToLayer() instead.
const GeometricSearchTracker * theGeomSearch
vector< pair< const DetLayer *, vector< TrajectoryMeasurement > > > MeasurementByLayerGrouper::operator() ( const std::vector< TM > &  vtm) const

Definition at line 10 of file MeasurementByLayerGrouper.cc.

References getDetLayer(), watchdog::group, LogTrace, query::result, and dqm_diff::start.

10  {
11 
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 {ipart++;}
23  while(ipart != vtm.end() &&
24  getDetLayer(*start)==getDetLayer(*ipart) &&
25  getDetLayer(*start) != 0 //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),
36  group));
37  start = ipart;
38  }
39 #ifdef debug_MeasurementByLayerGrouper_
40  for (vector<pair<const DetLayer*, vector<TM> > >::const_iterator iter = result.begin(); iter != result.end(); iter++){
41  LogTrace("MeasurementByLayerGrouper|SiTrackerMultiRecHitUpdator") << "DetLayer " << iter->first << " has " << iter->second.size() << " measurements";
42  }
43 #endif
44 
45 
46  return result;
47 }
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
tuple result
Definition: query.py:137
#define LogTrace(id)
tuple group
Definition: watchdog.py:82
const DetLayer * getDetLayer(const TM &tm) const

Member Data Documentation

const GeometricSearchTracker* MeasurementByLayerGrouper::theGeomSearch
private

Definition at line 18 of file MeasurementByLayerGrouper.h.