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
TIDRing Class Reference

#include <TIDRing.h>

Inheritance diagram for TIDRing:
GeometricSearchDetWithGroups GeometricSearchDet

Public Member Functions

virtual const std::vector
< const GeomDet * > & 
basicComponents () const
 
virtual std::pair< bool,
TrajectoryStateOnSurface
compatible (const TrajectoryStateOnSurface &, const Propagator &, const MeasurementEstimator &) const
 
virtual const std::vector
< const GeometricSearchDet * > & 
components () const
 Returns basic components, if any. More...
 
void groupedCompatibleDetsV (const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const
 
virtual const BoundDiskspecificSurface () const
 
virtual const BoundSurfacesurface () const
 The surface of the GeometricSearchDet. More...
 
 TIDRing (std::vector< const GeomDet * > &innerDets, std::vector< const GeomDet * > &outerDets)
 
 ~TIDRing ()
 
- Public Member Functions inherited from GeometricSearchDetWithGroups
void compatibleDetsV (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetWithState > &result) const
 
bool hasGroups () const
 
- Public Member Functions inherited from GeometricSearchDet
virtual std::vector< DetWithStatecompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 
 GeometricSearchDet ()
 
virtual std::vector< DetGroupgroupedCompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 
virtual const
Surface::PositionType
position () const
 Returns position of the surface. More...
 
virtual ~GeometricSearchDet ()
 

Private Types

typedef PeriodicBinFinderInPhi
< double > 
BinFinderType
 

Private Member Functions

bool addClosest (const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, std::vector< DetGroup > &result) const
 
SubLayerCrossings computeCrossings (const TrajectoryStateOnSurface &tsos, PropagationDirection propDir) const
 
void searchNeighbors (const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, float window, std::vector< DetGroup > &result, bool checkClosest) const
 
const std::vector< const
GeomDet * > & 
subLayer (int ind) const
 

Private Attributes

BinFinderType theBackBinFinder
 
std::vector< const GeomDet * > theBackDets
 
ReferenceCountingPointer
< BoundDisk
theBackDisk
 
std::vector< const GeomDet * > theDets
 
ReferenceCountingPointer
< BoundDisk
theDisk
 
BinFinderType theFrontBinFinder
 
std::vector< const GeomDet * > theFrontDets
 
ReferenceCountingPointer
< BoundDisk
theFrontDisk
 

Additional Inherited Members

- Public Types inherited from GeometricSearchDetWithGroups
typedef
GeometricSearchDet::DetWithState 
DetWithState
 
- Public Types inherited from GeometricSearchDet
typedef std::pair< const
GeomDet
*, TrajectoryStateOnSurface
DetWithState
 
typedef BoundSurface::PositionType PositionType
 
typedef BoundSurface::RotationType RotationType
 
typedef TrajectoryStateOnSurface TrajectoryState
 
- Protected Attributes inherited from GeometricSearchDet
GeomDetCompatibilityChecker theCompatibilityChecker
 

Detailed Description

A concrete implementation for TID rings

Definition at line 14 of file TIDRing.h.

Member Typedef Documentation

Definition at line 75 of file TIDRing.h.

Constructor & Destructor Documentation

TIDRing::TIDRing ( std::vector< const GeomDet * > &  innerDets,
std::vector< const GeomDet * > &  outerDets 
)

Definition at line 25 of file TIDRing.cc.

References LogDebug, theBackBinFinder, theBackDets, theBackDisk, theDets, theDisk, theFrontBinFinder, theFrontDets, and theFrontDisk.

26  :
27  theFrontDets(innerDets.begin(),innerDets.end()),
28  theBackDets(outerDets.begin(),outerDets.end())
29 {
30  theDets.assign(theFrontDets.begin(),theFrontDets.end());
31  theDets.insert(theDets.end(),theBackDets.begin(),theBackDets.end());
32 
33 
34  // the dets should be already phi-ordered. TO BE CHECKED
35  //sort( theFrontDets.begin(), theFrontDets.end(), DetLessPhi() );
36  //sort( theBackDets.begin(), theBackDets.end(), DetLessPhi() );
37 
39 
42 
43  theFrontBinFinder = BinFinderType( theFrontDets.front()->surface().position().phi(),
44  theFrontDets.size());
45  theBackBinFinder = BinFinderType( theBackDets.front()->surface().position().phi(),
46  theBackDets.size());
47 
48 
49 
50  LogDebug("TkDetLayers") << "DEBUG INFO for TIDRing" ;
51  for(vector<const GeomDet*>::const_iterator it=theFrontDets.begin();
52  it!=theFrontDets.end(); it++){
53  LogDebug("TkDetLayers") << "frontDet phi,z,r: "
54  << (*it)->surface().position().phi() << " , "
55  << (*it)->surface().position().z() << " , "
56  << (*it)->surface().position().perp() ;
57  }
58 
59  for(vector<const GeomDet*>::const_iterator it=theBackDets.begin();
60  it!=theBackDets.end(); it++){
61  LogDebug("TkDetLayers") << "backDet phi,z,r: "
62  << (*it)->surface().position().phi() << " , "
63  << (*it)->surface().position().z() << " , "
64  << (*it)->surface().position().perp() ;
65  }
66 
67 
68 }
#define LogDebug(id)
std::vector< const GeomDet * > theDets
Definition: TIDRing.h:67
BinFinderType theFrontBinFinder
Definition: TIDRing.h:77
PeriodicBinFinderInPhi< double > BinFinderType
Definition: TIDRing.h:75
std::vector< const GeomDet * > theFrontDets
Definition: TIDRing.h:68
ReferenceCountingPointer< BoundDisk > theBackDisk
Definition: TIDRing.h:73
ReferenceCountingPointer< BoundDisk > theFrontDisk
Definition: TIDRing.h:72
ReferenceCountingPointer< BoundDisk > theDisk
Definition: TIDRing.h:71
BinFinderType theBackBinFinder
Definition: TIDRing.h:78
std::vector< const GeomDet * > theBackDets
Definition: TIDRing.h:69
TIDRing::~TIDRing ( )

Definition at line 70 of file TIDRing.cc.

70  {
71 
72 }

Member Function Documentation

bool TIDRing::addClosest ( const TrajectoryStateOnSurface tsos,
const Propagator prop,
const MeasurementEstimator est,
const SubLayerCrossing crossing,
std::vector< DetGroup > &  result 
) const
private

Definition at line 162 of file TIDRing.cc.

References CompatibleDetToGroupAdder::add(), SubLayerCrossing::closestDetIndex(), subLayer(), and SubLayerCrossing::subLayerIndex().

Referenced by groupedCompatibleDetsV().

167 {
168  const vector<const GeomDet*>& sub( subLayer( crossing.subLayerIndex()));
169  const GeomDet* det(sub[crossing.closestDetIndex()]);
170  return CompatibleDetToGroupAdder::add( *det, tsos, prop, est, result);
171 }
int closestDetIndex() const
int subLayerIndex() const
tuple result
Definition: query.py:137
static bool add(const GeometricSearchDet &det, const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result)
const std::vector< const GeomDet * > & subLayer(int ind) const
Definition: TIDRing.h:61
virtual const std::vector<const GeomDet*>& TIDRing::basicComponents ( ) const
inlinevirtual

Implements GeometricSearchDet.

Definition at line 23 of file TIDRing.h.

References theDets.

23 {return theDets;}
std::vector< const GeomDet * > theDets
Definition: TIDRing.h:67
pair< bool, TrajectoryStateOnSurface > TIDRing::compatible ( const TrajectoryStateOnSurface ts,
const Propagator ,
const MeasurementEstimator  
) const
virtual

tests the geometrical compatibility of the Det with the predicted state. The FreeTrajectoryState argument is propagated to the Det surface using the Propagator argument. The resulting TrajectoryStateOnSurface is tested for compatibility with the surface bounds. If compatible, a std::pair< true, propagatedState> is returned. If the propagation fails, or if the state is not compatible, a std::pair< false, propagatedState> is returned.

Implements GeometricSearchDet.

Definition at line 82 of file TIDRing.cc.

83  {
84  edm::LogError("TkDetLayers") << "temporary dummy implementation of TIDRing::compatible()!!" ;
85  return pair<bool,TrajectoryStateOnSurface>();
86 }
const vector< const GeometricSearchDet * > & TIDRing::components ( ) const
virtual

Returns basic components, if any.

Returns direct components, if any

Implements GeometricSearchDet.

Definition at line 75 of file TIDRing.cc.

76 {
77  throw DetLayerException("TIDRing doesn't have GeometricSearchDet components");
78 }
Common base class.
SubLayerCrossings TIDRing::computeCrossings ( const TrajectoryStateOnSurface tsos,
PropagationDirection  propDir 
) const
private

Definition at line 120 of file TIDRing.cc.

References abs, PeriodicBinFinderInPhi< T >::binIndex(), Geom::deltaPhi(), TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), GloballyPositioned< T >::phi(), rho, surface(), theBackBinFinder, theBackDets, theBackDisk, theFrontBinFinder, theFrontDets, theFrontDisk, and TrajectoryStateOnSurface::transverseCurvature().

Referenced by groupedCompatibleDetsV().

122 {
123  double rho( startingState.transverseCurvature());
124 
125  HelixPlaneCrossing::PositionType startPos( startingState.globalPosition() );
126  HelixPlaneCrossing::DirectionType startDir( startingState.globalMomentum() );
127  HelixForwardPlaneCrossing crossing(startPos,startDir,rho,propDir);
128 
129  pair<bool,double> frontPath = crossing.pathLength( *theFrontDisk);
130  if (!frontPath.first) return SubLayerCrossings();
131 
132  GlobalPoint gFrontPoint(crossing.position(frontPath.second));
133 
134  int frontIndex = theFrontBinFinder.binIndex(gFrontPoint.phi());
135  SubLayerCrossing frontSLC( 0, frontIndex, gFrontPoint);
136 
137 
138 
139  pair<bool,double> backPath = crossing.pathLength( *theBackDisk);
140  if (!backPath.first) return SubLayerCrossings();
141 
142  GlobalPoint gBackPoint( crossing.position(backPath.second));
143  int backIndex = theBackBinFinder.binIndex(gBackPoint.phi());
144  SubLayerCrossing backSLC( 1, backIndex, gBackPoint);
145 
146 
147  // 0ss: frontDisk has index=0, backDisk has index=1
148  float frontDist = std::abs(Geom::deltaPhi( double(gFrontPoint.barePhi()),
149  double(theFrontDets[frontIndex]->surface().phi())));
150  float backDist = std::abs(Geom::deltaPhi( double(gBackPoint.barePhi()),
151  double(theBackDets[backIndex]->surface().phi())));
152 
153 
154  if (frontDist < backDist) {
155  return SubLayerCrossings( frontSLC, backSLC, 0);
156  }
157  else {
158  return SubLayerCrossings( backSLC, frontSLC, 1);
159  }
160 }
double deltaPhi(float phi1, float phi2)
Definition: VectorUtil.h:30
Definition: DDAxes.h:10
#define abs(x)
Definition: mlp_lapack.h:159
BinFinderType theFrontBinFinder
Definition: TIDRing.h:77
virtual int binIndex(T phi) const
returns an index in the valid range for the bin that contains phi
std::vector< const GeomDet * > theFrontDets
Definition: TIDRing.h:68
ReferenceCountingPointer< BoundDisk > theBackDisk
Definition: TIDRing.h:73
virtual const BoundSurface & surface() const
The surface of the GeometricSearchDet.
Definition: TIDRing.h:21
ReferenceCountingPointer< BoundDisk > theFrontDisk
Definition: TIDRing.h:72
BinFinderType theBackBinFinder
Definition: TIDRing.h:78
std::vector< const GeomDet * > theBackDets
Definition: TIDRing.h:69
void TIDRing::groupedCompatibleDetsV ( const TrajectoryStateOnSurface tsos,
const Propagator prop,
const MeasurementEstimator est,
std::vector< DetGroup > &  result 
) const
virtual

Reimplemented from GeometricSearchDet.

Definition at line 91 of file TIDRing.cc.

References addClosest(), SubLayerCrossings::closest(), SubLayerCrossings::closestIndex(), computeCrossings(), tkDetUtil::computeWindowSize(), LayerCrossingSide::endcapSide(), SubLayerCrossings::isValid(), DetGroupMerger::orderAndMergeTwoLevels(), SubLayerCrossings::other(), Propagator::propagationDirection(), and searchNeighbors().

95 {
96  SubLayerCrossings crossings;
97  crossings = computeCrossings( tsos, prop.propagationDirection());
98  if(! crossings.isValid()) return;
99 
100  std::vector<DetGroup> closestResult;
101  addClosest( tsos, prop, est, crossings.closest(), closestResult);
102  if (closestResult.empty()) return;
103 
104  DetGroupElement closestGel( closestResult.front().front());
105  float phiWindow = tkDetUtil::computeWindowSize( closestGel.det(), closestGel.trajectoryState(), est);
106  searchNeighbors( tsos, prop, est, crossings.closest(), phiWindow,
107  closestResult, false);
108 
109  vector<DetGroup> nextResult;
110  searchNeighbors( tsos, prop, est, crossings.other(), phiWindow,
111  nextResult, true);
112 
113  int crossingSide = LayerCrossingSide().endcapSide( closestGel.trajectoryState(), prop);
114  DetGroupMerger::orderAndMergeTwoLevels( closestResult, nextResult, result,
115  crossings.closestIndex(), crossingSide);
116 }
static void orderAndMergeTwoLevels(const std::vector< DetGroup > &one, const std::vector< DetGroup > &two, std::vector< DetGroup > &result, int firstIndex, int firstCrossed)
virtual PropagationDirection propagationDirection() const
Definition: Propagator.h:143
void searchNeighbors(const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, float window, std::vector< DetGroup > &result, bool checkClosest) const
Definition: TIDRing.cc:175
int closestIndex() const
float computeWindowSize(const GeomDet *det, const TrajectoryStateOnSurface &tsos, const MeasurementEstimator &est)
Definition: TkDetUtil.cc:31
int endcapSide(const TrajectoryStateOnSurface &startingState, const Propagator &prop) const
tuple result
Definition: query.py:137
bool addClosest(const TrajectoryStateOnSurface &tsos, const Propagator &prop, const MeasurementEstimator &est, const SubLayerCrossing &crossing, std::vector< DetGroup > &result) const
Definition: TIDRing.cc:162
const SubLayerCrossing & other() const
const SubLayerCrossing & closest() const
SubLayerCrossings computeCrossings(const TrajectoryStateOnSurface &tsos, PropagationDirection propDir) const
Definition: TIDRing.cc:120
void TIDRing::searchNeighbors ( const TrajectoryStateOnSurface tsos,
const Propagator prop,
const MeasurementEstimator est,
const SubLayerCrossing crossing,
float  window,
std::vector< DetGroup > &  result,
bool  checkClosest 
) const
private

Definition at line 175 of file TIDRing.cc.

References Clusterizer1DCommons::add(), PV3DBase< T, PVType, FrameType >::barePhi(), PeriodicBinFinderInPhi< T >::binIndex(), SubLayerCrossing::closestDetIndex(), tkDetUtil::overlapInPhi(), Geom::phiLess(), SubLayerCrossing::position(), subLayer(), SubLayerCrossing::subLayerIndex(), theBackBinFinder, and theFrontBinFinder.

Referenced by groupedCompatibleDetsV().

182 {
183  GlobalPoint gCrossingPos = crossing.position();
184 
185  const vector<const GeomDet*>& sLayer( subLayer( crossing.subLayerIndex()));
186 
187  int closestIndex = crossing.closestDetIndex();
188  int negStartIndex = closestIndex-1;
189  int posStartIndex = closestIndex+1;
190 
191  if (checkClosest) { // must decide if the closest is on the neg or pos side
192  if ( Geom::phiLess( gCrossingPos.barePhi(), sLayer[closestIndex]->surface().phi())) {
193  posStartIndex = closestIndex;
194  }
195  else {
196  negStartIndex = closestIndex;
197  }
198  }
199 
200  const BinFinderType& binFinder = (crossing.subLayerIndex()==0 ? theFrontBinFinder : theBackBinFinder);
201 
202  typedef CompatibleDetToGroupAdder Adder;
203  int half = sLayer.size()/2; // to check if dets are called twice....
204  for (int idet=negStartIndex; idet >= negStartIndex - half; idet--) {
205  const GeomDet & neighborDet = *sLayer[binFinder.binIndex(idet)];
206  if (!tkDetUtil::overlapInPhi( gCrossingPos, neighborDet, window)) break;
207  if (!Adder::add( neighborDet, tsos, prop, est, result)) break;
208  // maybe also add shallow crossing angle test here???
209  }
210  for (int idet=posStartIndex; idet < posStartIndex + half; idet++) {
211  const GeomDet & neighborDet = *sLayer[binFinder.binIndex(idet)];
212  if (!tkDetUtil::overlapInPhi( gCrossingPos, neighborDet, window)) break;
213  if (!Adder::add( neighborDet, tsos, prop, est, result)) break;
214  // maybe also add shallow crossing angle test here???
215  }
216 }
def window
Definition: svgfig.py:642
int closestDetIndex() const
void add(const std::vector< const T * > &source, std::vector< const T * > &dest)
BinFinderType theFrontBinFinder
Definition: TIDRing.h:77
const GlobalPoint & position() const
T barePhi() const
Definition: PV3DBase.h:67
PeriodicBinFinderInPhi< double > BinFinderType
Definition: TIDRing.h:75
int subLayerIndex() const
bool overlapInPhi(const GlobalPoint &crossPoint, const GeomDet &det, float phiWindow)
Definition: TkDetUtil.cc:21
tuple result
Definition: query.py:137
bool phiLess(float phi1, float phi2)
Definition: VectorUtil.h:57
BinFinderType theBackBinFinder
Definition: TIDRing.h:78
const std::vector< const GeomDet * > & subLayer(int ind) const
Definition: TIDRing.h:61
virtual const BoundDisk& TIDRing::specificSurface ( ) const
inlinevirtual

Definition at line 38 of file TIDRing.h.

References theDisk.

38 {return *theDisk;}
ReferenceCountingPointer< BoundDisk > theDisk
Definition: TIDRing.h:71
const std::vector<const GeomDet*>& TIDRing::subLayer ( int  ind) const
inlineprivate

Definition at line 61 of file TIDRing.h.

References theBackDets, and theFrontDets.

Referenced by addClosest(), and searchNeighbors().

61  {
62  return (ind==0 ? theFrontDets : theBackDets);
63  }
std::vector< const GeomDet * > theFrontDets
Definition: TIDRing.h:68
std::vector< const GeomDet * > theBackDets
Definition: TIDRing.h:69
virtual const BoundSurface& TIDRing::surface ( ) const
inlinevirtual

The surface of the GeometricSearchDet.

Implements GeometricSearchDet.

Definition at line 21 of file TIDRing.h.

References theDisk.

Referenced by computeCrossings().

21 {return *theDisk;}
ReferenceCountingPointer< BoundDisk > theDisk
Definition: TIDRing.h:71

Member Data Documentation

BinFinderType TIDRing::theBackBinFinder
private

Definition at line 78 of file TIDRing.h.

Referenced by computeCrossings(), searchNeighbors(), and TIDRing().

std::vector<const GeomDet*> TIDRing::theBackDets
private

Definition at line 69 of file TIDRing.h.

Referenced by computeCrossings(), subLayer(), and TIDRing().

ReferenceCountingPointer<BoundDisk> TIDRing::theBackDisk
private

Definition at line 73 of file TIDRing.h.

Referenced by computeCrossings(), and TIDRing().

std::vector<const GeomDet*> TIDRing::theDets
private

Definition at line 67 of file TIDRing.h.

Referenced by basicComponents(), and TIDRing().

ReferenceCountingPointer<BoundDisk> TIDRing::theDisk
private

Definition at line 71 of file TIDRing.h.

Referenced by specificSurface(), surface(), and TIDRing().

BinFinderType TIDRing::theFrontBinFinder
private

Definition at line 77 of file TIDRing.h.

Referenced by computeCrossings(), searchNeighbors(), and TIDRing().

std::vector<const GeomDet*> TIDRing::theFrontDets
private

Definition at line 68 of file TIDRing.h.

Referenced by computeCrossings(), subLayer(), and TIDRing().

ReferenceCountingPointer<BoundDisk> TIDRing::theFrontDisk
private

Definition at line 72 of file TIDRing.h.

Referenced by computeCrossings(), and TIDRing().