| 356 | } |
| 357 | |
| 358 | void |
| 359 | PVDRecorder::getParts() |
| 360 | { |
| 361 | if (theDomain == 0) { |
| 362 | opserr<<"WARNING: setDomain has not been called -- PVDRecorder\n"; |
| 363 | return; |
| 364 | } |
| 365 | |
| 366 | ElementIter* eiter = &(theDomain->getElements()); |
| 367 | Element* theEle = 0; |
| 368 | while((theEle = (*eiter)()) != 0) { |
| 369 | int ctag = theEle->getClassTag(); |
| 370 | int etag = theEle->getTag(); |
| 371 | parts[ctag].insert(etag); |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | int |
| 376 | PVDRecorder::savePart0(int nodendf) |
no test coverage detected