#include <orbit-place.hpp>
Inheritance diagram for orbitPlace:


Definition at line 39 of file orbit-place.hpp.
Public Member Functions | |
| orbitPlace () | |
| char * | dumpAsXML () |
| void | setOrbit (int o) |
| int | getOrbit () |
| char * | nodeSignature () |
| orbitPlace::orbitPlace | ( | ) |
Generic constructor.
Definition at line 38 of file orbit-place.cpp.
00038 : sparseVectorNode(){ 00039 00040 }
| char* orbitPlace::dumpAsXML | ( | ) |
Overloaded method to be overloaded further by derived objects of this class.
Reimplemented from sparseVectorNode.
| int orbitPlace::getOrbit | ( | ) |
Get the orbit number for this instance.
Reimplemented in star.
Definition at line 43 of file orbit-place.cpp.
References sparseVectorNode::getIndex().
Referenced by orbitPlane::add().
00043 { 00044 return this->getIndex(); 00045 }
Here is the call graph for this function:

Here is the caller graph for this function:

| char * orbitPlace::nodeSignature | ( | ) |
The signature of this instance. In this case "orbitPlace"
Reimplemented from sparseVectorNode.
Reimplemented in star.
Definition at line 52 of file orbit-place.cpp.
| void orbitPlace::setOrbit | ( | int | o | ) |
Set the orbit number for this instance.
| o | integer value for the orbit to set this to. |
Reimplemented in star.
Definition at line 47 of file orbit-place.cpp.
References sparseVectorNode::setIndex().
00047 { 00048 this->setIndex(ix); 00049 }
Here is the call graph for this function:

1.4.7