| 1303 | |
| 1304 | |
| 1305 | NodalLoad * |
| 1306 | Domain::removeNodalLoad(int tag, int loadPattern) |
| 1307 | { |
| 1308 | // remove the object from the container |
| 1309 | LoadPattern *theLoadPattern = this->getLoadPattern(loadPattern); |
| 1310 | |
| 1311 | // if not there return 0 |
| 1312 | if (theLoadPattern == 0) |
| 1313 | return 0; |
| 1314 | |
| 1315 | return theLoadPattern->removeNodalLoad(tag); |
| 1316 | } |
| 1317 | |
| 1318 | |
| 1319 | ElementalLoad * |
nothing calls this directly
no test coverage detected