MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / removeRecorders

Method removeRecorders

SRC/domain/domain/Domain.cpp:2634–2648  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2632
2633
2634int
2635Domain::removeRecorders(void)
2636{
2637 for (int i=0; i<numRecorders; i++)
2638 if (theRecorders[i] != 0)
2639 delete theRecorders[i];
2640
2641 if (theRecorders != 0) {
2642 delete [] theRecorders;
2643 }
2644
2645 theRecorders = 0;
2646 numRecorders = 0;
2647 return 0;
2648}
2649
2650int Domain::flushRecorders() {
2651 for (int i = 0; i < numRecorders; i++) {

Callers 3

OPS_removeObjectFunction · 0.45
removeObjectFunction · 0.45
removeObjectFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected