| 301 | |
| 302 | |
| 303 | void |
| 304 | PlainHandler::clearAll(void) |
| 305 | { |
| 306 | // for the nodes reset the DOF_Group pointers to 0 |
| 307 | Domain *theDomain = this->getDomainPtr(); |
| 308 | if (theDomain == 0) |
| 309 | return; |
| 310 | |
| 311 | NodeIter &theNod = theDomain->getNodes(); |
| 312 | Node *nodPtr; |
| 313 | while ((nodPtr = theNod()) != 0) |
| 314 | nodPtr->setDOF_GroupPtr(0); |
| 315 | } |
| 316 | |
| 317 | int |
| 318 | PlainHandler::sendSelf(int cTag, |
nothing calls this directly
no test coverage detected