Skip to content
Snippets Groups Projects
Commit 31e03693 authored by Andreas Salzburger's avatar Andreas Salzburger Committed by Graeme Stewart
Browse files

Tagging as TrkExStraightLineIntersector-01-00-01 (TrkExStraightLineIntersector-01-00-01)

        * update to IIntersection
        * tag as TrkExStraightLineIntersector-01-00-01
parent 5e2c9aad
No related branches found
No related tags found
No related merge requests found
...@@ -12,9 +12,8 @@ ...@@ -12,9 +12,8 @@
#define TRKEXSTRAIGHTLINEINTERSECTOR_STRAIGHTLINEINTERSECTOR_H #define TRKEXSTRAIGHTLINEINTERSECTOR_STRAIGHTLINEINTERSECTOR_H
#include "AthenaBaseComps/AthAlgTool.h" #include "AthenaBaseComps/AthAlgTool.h"
//#include "TrkEventPrimitives/GlobalDirection.h"
//#include "TrkEventPrimitives/GlobalPosition.h"
#include "TrkExInterfaces/IIntersector.h" #include "TrkExInterfaces/IIntersector.h"
#include "TrkExUtils/TrackSurfaceIntersection.h"
namespace Trk namespace Trk
{ {
...@@ -33,33 +32,33 @@ public: ...@@ -33,33 +32,33 @@ public:
StatusCode finalize(); StatusCode finalize();
/**IIntersector interface method for general Surface type */ /**IIntersector interface method for general Surface type */
const Intersection* intersectSurface(const Surface& surface, const TrackSurfaceIntersection* intersectSurface(const Surface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackTrackSurfaceIntersection,
const double qOverP); const double qOverP);
/**IIntersector interface method for specific Surface type : PerigeeSurface */ /**IIntersector interface method for specific Surface type : PerigeeSurface */
const Intersection* approachPerigeeSurface(const PerigeeSurface& surface, const TrackSurfaceIntersection* approachPerigeeSurface(const PerigeeSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackTrackSurfaceIntersection,
const double /*qOverP*/); const double /*qOverP*/);
/**IIntersector interface method for specific Surface type : StraightLineSurface */ /**IIntersector interface method for specific Surface type : StraightLineSurface */
const Intersection* approachStraightLineSurface(const StraightLineSurface& surface, const TrackSurfaceIntersection* approachStraightLineSurface(const StraightLineSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackTrackSurfaceIntersection,
const double /*qOverP*/); const double /*qOverP*/);
/**IIntersector interface method for specific Surface type : CylinderSurface */ /**IIntersector interface method for specific Surface type : CylinderSurface */
const Intersection* intersectCylinderSurface (const CylinderSurface& surface, const TrackSurfaceIntersection* intersectCylinderSurface (const CylinderSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackTrackSurfaceIntersection,
const double /*qOverP*/); const double /*qOverP*/);
/**IIntersector interface method for specific Surface type : DiscSurface */ /**IIntersector interface method for specific Surface type : DiscSurface */
const Intersection* intersectDiscSurface (const DiscSurface& surface, const TrackSurfaceIntersection* intersectDiscSurface (const DiscSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackTrackSurfaceIntersection,
const double /*qOverP*/); const double /*qOverP*/);
/**IIntersector interface method for specific Surface type : PlaneSurface */ /**IIntersector interface method for specific Surface type : PlaneSurface */
const Intersection* intersectPlaneSurface(const PlaneSurface& surface, const TrackSurfaceIntersection* intersectPlaneSurface(const PlaneSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackTrackSurfaceIntersection,
const double /*qOverP*/); const double /*qOverP*/);
/**IIntersector interface method for validity check over a particular extrapolation range */ /**IIntersector interface method for validity check over a particular extrapolation range */
......
...@@ -5,7 +5,6 @@ author Alan Poppleton <Alan.Poppleton@cern.ch> ...@@ -5,7 +5,6 @@ author Alan Poppleton <Alan.Poppleton@cern.ch>
private private
use AtlasCLHEP AtlasCLHEP-* External use AtlasCLHEP AtlasCLHEP-* External
use GaudiInterface GaudiInterface-* External use GaudiInterface GaudiInterface-* External
use TrkExUtils TrkExUtils-* Tracking/TrkExtrapolation
use TrkParameters TrkParameters-* Tracking/TrkEvent use TrkParameters TrkParameters-* Tracking/TrkEvent
use TrkSurfaces TrkSurfaces-* Tracking/TrkDetDescr use TrkSurfaces TrkSurfaces-* Tracking/TrkDetDescr
...@@ -13,6 +12,7 @@ public ...@@ -13,6 +12,7 @@ public
use AtlasPolicy AtlasPolicy-* use AtlasPolicy AtlasPolicy-*
use AthenaBaseComps AthenaBaseComps-* Control use AthenaBaseComps AthenaBaseComps-* Control
use TrkExInterfaces TrkExInterfaces-* Tracking/TrkExtrapolation use TrkExInterfaces TrkExInterfaces-* Tracking/TrkExtrapolation
use TrkExUtils TrkExUtils-* Tracking/TrkExtrapolation
library TrkExStraightLineIntersector StraightLineIntersector.cxx \ library TrkExStraightLineIntersector StraightLineIntersector.cxx \
components/*.cxx components/*.cxx
......
...@@ -61,7 +61,7 @@ StraightLineIntersector::finalize() ...@@ -61,7 +61,7 @@ StraightLineIntersector::finalize()
/**IIntersector interface method for general Surface type */ /**IIntersector interface method for general Surface type */
const Trk::TrackSurfaceIntersection* const Trk::TrackSurfaceIntersection*
StraightLineIntersector::intersectSurface(const Surface& surface, StraightLineIntersector::intersectSurface(const Surface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackIntersection,
const double qOverP) const double qOverP)
{ {
const PlaneSurface* plane = dynamic_cast<const PlaneSurface*>(&surface); const PlaneSurface* plane = dynamic_cast<const PlaneSurface*>(&surface);
...@@ -86,7 +86,7 @@ StraightLineIntersector::intersectSurface(const Surface& surface, ...@@ -86,7 +86,7 @@ StraightLineIntersector::intersectSurface(const Surface& surface,
/**IIntersector interface method for specific Surface type : PerigeeSurface */ /**IIntersector interface method for specific Surface type : PerigeeSurface */
const Trk::TrackSurfaceIntersection* const Trk::TrackSurfaceIntersection*
StraightLineIntersector::approachPerigeeSurface(const PerigeeSurface& surface, StraightLineIntersector::approachPerigeeSurface(const PerigeeSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackIntersection,
const double /*qOverP*/) const double /*qOverP*/)
{ {
// set member data // set member data
...@@ -103,7 +103,7 @@ StraightLineIntersector::approachPerigeeSurface(const PerigeeSurface& surface, ...@@ -103,7 +103,7 @@ StraightLineIntersector::approachPerigeeSurface(const PerigeeSurface& surface,
distanceToLine (surface.center(),lineDirection); distanceToLine (surface.center(),lineDirection);
step(); step();
const Intersection* intersection = new TrackSurfaceIntersection(m_position, const Trk::TrackSurfaceIntersection* intersection = new TrackSurfaceIntersection(m_position,
m_direction, m_direction,
m_transverseLength); m_transverseLength);
m_intersectionNumber = intersection->serialNumber(); m_intersectionNumber = intersection->serialNumber();
...@@ -113,7 +113,7 @@ StraightLineIntersector::approachPerigeeSurface(const PerigeeSurface& surface, ...@@ -113,7 +113,7 @@ StraightLineIntersector::approachPerigeeSurface(const PerigeeSurface& surface,
/**IIntersector interface method for specific Surface type : StraightLineSurface */ /**IIntersector interface method for specific Surface type : StraightLineSurface */
const Trk::TrackSurfaceIntersection* const Trk::TrackSurfaceIntersection*
StraightLineIntersector::approachStraightLineSurface(const StraightLineSurface& surface, StraightLineIntersector::approachStraightLineSurface(const StraightLineSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackIntersection,
const double /*qOverP*/) const double /*qOverP*/)
{ {
// set member data // set member data
...@@ -130,7 +130,7 @@ StraightLineIntersector::approachStraightLineSurface(const StraightLineSurface& ...@@ -130,7 +130,7 @@ StraightLineIntersector::approachStraightLineSurface(const StraightLineSurface&
distanceToLine (surface.center(),lineDirection); distanceToLine (surface.center(),lineDirection);
step(); step();
const Intersection* intersection = new TrackSurfaceIntersection(m_position, const Trk::TrackSurfaceIntersection* intersection = new TrackSurfaceIntersection(m_position,
m_direction, m_direction,
m_transverseLength); m_transverseLength);
m_intersectionNumber = intersection->serialNumber(); m_intersectionNumber = intersection->serialNumber();
...@@ -140,7 +140,7 @@ StraightLineIntersector::approachStraightLineSurface(const StraightLineSurface& ...@@ -140,7 +140,7 @@ StraightLineIntersector::approachStraightLineSurface(const StraightLineSurface&
/**IIntersector interface method for specific Surface type : CylinderSurface */ /**IIntersector interface method for specific Surface type : CylinderSurface */
const Trk::TrackSurfaceIntersection* const Trk::TrackSurfaceIntersection*
StraightLineIntersector::intersectCylinderSurface (const CylinderSurface& surface, StraightLineIntersector::intersectCylinderSurface (const CylinderSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackIntersection,
const double /*qOverP*/) const double /*qOverP*/)
{ {
// set member data // set member data
...@@ -157,7 +157,7 @@ StraightLineIntersector::intersectCylinderSurface (const CylinderSurface& surfac ...@@ -157,7 +157,7 @@ StraightLineIntersector::intersectCylinderSurface (const CylinderSurface& surfac
distanceToCylinder(cylinderRadius); distanceToCylinder(cylinderRadius);
step(); step();
const Intersection* intersection = new TrackSurfaceIntersection(m_position, const Trk::TrackSurfaceIntersection* intersection = new TrackSurfaceIntersection(m_position,
m_direction, m_direction,
m_transverseLength); m_transverseLength);
m_intersectionNumber = intersection->serialNumber(); m_intersectionNumber = intersection->serialNumber();
...@@ -167,7 +167,7 @@ StraightLineIntersector::intersectCylinderSurface (const CylinderSurface& surfac ...@@ -167,7 +167,7 @@ StraightLineIntersector::intersectCylinderSurface (const CylinderSurface& surfac
/**IIntersector interface method for specific Surface type : DiscSurface */ /**IIntersector interface method for specific Surface type : DiscSurface */
const Trk::TrackSurfaceIntersection* const Trk::TrackSurfaceIntersection*
StraightLineIntersector::intersectDiscSurface (const DiscSurface& surface, StraightLineIntersector::intersectDiscSurface (const DiscSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackIntersection,
const double /*qOverP*/) const double /*qOverP*/)
{ {
if (trackIntersection->serialNumber() != m_intersectionNumber) if (trackIntersection->serialNumber() != m_intersectionNumber)
...@@ -182,7 +182,7 @@ StraightLineIntersector::intersectDiscSurface (const DiscSurface& surface, ...@@ -182,7 +182,7 @@ StraightLineIntersector::intersectDiscSurface (const DiscSurface& surface,
distanceToDisc(surface.center().z()); distanceToDisc(surface.center().z());
step(); step();
const Intersection* intersection = new TrackSurfaceIntersection(m_position, const Trk::TrackSurfaceIntersection* intersection = new TrackSurfaceIntersection(m_position,
m_direction, m_direction,
m_transverseLength); m_transverseLength);
m_intersectionNumber = intersection->serialNumber(); m_intersectionNumber = intersection->serialNumber();
...@@ -192,7 +192,7 @@ StraightLineIntersector::intersectDiscSurface (const DiscSurface& surface, ...@@ -192,7 +192,7 @@ StraightLineIntersector::intersectDiscSurface (const DiscSurface& surface,
/**IIntersector interface method for specific Surface type : PlaneSurface */ /**IIntersector interface method for specific Surface type : PlaneSurface */
const Trk::TrackSurfaceIntersection* const Trk::TrackSurfaceIntersection*
StraightLineIntersector::intersectPlaneSurface(const PlaneSurface& surface, StraightLineIntersector::intersectPlaneSurface(const PlaneSurface& surface,
const Intersection* trackIntersection, const TrackSurfaceIntersection* trackIntersection,
const double /*qOverP*/) const double /*qOverP*/)
{ {
// set member data // set member data
...@@ -209,7 +209,7 @@ StraightLineIntersector::intersectPlaneSurface(const PlaneSurface& surface, ...@@ -209,7 +209,7 @@ StraightLineIntersector::intersectPlaneSurface(const PlaneSurface& surface,
step(); step();
distanceToPlane(surface.center(),surface.normal()); distanceToPlane(surface.center(),surface.normal());
const Intersection* intersection = new TrackSurfaceIntersection(m_position, const Trk::TrackSurfaceIntersection* intersection = new TrackSurfaceIntersection(m_position,
m_direction, m_direction,
m_transverseLength); m_transverseLength);
m_intersectionNumber = intersection->serialNumber(); m_intersectionNumber = intersection->serialNumber();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment