| 248 | |
| 249 | |
| 250 | void |
| 251 | PenaltyConstraintHandler::clearAll(void) |
| 252 | { |
| 253 | // for the nodes reset the DOF_Group pointers to 0 |
| 254 | Domain *theDomain = this->getDomainPtr(); |
| 255 | if (theDomain == 0) |
| 256 | return; |
| 257 | |
| 258 | NodeIter &theNod = theDomain->getNodes(); |
| 259 | Node *nodPtr; |
| 260 | while ((nodPtr = theNod()) != 0) |
| 261 | nodPtr->setDOF_GroupPtr(0); |
| 262 | } |
| 263 | |
| 264 | int |
| 265 | PenaltyConstraintHandler::sendSelf(int cTag, Channel &theChannel) |
nothing calls this directly
no test coverage detected