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

Method recvSelf

SRC/analysis/integrator/Collocation.cpp:434–447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

432
433
434int Collocation::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker)
435{
436 Vector data(3);
437 if (theChannel.recvVector(this->getDbTag(), cTag, data) < 0) {
438 opserr << "WARNING Collocation::recvSelf() - could not receive data\n";
439 return -1;
440 }
441
442 theta = data(0);
443 beta = data(1);
444 gamma = data(2);
445
446 return 0;
447}
448
449
450void Collocation::Print(OPS_Stream &s, int flag)

Callers

nothing calls this directly

Calls 2

recvVectorMethod · 0.45
getDbTagMethod · 0.45

Tested by

no test coverage detected