| 364 | } |
| 365 | |
| 366 | NodalLoad * |
| 367 | LoadPattern::removeNodalLoad(int tag) |
| 368 | { |
| 369 | TaggedObject *obj = theNodalLoads->removeComponent(tag); |
| 370 | if (obj == 0) |
| 371 | return 0; |
| 372 | NodalLoad *result = (NodalLoad *)obj; |
| 373 | result->setDomain(0); |
| 374 | currentGeoTag++; |
| 375 | return result; |
| 376 | } |
| 377 | |
| 378 | ElementalLoad * |
| 379 | LoadPattern::removeElementalLoad(int tag) |
no test coverage detected