| 1845 | } |
| 1846 | |
| 1847 | const Vector * |
| 1848 | Domain::getNodeResponse(int nodeTag, NodeResponseType responseType) |
| 1849 | { |
| 1850 | Node *theNode = this->getNode(nodeTag); |
| 1851 | if (theNode == 0) |
| 1852 | return NULL; |
| 1853 | else |
| 1854 | return theNode->getResponse(responseType); |
| 1855 | } |
| 1856 | |
| 1857 | |
| 1858 | static Vector responseData(0); |
no test coverage detected