#include <GT2005StableSelfLocator.h>
Inheritance diagram for GT2005StableSelfLocator:


Public Types | |
| enum | { SAMPLES_MAX = 100, POSE_SPACE_GRID = 10, OBS_TABLE_X_FIELD_LINE = LinesPercept::field, OBS_TABLE_Y_FIELD_LINE = LinesPercept::numberOfLineTypes, HEAD_HEIGHT_SMOOTHING_FRAMENUMBER = 5, NUM_OF_CALCULATED_POSES = 3 } |
Public Member Functions | |
| GT2005StableSelfLocator (const SelfLocatorInterfaces &interfaces) | |
| Constructor. | |
| virtual void | execute () |
| The function executes the module. | |
| virtual bool | handleMessage (InMessage &message) |
| Called from a MessageQueue to distribute messages. | |
Public Attributes | |
| SampleSet< GT2005StableSelfLocatorSample, SAMPLES_MAX > | sampleSet |
| the sampleSet | |
| bool | teamColorBlue |
Static Public Attributes | |
| double | quasiZero |
| double | maximumTrust |
| double | translationNoise |
| double | rotationNoise |
| double | movedDistWeight |
| double | movedAngleWeight |
| double | majorDirTransWeight |
| double | minorDirTransWeight |
| double | headHeight |
| double | linePointZAngleVariance |
| double | linePointZAngleMotionDependentVariance |
| double | linePointYAngleVariance |
| double | linePointYAngleMotionDependentVariance |
| double | linePointZAngleMotionDependency |
| double | linePointYAngleMotionDependency |
| double | crossingZAngleVariance |
| double | crossingZAngleMotionDependentVariance |
| double | crossingYAngleVariance |
| double | crossingYAngleMotionDependentVariance |
| double | crossingZAngleMotionDependency |
| double | crossingYAngleMotionDependency |
| double | centerCircleZAngleVariance |
| double | centerCircleZAngleMotionDependentVariance |
| double | centerCircleYAngleVariance |
| double | centerCircleYAngleMotionDependentVariance |
| double | centerCircleOrientationAngleVariance |
| double | centerCircleOrientationAngleMotionDependentVariance |
| double | centerCircleZAngleMotionDependency |
| double | centerCircleYAngleMotionDependency |
| double | centerCircleOrientationAngleMotionDependency |
| double | flagZAngleVariance |
| double | flagZAngleMotionDependentVariance |
| double | flagYAngleVariance |
| double | flagYAngleMotionDependentVariance |
| double | flagZAngleMotionDependency |
| double | flagYAngleMotionDependency |
| double | goalZAngleVariance |
| double | goalZAngleMotionDependentVariance |
| double | goalYAngleVariance |
| double | goalYAngleMotionDependentVariance |
| double | goalZAngleMotionDependency |
| double | goalYAngleMotionDependency |
| double | linePointWeight |
| double | linePointZAngleTrust |
| double | linePointYAngleTrust |
| double | crossingWeight |
| double | crossingZAngleTrust |
| double | crossingYAngleTrust |
| double | centerCircleWeight |
| double | centerCircleZAngleTrust |
| double | centerCircleYAngleTrust |
| double | centerCircleOrientationAngleTrust |
| double | flagWeight |
| double | flagZAngleTrust |
| double | flagYAngleTrust |
| double | goalWeight |
| double | goalZAngleTrust |
| double | goalYAngleTrust |
Private Types | |
| enum | FlagSides { LEFT_SIDE_OF_FLAG = 1, RIGHT_SIDE_OF_FLAG = -1 } |
Private Member Functions | |
| double | sigmoid (double d) const |
| The function distributes the parameter in a Gaussian way. | |
| void | motionUpdate (const Pose2D &odometry, const Pose2D &camera, bool noise) |
| The function updates the samples by the odometry offset. | |
| void | updateByNotSeenFlag (Flag::FlagType type) |
| void | updateByNotSeenGoal (colorClass goalColor) |
| void | updateByFlag (const Vector2< double > &flagFieldPosition, FlagSides sideOfFlag, double measuredBearing) |
| The function updates the samples by a single edge of a flag recognized. | |
| void | updateByGoalPost (const Vector2< double > &goalPost, double measuredBearing) |
| The function updates the samples by a single goal post recognized. | |
| void | landmarksObservationUpdate (const LandmarksPercept &landmarksPercept) |
| The function updates the samples by the recognized landmarks (goal, flag..) triggers updateByFlag and updateByGoalPost. | |
| GT2005StableLineCrossingsTable::CrossingClass | getCrossingClassification (const LinesPercept::LineCrossingPoint &point) |
| calculates the CrossingClass out of the classification (side1..side4) in the LinesPercept | |
| void | updateByCenterCircle (const LinesPercept::CenterCircle ¢erCircle) |
| observationUpdate by the center circle | |
| void | updateByCrossing (const LinesPercept::LineCrossingPoint &point) |
| observationUpdate using the linecrossing percept | |
| void | updateByPoint (const LinesPercept::LinePoint &point, GT2005StableSelfLocatorSample::PerceptType type) |
| does an observationupdate with a point on the field (line or goal) | |
| void | lineObservationUpdate (const LinesPercept &linesPercept) |
| The function updates the samples by recognized lines. | |
| double | calcAveragePerceptTypeProbabilities () |
| Calculates the average possibility for each perceptType and all samples and returns the product over all averages. | |
| void | resample () |
| redistibution of the sampleSet according to the probabilities of the samples | |
| double | calcDistributionValidity () |
| RobotPose | calcPoseFromSubCube (Cell poseSpace[POSE_SPACE_GRID][POSE_SPACE_GRID][POSE_SPACE_GRID], int x, int y, int r) |
| The function calculates a Pose by averaging the sample poses in a sub cube of the pose-room. | |
| void | calcPose (Pose2D &pose, double &validity) |
| The function determines the most probable pose from the sample distribution. | |
| void | draw (const Pose2D &pose, Drawings::Color color) const |
| The function draws an arrow to a debug drawing. | |
| void | draw (const Vector2< int > &point, LinesPercept::LineType type) const |
| The function draws a point of a line percept. | |
| void | updateVariancesBySpeed (double speed) |
| The function calculates the variances and trust values from the current speed. | |
Private Attributes | |
| Pose2D | lastOdometry |
| Pose2D | lastOdometry2 |
| the last Odometry, used to calculate the delta_odometry | |
| unsigned | timeStamp |
| timestap | |
| bool | observationUpdateDone |
| a flag indicating if an observation update was done during the current run of execute | |
| double | speed |
| current robot speed | |
| double | averagePerceptTypeProb [GT2005StableSelfLocatorSample::numberOfPerceptTypes] |
| the average probability for each PerceptType and all Samples | |
| GT2005StableSampleTemplateGenerator | sampleTemplateGenerator |
| this class encapsules template generation | |
| LinesPercept::LineType | types [LinesPercept::numberOfLineTypes] |
| types and number of types are needed for the template generator | |
| int | numberOfTypes |
| GT2005StableLineCrossingsTable | lineCrossingsTable |
| TRingBufferWithSum< double, HEAD_HEIGHT_SMOOTHING_FRAMENUMBER > | headHeightBuffer |
| bool | odometryPoseResetted |
| Pose2D | odometryPose |
| RobotPose | candidates [NUM_OF_CALCULATED_POSES] |
| GT2005StableSelfLocatorSample * | testSample |
| testing and debugging stuff | |
| Vector2< double > | lastModelCrossing |
| Vector2< double > | lastSeenCrossing |
| GT2005StableLineCrossingsTable::CrossingClass | lastSeenCrossingClass |
| Pose2D | lastSeenCenterCircle |
| Pose2D | winningPose |
| Pose2D | secondaryPose |
| double | winningValidity |
| double | secondaryValidity |
|
|
Definition at line 111 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 166 of file GT2005StableSelfLocator.h. |
|
|
Constructor.
Definition at line 128 of file GT2005StableSelfLocator.cpp. References crossingYAngleTrust, crossingZAngleTrust, flagYAngleTrust, flagZAngleTrust, goalYAngleTrust, goalZAngleTrust, idText, linePointYAngleTrust, linePointZAngleTrust, odometryPose, odometryPoseResetted, OUTPUT, Field::randomPose(), secondaryValidity, and winningValidity. |
Here is the call graph for this function:

|
Here is the call graph for this function:

|
|
Called from a MessageQueue to distribute messages. Use message.getMessageID to decide if the message is relavant for the MesssageHandler derivate. Use message.bin, message.text or message.config as In streams to get the data from.
Reimplemented from Module. Definition at line 1266 of file GT2005StableSelfLocator.cpp. |
|
|
The function distributes the parameter in a Gaussian way.
Definition at line 212 of file GT2005StableSelfLocator.h. Referenced by calcDistributionValidity(), updateByCenterCircle(), updateByCrossing(), updateByFlag(), updateByGoalPost(), and updateByPoint(). |
|
||||||||||||||||
|
The function updates the samples by the odometry offset.
Definition at line 171 of file GT2005StableSelfLocator.cpp. References Vector2< double >::abs(), GT2005StableSelfLocatorSample::camera, fmax(), Pose2D::getAngle(), majorDirTransWeight, max, minorDirTransWeight, movedAngleWeight, movedDistWeight, PoseSample::probability, random(), rotationNoise, Pose2D::translation, translationNoise, Vector2< double >::x, and Vector2< double >::y. Referenced by execute(). |
Here is the call graph for this function:

|
|
Definition at line 616 of file GT2005StableSelfLocator.cpp. |
|
|
|
|
||||||||||||||||
|
The function updates the samples by a single edge of a flag recognized.
Definition at line 698 of file GT2005StableSelfLocator.cpp. References Vector2< double >::abs(), GT2005StableSelfLocatorSample::camera, COMPLEX_DRAWING, draw(), flagYAngleTrust, pi, GT2005StableSelfLocatorSample::setPerceptProbability(), sigmoid(), Pose2D::translation, Vector2< double >::x, Vector2< V >::x, Vector2< double >::y, and Vector2< V >::y. Referenced by landmarksObservationUpdate(). |
Here is the call graph for this function:

|
||||||||||||
|
The function updates the samples by a single goal post recognized.
Definition at line 738 of file GT2005StableSelfLocator.cpp. References GT2005StableSelfLocatorSample::camera, goalYAngleTrust, pi, GT2005StableSelfLocatorSample::setPerceptProbability(), sigmoid(), Pose2D::translation, Vector2< double >::x, Vector2< V >::x, Vector2< double >::y, and Vector2< V >::y. Referenced by landmarksObservationUpdate(). |
Here is the call graph for this function:

|
|
The function updates the samples by the recognized landmarks (goal, flag..) triggers updateByFlag and updateByGoalPost.
Definition at line 764 of file GT2005StableSelfLocator.cpp. References Goal::color, LandmarksPercept::flags, LandmarksPercept::goals, ConditionalBoundary::isOnBorder(), Goal::leftPost, Range< double >::max, Range< double >::min, LandmarksPercept::numberOfFlags, LandmarksPercept::numberOfGoals, Flag::position, Goal::rightPost, updateByFlag(), updateByGoalPost(), and Boundary< double >::x. Referenced by execute(). |
Here is the call graph for this function:

|
|
calculates the CrossingClass out of the classification (side1..side4) in the LinesPercept
Definition at line 224 of file GT2005StableSelfLocator.cpp. References point. Referenced by updateByCrossing(). |
|
|
observationUpdate by the center circle
Definition at line 258 of file GT2005StableSelfLocator.cpp. References Vector2< V >::abs(), Vector2< int >::abs(), centerCircleOrientationAngleTrust, centerCircleYAngleTrust, centerCircleZAngleTrust, fromDegrees(), headHeight, LinesPercept::CenterCircle::location, LinesPercept::CenterCircle::orientation, LinesPercept::CenterCircle::orientationKnown, point, Pose2D::rotation, GT2005StableSelfLocatorSample::setPerceptProbability(), sigmoid(), Vector2< V >::x, Vector2< int >::x, Vector2< V >::y, and Vector2< int >::y. |
Here is the call graph for this function:

|
|
observationUpdate using the linecrossing percept
Definition at line 312 of file GT2005StableSelfLocator.cpp. References Vector2< V >::abs(), Vector2< int >::abs(), CIRCLE, crossingYAngleTrust, crossingZAngleTrust, GT2005StableLineCrossingsTable::getClassifiedClosestPoint(), getCrossingClassification(), headHeight, LinesPercept::LineCrossingPoint::locationOnField, point, GT2005StableSelfLocatorSample::setPerceptProbability(), sigmoid(), Pose2D::translation, Vector2< V >::x, Vector2< double >::x, Vector2< int >::x, Vector2< V >::y, Vector2< double >::y, and Vector2< int >::y. Referenced by lineObservationUpdate(). |
Here is the call graph for this function:

|
||||||||||||
|
does an observationupdate with a point on the field (line or goal)
Definition at line 383 of file GT2005StableSelfLocator.cpp. References Vector2< V >::abs(), Vector2< int >::abs(), Vector2< int >::angle(), Pose2D::getAngle(), headHeight, idText, linePointYAngleTrust, linePointZAngleTrust, OUTPUT, pi, point, GT2005StableSelfLocatorSample::setPerceptProbability(), sigmoid(), Pose2D::translation, Vector2< V >::x, Vector2< int >::x, Vector2< V >::y, and Vector2< int >::y. Referenced by lineObservationUpdate(). |
Here is the call graph for this function:

|
|
The function updates the samples by recognized lines.
Definition at line 480 of file GT2005StableSelfLocator.cpp. References CIRCLE, COMPLEX_DRAWING, draw(), e, LINE, LinesPercept::lineCrossings, LinesPercept::numberOfLineCrossings, LinesPercept::points, random(), Pose2D::translation, updateByCrossing(), updateByPoint(), Vector2< double >::x, and Vector2< double >::y. Referenced by execute(). |
Here is the call graph for this function:

|
|
Calculates the average possibility for each perceptType and all samples and returns the product over all averages. contains the part of the gt04 resampling method that calculates
Definition at line 906 of file GT2005StableSelfLocator.cpp. References GT2005StableSelfLocatorSample::perceptProbabilities. Referenced by resample(). |
|
|
redistibution of the sampleSet according to the probabilities of the samples TODO: template generation Definition at line 946 of file GT2005StableSelfLocator.cpp. References calcAveragePerceptTypeProbabilities(), COMPLEX_DRAWING, draw(), GT2005StableSampleTemplateGenerator::getNumberOfTemplates(), GT2005StableSelfLocatorSample::getProbability(), GT2005StableSampleTemplateGenerator::getTemplate(), random(), and SampleSet< GT2005StableSelfLocatorSample, SAMPLES_MAX >::swap(). Referenced by execute(). |
Here is the call graph for this function:

|
|
Definition at line 1019 of file GT2005StableSelfLocator.cpp. References pi, Pose2D::rotation, sigmoid(), Pose2D::translation, Vector2< double >::x, and Vector2< double >::y. Referenced by calcPose(). |
Here is the call graph for this function:

|
||||||||||||||||||||
|
The function calculates a Pose by averaging the sample poses in a sub cube of the pose-room.
Definition at line 1061 of file GT2005StableSelfLocator.cpp. References Field::clip(), Pose2D::getCos(), GT2005StableSelfLocatorSample::getProbability(), Pose2D::getSin(), RobotPose::getValidity(), GT2005StableSelfLocatorSample::isValid(), GT2005StableSelfLocatorSample::next, RobotPose::setPose(), RobotPose::setValidity(), Pose2D::translation, Vector2< double >::x, and Vector2< double >::y. Referenced by calcPose(). |
Here is the call graph for this function:

|
||||||||||||
|
The function determines the most probable pose from the sample distribution.
Definition at line 1125 of file GT2005StableSelfLocator.cpp. References calcDistributionValidity(), calcPoseFromSubCube(), CIRCLE, GT2005StableSelfLocator::Cell::count, GT2005StableSelfLocator::Cell::first, Pose2D::getAngle(), RobotPose::getPose(), Range< double >::getSize(), GT2005StableSelfLocatorSample::isValid(), GT2005StableSelfLocatorSample::next, RobotPoseCollection::numberOfPoses, pi2, RobotPoseCollection::poses, RobotPose::setValidity(), Pose2D::translation, Vector2< double >::x, Boundary< double >::x, Vector2< double >::y, and Boundary< double >::y. Referenced by execute(). |
Here is the call graph for this function:

|
||||||||||||
|
The function draws an arrow to a debug drawing.
Definition at line 1293 of file GT2005StableSelfLocator.cpp. References LINE, Pose2D::translation, Vector2< double >::x, and Vector2< double >::y. Referenced by lineObservationUpdate(), resample(), and updateByFlag(). |
|
||||||||||||
|
The function draws a point of a line percept.
Definition at line 1325 of file GT2005StableSelfLocator.cpp. References Geometry::calculatePointInImage(), CIRCLE, getRobotConfiguration(), point, Vector2< V >::x, and Vector2< V >::y. |
Here is the call graph for this function:

|
|
The function calculates the variances and trust values from the current speed.
Definition at line 822 of file GT2005StableSelfLocator.cpp. References linePointWeight, linePointZAngleMotionDependency, linePointZAngleMotionDependentVariance, linePointZAngleTrust, linePointZAngleVariance, and quasiZero. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateVariancesBySpeed(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 29 of file GT2005StableSelfLocator.cpp. Referenced by motionUpdate(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by motionUpdate(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by motionUpdate(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by motionUpdate(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by motionUpdate(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by motionUpdate(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateByCenterCircle(), updateByCrossing(), and updateByPoint(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateVariancesBySpeed(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateVariancesBySpeed(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateVariancesBySpeed(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateVariancesBySpeed(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(), updateByPoint(), and updateVariancesBySpeed(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(), and updateByPoint(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(), and updateByCrossing(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(), and updateByCrossing(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateByCenterCircle(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateByCenterCircle(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by updateByCenterCircle(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(), and updateByFlag(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(). |
|
|
Definition at line 37 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(), and updateByGoalPost(). |
|
|
the sampleSet
Definition at line 125 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 126 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 171 of file GT2005StableSelfLocator.h. |
|
|
the last Odometry, used to calculate the delta_odometry
Definition at line 171 of file GT2005StableSelfLocator.h. |
|
|
timestap
Definition at line 172 of file GT2005StableSelfLocator.h. |
|
|
a flag indicating if an observation update was done during the current run of execute
Definition at line 173 of file GT2005StableSelfLocator.h. |
|
|
current robot speed
Definition at line 174 of file GT2005StableSelfLocator.h. |
|
|
the average probability for each PerceptType and all Samples
Definition at line 176 of file GT2005StableSelfLocator.h. |
|
|
this class encapsules template generation
Definition at line 178 of file GT2005StableSelfLocator.h. |
|
|
types and number of types are needed for the template generator
Definition at line 179 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 180 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 182 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 184 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 186 of file GT2005StableSelfLocator.h. Referenced by execute(), and GT2005StableSelfLocator(). |
|
|
Definition at line 187 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(). |
|
|
Definition at line 188 of file GT2005StableSelfLocator.h. |
|
|
testing and debugging stuff
Definition at line 192 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 193 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 193 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 194 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 195 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 198 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 199 of file GT2005StableSelfLocator.h. |
|
|
Definition at line 200 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(). |
|
|
Definition at line 200 of file GT2005StableSelfLocator.h. Referenced by GT2005StableSelfLocator(). |
1.3.6