| 498 | } |
| 499 | |
| 500 | void |
| 501 | AnalysisModel::incrAccel(const Vector &accel) |
| 502 | { |
| 503 | DOF_GrpIter &theDOFGrps = this->getDOFs(); |
| 504 | DOF_Group *dofPtr; |
| 505 | |
| 506 | while ((dofPtr = theDOFGrps()) != 0) |
| 507 | dofPtr->incrNodeAccel(accel); |
| 508 | } |
| 509 | |
| 510 | |
| 511 | void |
nothing calls this directly
no test coverage detected