CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Protected Attributes
GeometricSearchDet Class Referenceabstract

#include <GeometricSearchDet.h>

Inheritance diagram for GeometricSearchDet:
CompositeTECPetal DetLayer DetRod ForwardDetRing Phase1PixelBlade Phase2EndcapRing PixelBlade TECWedge TIBRing TIDRing

Public Types

typedef std::pair< const GeomDet *, TrajectoryStateOnSurfaceDetWithState
 
typedef BoundSurface::PositionType PositionType
 
typedef BoundSurface::RotationType RotationType
 
typedef TrajectoryStateOnSurface TrajectoryState
 

Public Member Functions

virtual const std::vector< const GeomDet * > & basicComponents () const =0
 
virtual std::pair< bool, TrajectoryStateOnSurfacecompatible (const TrajectoryStateOnSurface &ts, const Propagator &, const MeasurementEstimator &) const =0
 
virtual std::vector< DetWithStatecompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 
virtual void compatibleDetsV (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetWithState > &result) const
 
virtual const std::vector< const GeometricSearchDet * > & components () const =0
 Returns basic components, if any. More...
 
 GeometricSearchDet (bool doHaveGroups)
 
virtual std::vector< DetGroupgroupedCompatibleDets (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
 
virtual void groupedCompatibleDetsV (const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const
 
bool hasGroups () const
 
virtual const Surface::PositionTypeposition () const
 Returns position of the surface. More...
 
virtual const BoundSurfacesurface () const =0
 The surface of the GeometricSearchDet. More...
 
virtual ~GeometricSearchDet ()
 

Protected Attributes

bool haveGroups
 
GeomDetCompatibilityChecker theCompatibilityChecker
 

Detailed Description

Definition at line 19 of file GeometricSearchDet.h.

Member Typedef Documentation

Definition at line 21 of file GeometricSearchDet.h.

Definition at line 22 of file GeometricSearchDet.h.

Definition at line 23 of file GeometricSearchDet.h.

Definition at line 24 of file GeometricSearchDet.h.

Constructor & Destructor Documentation

GeometricSearchDet::GeometricSearchDet ( bool  doHaveGroups)
inline

Definition at line 26 of file GeometricSearchDet.h.

References surface(), and ~GeometricSearchDet().

26 : haveGroups(doHaveGroups) {}
GeometricSearchDet::~GeometricSearchDet ( )
virtual

Definition at line 6 of file GeometricSearchDet.cc.

Referenced by GeometricSearchDet().

6 {}

Member Function Documentation

virtual const std::vector<const GeomDet*>& GeometricSearchDet::basicComponents ( ) const
pure virtual
virtual std::pair<bool, TrajectoryStateOnSurface> GeometricSearchDet::compatible ( const TrajectoryStateOnSurface ts,
const Propagator ,
const MeasurementEstimator  
) const
pure 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.

Implemented in CompositeTECPetal, MuDetRod, BarrelDetLayer, MuDetRing, Phase2OTBarrelRod, ForwardDetLayer, Phase1PixelBlade, TOBRod, PixelBlade, Phase2EndcapRing, TIDRing, CompositeTECWedge, TIBRing, SimpleTECWedge, and PixelRod.

Referenced by LayerMeasurements::groupedMeasurements(), LayerMeasurements::measurements(), and position().

std::vector< GeometricSearchDet::DetWithState > GeometricSearchDet::compatibleDets ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est 
) const
virtual

Returns all Dets compatible with a trajectory state according to the estimator est. The startingState should be propagated to the surface of each compatible Det using the Propagator passed as an argument. The default implementation should be overridden in dets with specific surface types to avoid propagation to a generic Surface

Reimplemented in MuDetRod, and MuDetRing.

Definition at line 39 of file GeometricSearchDet.cc.

References compatibleDetsV(), and mps_fire::result.

Referenced by CkfDebugger::analyseRecHitNotFound(), MuRodBarrelLayer::compatibleDets(), MuRingForwardLayer::compatibleDets(), TrajectoryManager::createPSimHits(), TSGFromPropagation::findMeasurements_new(), FastTSGFromPropagation::findMeasurements_new(), PropagateToMuon::getBestDet(), CosmicTrackingRegion::hits_(), fastsim::TrackerSimHitProducer::interact(), TrajSeedMatcher::layerHasValidHits(), LayerMeasurements::measurements(), MuonDetLayerMeasurements::measurements(), position(), ConvBremSeedProducer::produce(), L2MuonSeedGeneratorFromL1T::produce(), L2MuonSeedGenerator::produce(), TkMSParameterizationBuilder::produce(), LayerMeasurements::recHits(), and PropagateToMuon::startingState().

41  {
42  std::vector<DetWithState> result;
43  compatibleDetsV( startingState, prop, est,result);
44  return result;
45 }
virtual void compatibleDetsV(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetWithState > &result) const
void GeometricSearchDet::compatibleDetsV ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est,
std::vector< DetWithState > &  result 
) const
virtual

Reimplemented in PixelRod, and ForwardDetRing.

Definition at line 9 of file GeometricSearchDet.cc.

References groupedCompatibleDetsV(), hasGroups(), and UNLIKELY.

Referenced by CompatibleDetToGroupAdder::add(), compatibleDets(), OutsideInMuonSeeder::doLayer(), TSGForOI::findSeedsOnLayer(), TSGForRoadSearch::makeSeeds_0(), TSGForRoadSearch::makeSeeds_3(), TSGForRoadSearch::makeSeeds_4(), TSGForOI::makeSeedsFromHits(), TSGForOIFromL2::makeSeedsFromHits(), TSGForOIFromL2::makeSeedsWithoutHits(), and position().

12  {
13 
14  if UNLIKELY(!hasGroups()) edm::LogError("DetLayers") << "At the moment not a real implementation" ;
15 
16 
17  // standard implementation of compatibleDets() for class which have
18  // groupedCompatibleDets implemented.
19 
20  std::vector<DetGroup> vectorGroups;
21  groupedCompatibleDetsV(startingState,prop,est,vectorGroups);
22  for(auto itDG=vectorGroups.begin(); itDG!=vectorGroups.end();itDG++){
23  for(auto itDGE=itDG->begin(); itDGE!=itDG->end();itDGE++){
24  result.emplace_back(itDGE->det(),itDGE->trajectoryState());
25  }
26  }
27 }
virtual void groupedCompatibleDetsV(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const
#define end
Definition: vmac.h:39
#define begin
Definition: vmac.h:32
HLT enums.
double a
Definition: hdecay.h:121
#define UNLIKELY(x)
virtual const std::vector<const GeometricSearchDet*>& GeometricSearchDet::components ( ) const
pure virtual
std::vector< DetGroup > GeometricSearchDet::groupedCompatibleDets ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est 
) const
virtual

Similar to compatibleDets(), but the compatible Dets are grouped in one or more groups. Dets are put in the same group if they are mutually exclusive for track crossing, i.e. a reconstructible track cannot cross more than one Det from a group. Pathological tracks (spirals etc.) can of course violate this rule.
The DetGroups are sorted in the sequence of crossing by a track. In order to define the direction of crossing the Propagator used in this method should have a defined direction() : either "alongMomentum" or "oppositeToMomentum" but not "anyDirection".
The three signatures of this method differ by the input trajectory state arguments: the starting state can be a TrajectoryStateOnSurface or a FreeTrajectoryState, and the state on this CompositeDet may be already known or not. The last two arguments are as for the method compatibleDets().
First signature: The first argument is a TrajectoryStateOnSurface, usually not on the surface of this CompositeDet.

Reimplemented in MuDetRod, and MuDetRing.

Definition at line 48 of file GeometricSearchDet.cc.

References groupedCompatibleDetsV(), and mps_fire::result.

Referenced by LayerMeasurements::groupedMeasurements(), MuonDetLayerMeasurements::groupedMeasurements(), and position().

50  {
51  std::vector<DetGroup> result;
52  groupedCompatibleDetsV(startingState, prop, est,result);
53  return result;
54 }
virtual void groupedCompatibleDetsV(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est, std::vector< DetGroup > &result) const
void GeometricSearchDet::groupedCompatibleDetsV ( const TrajectoryStateOnSurface startingState,
const Propagator prop,
const MeasurementEstimator est,
std::vector< DetGroup > &  result 
) const
virtual
bool GeometricSearchDet::hasGroups ( ) const
inline
virtual const Surface::PositionType& GeometricSearchDet::position ( ) const
inlinevirtual

Returns position of the surface.

Definition at line 33 of file GeometricSearchDet.h.

References basicComponents(), compatible(), compatibleDets(), compatibleDetsV(), components(), groupedCompatibleDets(), groupedCompatibleDetsV(), GloballyPositioned< T >::position(), mps_fire::result, and surface().

Referenced by TkLayerLess::barrelForwardLess(), MuDetRing::compatibleDets(), CompositeTECWedge::CompositeTECWedge(), PixelForwardLayer::computeHelicity(), PixelForwardLayerPhase1::computeHelicity(), fastsim::SimplifiedGeometryFactory::createSimplifiedGeometry(), MultipleScatteringGeometry::detLayers(), RectangularEtaPhiTrackingRegion::estimator(), HitPairGeneratorFromLayerPairForPhotonConversion::getLayerZ(), MultiHitGeneratorFromChi2::hitSets(), PixelTripletNoTipGenerator::hitTriplets(), PixelTripletLargeTipGenerator::hitTriplets(), PixelTripletHLTGenerator::hitTriplets(), ThirdHitCorrection::init(), MuDetRing::init(), InnerDeltaPhi::initForwardLayer(), InnerDeltaPhi::initForwardMS(), ThirdHitRZPredictionBase::initLayer(), ThirdHitPrediction::initLayer(), TkLayerLess::insideOutLess(), TkLayerLess::insideOutLessSigned(), SimpleNavigationSchool::linkNextBarrelLayer(), SimpleNavigationSchool::linkOuterGroup(), SymmetricLayerFinder::mirrorPartner(), MSLayer::MSLayer(), DetBelowR::operator()(), DetLessZ::operator()(), DetBelowZ::operator()(), TIBLayer::overlap(), Phase1PixelBlade::Phase1PixelBlade(), PixelBlade::PixelBlade(), PixelForwardLayerPhase1::PixelForwardLayerPhase1(), L2MuonSeedGeneratorFromL1T::produce(), L2MuonSeedGenerator::produce(), SimpleBarrelNavigableLayer::setAdditionalLink(), SimpleTECWedge::SimpleTECWedge(), and TECLayer::TECLayer().

33 {return surface().position();}
virtual const BoundSurface & surface() const =0
The surface of the GeometricSearchDet.
const PositionType & position() const
virtual const BoundSurface& GeometricSearchDet::surface ( ) const
pure virtual

Member Data Documentation

bool GeometricSearchDet::haveGroups
protected

Definition at line 111 of file GeometricSearchDet.h.

Referenced by hasGroups().

GeomDetCompatibilityChecker GeometricSearchDet::theCompatibilityChecker
protected