CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Types | Public Member Functions | Protected Member Functions | Protected Attributes
Surface Class Referenceabstract

#include <Surface.h>

Inheritance diagram for Surface:
BasicReferenceCounted GloballyPositioned< float > Cone Cylinder Plane BoundDiskSector Disk

Public Types

using Base = GloballyPositioned< float >
 
using Side = SurfaceOrientation::Side
 
- Public Types inherited from GloballyPositioned< float >
typedef Point3DBase< float,
GlobalTag
GlobalPoint
 
typedef Vector3DBase< float,
GlobalTag
GlobalVector
 
typedef Point3DBase< float,
LocalTag
LocalPoint
 
typedef Vector3DBase< float,
LocalTag
LocalVector
 
typedef Point3DBase< float,
GlobalTag
PositionType
 
typedef TkRotation< float > RotationType
 
typedef float Scalar
 

Public Member Functions

const Boundsbounds () const
 
const MediumPropertiesmediumProperties () const
 
std::pair< float, float > const & phiSpan () const
 
std::pair< float, float > const & rSpan () const
 
void setMediumProperties (const MediumProperties &mp)
 
virtual Side side (const LocalPoint &p, Scalar tolerance=0) const =0
 
virtual Side side (const GlobalPoint &p, Scalar tolerance=0) const
 
virtual
ConstReferenceCountingPointer
< TangentPlane
tangentPlane (const GlobalPoint &) const =0
 
virtual
ConstReferenceCountingPointer
< TangentPlane
tangentPlane (const LocalPoint &) const =0
 
GlobalPoint toGlobal (const Point2DBase< Scalar, LocalTag > lp) const
 
std::pair< float, float > const & zSpan () const
 
 ~Surface () override
 
- Public Member Functions inherited from BasicReferenceCounted
void addReference () const
 
 BasicReferenceCounted ()
 
 BasicReferenceCounted (const BasicReferenceCounted &)
 
 BasicReferenceCounted (BasicReferenceCounted &&)
 
BasicReferenceCountedoperator= (BasicReferenceCounted &&)
 
BasicReferenceCountedoperator= (const BasicReferenceCounted &)
 
unsigned int references () const
 
void removeReference () const
 
virtual ~BasicReferenceCounted ()
 
- Public Member Functions inherited from GloballyPositioned< float >
float eta () const
 
 GloballyPositioned ()
 
 GloballyPositioned (const PositionType &pos, const RotationType &rot)
 
void move (const GlobalVector &displacement)
 
float phi () const
 
const PositionTypeposition () const
 
void rotate (const RotationType &rotation)
 
const RotationTyperotation () const
 
GlobalPoint toGlobal (const LocalPoint &lp) const
 
Point3DBase< U, GlobalTagtoGlobal (const Point3DBase< U, LocalTag > &lp) const
 
GlobalVector toGlobal (const LocalVector &lv) const
 
Vector3DBase< U, GlobalTagtoGlobal (const Vector3DBase< U, LocalTag > &lv) const
 
LocalPoint toLocal (const GlobalPoint &gp) const
 
Point3DBase< U, LocalTagtoLocal (const Point3DBase< U, GlobalTag > &gp) const
 
LocalVector toLocal (const GlobalVector &gv) const
 
Vector3DBase< U, LocalTagtoLocal (const Vector3DBase< U, GlobalTag > &gv) const
 
virtual ~GloballyPositioned ()
 

Protected Member Functions

 Surface ()
 
 Surface (const PositionType &pos, const RotationType &rot)
 
 Surface (const PositionType &pos, const RotationType &rot, Bounds *bounds)
 
 Surface (const PositionType &pos, const RotationType &rot, MediumProperties mp)
 
 Surface (const PositionType &pos, const RotationType &rot, MediumProperties mp, Bounds *bounds)
 
 Surface (const Surface &iSurface)
 
 Surface (Surface &&iSurface)
 

Protected Attributes

extstd::clone_ptr< BoundstheBounds
 
MediumProperties theMediumProperties
 

Additional Inherited Members

- Static Public Member Functions inherited from GloballyPositioned< float >
static float iniEta ()
 
static float iniPhi ()
 

Detailed Description

Base class for 2D surfaces in 3D space. May have MediumProperties. may have bounds The Bounds define a region AROUND the surface. Surfaces which differ only by the shape of their bounds are of the same "surface" type (e.g. Plane or Cylinder).

Definition at line 36 of file Surface.h.

Member Typedef Documentation

Definition at line 40 of file Surface.h.

Definition at line 38 of file Surface.h.

Constructor & Destructor Documentation

Surface::~Surface ( )
inlineoverride

Definition at line 42 of file Surface.h.

42 {}
Surface::Surface ( )
inlineprotected

Definition at line 45 of file Surface.h.

45 {}
Surface::Surface ( const PositionType pos,
const RotationType rot 
)
inlineprotected

Definition at line 46 of file Surface.h.

46 : Base(pos, rot) {}
GloballyPositioned< float > Base
Definition: Surface.h:40
Surface::Surface ( const PositionType pos,
const RotationType rot,
Bounds bounds 
)
inlineprotected

Definition at line 48 of file Surface.h.

48 : Base(pos, rot), theBounds(bounds) {}
GloballyPositioned< float > Base
Definition: Surface.h:40
extstd::clone_ptr< Bounds > theBounds
Definition: Surface.h:107
Surface::Surface ( const PositionType pos,
const RotationType rot,
MediumProperties  mp 
)
inlineprotected

Definition at line 50 of file Surface.h.

51  : Base(pos, rot), theMediumProperties(mp) {}
MediumProperties theMediumProperties
Definition: Surface.h:106
GloballyPositioned< float > Base
Definition: Surface.h:40
Surface::Surface ( const PositionType pos,
const RotationType rot,
MediumProperties  mp,
Bounds bounds 
)
inlineprotected

Definition at line 53 of file Surface.h.

54  : Base(pos, rot), theMediumProperties(mp), theBounds(bounds) {}
MediumProperties theMediumProperties
Definition: Surface.h:106
GloballyPositioned< float > Base
Definition: Surface.h:40
extstd::clone_ptr< Bounds > theBounds
Definition: Surface.h:107
Surface::Surface ( const Surface iSurface)
inlineprotected

Definition at line 56 of file Surface.h.

57  : ReferenceCountedInConditions(iSurface),
58  Base(iSurface),
60  theBounds(iSurface.theBounds) {}
MediumProperties theMediumProperties
Definition: Surface.h:106
GloballyPositioned< float > Base
Definition: Surface.h:40
BasicReferenceCounted ReferenceCountedInConditions
extstd::clone_ptr< Bounds > theBounds
Definition: Surface.h:107
Surface::Surface ( Surface &&  iSurface)
inlineprotected

Definition at line 62 of file Surface.h.

63  : ReferenceCountedInConditions(iSurface),
64  Base(iSurface),
66  theBounds(std::move(iSurface.theBounds)) {}
MediumProperties theMediumProperties
Definition: Surface.h:106
GloballyPositioned< float > Base
Definition: Surface.h:40
BasicReferenceCounted ReferenceCountedInConditions
def move
Definition: eostools.py:511
extstd::clone_ptr< Bounds > theBounds
Definition: Surface.h:107

Member Function Documentation

const Bounds& Surface::bounds ( ) const
inline

Definition at line 87 of file Surface.h.

References theBounds.

Referenced by SiStripHitEffFromCalibTree::algoAnalyze(), SiStripCalibLorentzAngle::algoBeginJob(), SiStripLAProfileBooker::analyze(), HitEff::analyze(), SiPixelLorentzAnglePCLWorker::analyze(), TkLayerLess::barrelForwardLess(), SiStripDetInfoFileWriter::beginRun(), SiPixelLorentzAnglePCLHarvester::beginRun(), SiPixelPhase1Analyzer::BookBarrelBins(), SiPixelPhase1Analyzer::BookForwardBins(), BoundDiskSector::bounds(), RPCGeometryBuilderFromCondDB::build(), Cylinder::build(), CSCGeometryBuilder::buildChamber(), RPCGeometryBuilder::buildGeometry(), MuonTrackLoader::buildTrackExtra(), TrackExtenderWithMTDT< TrackCollection >::buildTrackExtra(), GEMEfficiencyAnalyzer::checkBounds(), DTGeometryValidate::compareShape(), GEMGeometryValidate::compareShape(), RPCGeometryValidate::compareShape(), ME0GeometryValidate::compareShape(), CSCGeometryValidate::compareShape(), ValidateGeometry::compareShape(), MTDSectorForwardDoubleLayer::compatible(), MTDTrayBarrelLayer::compatibleDets(), MuRodBarrelLayer::compatibleDets(), BoundSpan::compute(), TIBLayer::computeWindowSize(), fastsim::TrackerSimHitProducer::createHitOnDetector(), FWTGeoRecoGeometryESProducer::createShape(), SiPixelLorentzAngleCalibration::derivatives(), SiStripBackplaneCalibration::derivatives(), SiPixelDigitizerAlgorithm::digitize(), shallow::drift(), Pixel3DDigitizerAlgorithm::drift(), Phase2TrackerDigitizerAlgorithm::drift(), SiPixelDigitizerAlgorithm::drift(), SiStripLorentzAngleCalibration::effectiveThickness(), InsideBoundsMeasurementEstimator::estimate(), Chi2MeasurementEstimatorBase::estimate(), RectangularEtaPhiTrackingRegion::estimator(), ApeEstimator::fillHitVariables(), Phase2StripCPE::fillParam(), StripCPE::fillParams(), ClusterShapeHitFilter::fillStripData(), ClusterShapeHitFilter::getCotangent(), MuonDetIdAssociator::getDetIdPoints(), HitPairGeneratorFromLayerPairForPhotonConversion::getLayerRadius(), HitPairGeneratorFromLayerPairForPhotonConversion::getLayerZ(), TrackDetectorAssociator::getTAMuonChamberMatches(), GlobalDetRodRangeZPhi::GlobalDetRodRangeZPhi(), PixelTripletNoTipGenerator::hitTriplets(), ThirdHitCorrection::init(), InnerDeltaPhi::initBarrelLayer(), InnerDeltaPhi::initBarrelMS(), InnerDeltaPhi::initForwardLayer(), ThirdHitRZPredictionBase::initLayer(), ThirdHitPrediction::initLayer(), Disk::innerRadius(), MuonDetIdAssociator::insideElement(), DeDxTools::IsFarFromBorder(), ShallowGainCalibration::isFarFromBorder(), SiStripGainFromData::IsFarFromBorder(), SimpleNavigationSchool::linkNextForwardLayer(), TrajectoryManager::makeSinglePSimHit(), SiStripGainCosmicCalculator::moduleThickness(), SiStripGainCosmicCalculator::moduleWidth(), MSLayer::MSLayer(), MuonResidualsFromTrack::MuonResidualsFromTrack(), CylinderBuilderFromDet::operator()(), Disk::outerRadius(), TIBLayer::overlap(), PixelBlade::overlap(), Phase1PixelBlade::overlap(), phiSpan(), VectorHitBuilderAlgorithmBase::printCluster(), MuonNavigationPrinter::printLayer(), TrackingRecHitStripGSPlugin::process(), StandaloneTrackMonitor::processClusters(), SiHitDigitizer::processHit(), StandaloneTrackMonitor::processHit(), DeDxEstimatorProducer::processHit(), MuonSimHitProducer::produce(), SiStripTrackingRecHitsValid::rechitanalysis(), SiStripTrackingRecHitsValid::rechitanalysis_matched(), rSpan(), SETPatternRecognition::segmentCleaning(), l1tVertexFinder::Stub::setModuleInfo(), StripSubClusterShapeFilterBase::testLastHit(), tmtt::TrackerModule::TrackerModule(), TrajectoryAtInvalidHit::TrajectoryAtInvalidHit(), ValidateGeometry::validateDTLayerGeometry(), TracktoRPC::ValidRPCSurface(), SimpleNavigableLayer::wellInside(), and zSpan().

87 { return *theBounds; }
extstd::clone_ptr< Bounds > theBounds
Definition: Surface.h:107
const MediumProperties& Surface::mediumProperties ( ) const
inline
std::pair<float, float> const& Surface::phiSpan ( ) const
inline

Definition at line 90 of file Surface.h.

References bounds(), and Bounds::phiSpan().

Referenced by SiPixelBadModuleReader::analyze(), PixelInactiveAreaFinder::badAdjecentDetsEndcap(), PixelInactiveAreaFinder::detInfo(), PixelInactiveAreaFinder::getPhiSpanBarrel(), barrelUtil::overlap(), and tkDetUtil::overlapInPhi().

90 { return bounds().phiSpan(); }
const Bounds & bounds() const
Definition: Surface.h:87
std::pair< float, float > const & phiSpan() const
Definition: Bounds.h:65
std::pair<float, float> const& Surface::rSpan ( ) const
inline

Definition at line 92 of file Surface.h.

References bounds(), and Bounds::rSpan().

Referenced by PixelInactiveAreaFinder::getRSpan().

92 { return bounds().rSpan(); }
const Bounds & bounds() const
Definition: Surface.h:87
std::pair< float, float > const & rSpan() const
Definition: Bounds.h:67
void Surface::setMediumProperties ( const MediumProperties mp)
inline

Definition at line 85 of file Surface.h.

References theMediumProperties.

85 { theMediumProperties = mp; }
MediumProperties theMediumProperties
Definition: Surface.h:106
virtual Side Surface::side ( const LocalPoint p,
Scalar  tolerance = 0 
) const
pure virtual

Returns the side of the surface on which the point is. Not defined for 1-sided surfaces (Moebius leaf etc.) For normal 2-sided surfaces the meaning of side is surface type dependent.

Implemented in Cylinder, Plane, and Cone.

virtual Side Surface::side ( const GlobalPoint p,
Scalar  tolerance = 0 
) const
inlinevirtual

Reimplemented in Plane, and Cone.

Definition at line 74 of file Surface.h.

References side(), tolerance, and GloballyPositioned< float >::toLocal().

Referenced by side().

74 { return side(toLocal(p), tolerance); }
const double tolerance
virtual Side side(const LocalPoint &p, Scalar tolerance=0) const =0
LocalPoint toLocal(const GlobalPoint &gp) const
virtual ConstReferenceCountingPointer<TangentPlane> Surface::tangentPlane ( const GlobalPoint ) const
pure virtual

Tangent plane to surface from global point. Returns a plane, tangent to the Surface at a point. The point must be on the surface. The return type is a ReferenceCountingPointer, so the plane will be deleted automatically when no longer needed.

Implemented in Plane, Cylinder, and Cone.

Referenced by GlobalTrackerMuonAlignment::analyzeTrackTrack(), GlobalTrackerMuonAlignment::analyzeTrackTrajectory(), MuonSimHitProducer::applyMaterialEffects(), SteppingHelixStateInfo::getStateOnSurface(), fastsim::TrackerSimHitProducer::interact(), ConvBremSeedProducer::makeTrajectoryState(), TrajectoryManager::makeTrajectoryState(), and GlobalMuonTrackMatcher::samePlane().

virtual ConstReferenceCountingPointer<TangentPlane> Surface::tangentPlane ( const LocalPoint ) const
pure virtual

Tangent plane to surface from local point.

Implemented in Plane, Cylinder, and Cone.

GlobalPoint Surface::toGlobal ( const Point2DBase< Scalar, LocalTag lp) const
inline

Definition at line 79 of file Surface.h.

References PV2DBase< T, PointTag, FrameTag >::basicVector(), PV3DBase< T, PVType, FrameType >::basicVector(), GloballyPositioned< float >::position(), and GloballyPositioned< float >::rotation().

Referenced by Phase2TrackerDigitizerAlgorithm::accumulateSimHits(), SiPixelDigitizerAlgorithm::accumulateSimHits(), SiStripDigitizerAlgorithm::accumulateSimHits(), GEMPadDigiValidation::analyze(), GEMStripDigiValidation::analyze(), ME0DigisValidation::analyze(), ME0SegmentsValidation::analyze(), GEMPadDigiClusterValidation::analyze(), GEMSimHitValidation::analyze(), SiPixelTrackResidualSource::analyze(), OuterTrackerMonitorTTCluster::analyze(), OuterTrackerMonitorTTStub::analyze(), ElectronSeedAnalyzer::analyze(), TestHits::analyze(), TestSmoothHits::analyze(), TestTrackHits::analyze(), PixelLumiDQM::analyze(), SiPixelErrorEstimation::analyze(), SiPixelTrackingRecHitsValid::analyze(), TrackerTreeGenerator::analyze(), MuonGeometrySanityCheck::analyze(), analyzer::SiPixelLorentzAngle::analyze(), L1TrackObjectNtupleMaker::analyze(), SiPixelLorentzAnglePCLWorker::analyze(), TrackerDpgAnalysis::analyze(), OverlapValidation::analyzeTrajectory(), TrackingRecHitLessFromGlobalPosition::barrelForwardLess(), TrackerDpgAnalysis::beginRun(), SiPixelPhase1Analyzer::BookBarrelBins(), SiPixelPhase1Analyzer::BookForwardBins(), SeedFromGenericPairOrTriplet::buildSeed(), VectorHitBuilderAlgorithm::buildVectorHit(), barrelUtil::calculatePhiWindow(), tkDetUtil::calculatePhiWindow(), CSCLayer::centerOfStrip(), CSCLayer::centerOfWireGroup(), BoundSpan::compute(), SiPixelErrorEstimation::computeAnglesFromDetPosition(), RodPlaneBuilderFromDet::computeBounds(), TIBRing::computeHelicity(), VectorHitBuilderAlgorithmBase::computeParallaxCorrection(), Phase1PixelBlade::computeRadiusRanges(), PlaneBuilderForGluedDet::computeRectBounds(), RodPlaneBuilderFromDet::computeRotation(), PrimitiveConversion::convert_rpc(), fastsim::TrackerSimHitProducer::createHitOnDetector(), SiStripDigitizerAlgorithm::digitize(), DTDigiSyncTOFCorr::digitizerOffset(), AlignmentMonitorMuonResiduals::event(), AlignmentMonitorTracksFromTrajectories::event(), fastProp(), Cylinder::fastTangent(), SiPixelClusterModule::fill(), SiPixelRecHitsValid::fillBarrel(), SiPixelPhase1Analyzer::FillBins(), TrackerValidationVariables::fillHitQuantities(), Phase2TrackerMonitorDigi::fillITPixelDigiHistos(), Phase2TrackerMonitorDigi::fillOTDigiHistos(), Phase2TrackerValidateDigi::fillSimHitInfo(), TrackerOfflineValidationSummary::fillTree(), StubPtConsistency::getConsistency(), L1TMuon::GeometryTranslator::getGEMSpecificPoint(), DTTrigGeom::getGeom(), CSCSectorReceiverLUT::getGlobalEtaValue(), L1TMuon::GeometryTranslator::getME0SpecificPoint(), SiPixelClusterSource::getrococcupancye(), L1TMuon::GeometryTranslator::getRPCSpecificPoint(), TrackAssociatorByPositionImpl::getState(), ConversionSeedFilter::getTSOS(), CachedTrajectory::getWideTrajectory(), CSCDriftSim::getWireHit(), GlobalDetRodRangeZPhi::GlobalDetRodRangeZPhi(), VectorHit::globalDirectionVH(), TValidTrackingRecHit::globalPosition(), TRecHit5DParamConstraint::globalPosition(), TRecHit2DPosConstraint::globalPosition(), BaseTrackerRecHit::globalPosition(), RKPropagatorInS::gtpFromLocal(), HelixBarrelCylinderCrossing::HelixBarrelCylinderCrossing(), PixelBrickedDigitizerAlgorithm::induce_signal(), Pixel3DDigitizerAlgorithm::induce_signal(), Phase2TrackerDigitizerAlgorithm::induce_signal(), TrackingRecHitLessFromGlobalPosition::insideOutLess(), JacobianCurvilinearToLocal::JacobianCurvilinearToLocal(), JacobianLocalToCurvilinear::JacobianLocalToCurvilinear(), tmtt::StubKiller::killStub(), TrajectoryManager::makeSinglePSimHit(), CosmicParametersDefinerForTP::momentum(), multiTrajectoryStateMode::momentumFromModeLocal(), GeneralNSurfaceDelimitedBounds::myInside(), RKPropagatorInR::myPropagate(), ConversionHitChecker::nHitsBeforeVtx(), PropagationDirectionChooser::operator()(), CosmicTrackingParticleSelector::operator()(), SeedFromNuclearInteraction::outerHitPosition(), StraightLineBarrelCylinderCrossing::pathLength(), VectorHit::phase2clusterGlobalPos(), DeepCoreSeedGenerator::pixelFlipper(), multiTrajectoryStateMode::positionFromModeLocal(), VectorHitBuilderAlgorithmBase::printCluster(), JetCoreClusterSplitter::produce(), PixelClusterSelectorTopBottom::produce(), FastTrackerRecHitMatcher::produce(), SeedProducerFromSoA::produce(), PixelTrackProducerFromSoA::produce(), DTDigitizer::produce(), ConvBremSeedProducer::produce(), JetCoreMCtruthSeedGenerator::produce(), DeepCoreSeedGenerator::produce(), TestHits::projectHit(), TestSmoothHits::projectHit(), TestTrackHits::projectHit(), SiStripRecHitsValid::projectHit(), GlobalRecHitsAnalyzer::projectHit(), GlobalRecHitsProducer::projectHit(), SiStripTrackingRecHitsValid::projectHit(), FastTrackerRecHitMatcher::projectOnly(), StraightLinePropagator::propagateParametersOnCylinder(), PreMixingSiStripWorker::put(), pTFrom2Stubs::rInvFrom2(), DigiSimLinkAlgorithm::run(), TrackerOfflineValidation::setUpTreeMembers(), Cone::side(), JetCoreMCtruthSeedGenerator::splittedClusterDirections(), DeepCoreSeedGenerator::splittedClusterDirections(), tmtt::Stub::Stub(), trackerDTC::Setup::stubPos(), Cylinder::tangentPlane(), TracktoRPC::thePoints(), SiLinearChargeDivider::TimeResponse(), GeomDet::toGlobal(), DTTrigGeom::toGlobal(), Geant4ePropagator::transformToG4SurfaceTarget(), ValidateGeometry::validateCSChamberGeometry(), ValidateGeometry::validateCSCLayerGeometry(), ValidateGeometry::validateDTChamberGeometry(), ValidateGeometry::validateDTLayerGeometry(), ValidateGeometry::validateRPCGeometry(), and CosmicParametersDefinerForTP::vertex().

79  {
80  return GlobalPoint(rotation().multiplyInverse(lp.basicVector()) + position().basicVector());
81  }
const BasicVectorType & basicVector() const
Definition: PV2DBase.h:37
Point3DBase< float, GlobalTag > GlobalPoint
const RotationType & rotation() const
const BasicVectorType & basicVector() const
Definition: PV3DBase.h:53
const PositionType & position() const
std::pair<float, float> const& Surface::zSpan ( ) const
inline

Definition at line 91 of file Surface.h.

References bounds(), and Bounds::zSpan().

Referenced by PixelInactiveAreaFinder::getZSpan().

91 { return bounds().zSpan(); }
std::pair< float, float > const & zSpan() const
Definition: Bounds.h:66
const Bounds & bounds() const
Definition: Surface.h:87

Member Data Documentation

extstd::clone_ptr<Bounds> Surface::theBounds
protected

Definition at line 107 of file Surface.h.

Referenced by bounds(), and Plane::computeSpan().

MediumProperties Surface::theMediumProperties
protected

Definition at line 106 of file Surface.h.

Referenced by mediumProperties(), and setMediumProperties().