| 1469 | |
| 1470 | |
| 1471 | NodalLoad * |
| 1472 | Domain::removeNodalLoad(int tag, int loadPattern) |
| 1473 | { |
| 1474 | // remove the object from the container |
| 1475 | LoadPattern *theLoadPattern = this->getLoadPattern(loadPattern); |
| 1476 | |
| 1477 | // if not there return 0 |
| 1478 | if (theLoadPattern == 0) |
| 1479 | return 0; |
| 1480 | |
| 1481 | return theLoadPattern->removeNodalLoad(tag); |
| 1482 | } |
| 1483 | |
| 1484 | |
| 1485 | ElementalLoad * |
no test coverage detected