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

Method recvSelf

SRC/analysis/integrator/CollocationHSFixedNumIter.cpp:539–553  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

537
538
539int CollocationHSFixedNumIter::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker)
540{
541 Vector data(4);
542 if (theChannel.recvVector(this->getDbTag(), cTag, data) < 0) {
543 opserr << "WARNING CollocationHSFixedNumIter::recvSelf() - could not receive data\n";
544 return -1;
545 }
546
547 theta = data(0);
548 beta = data(1);
549 gamma = data(2);
550 polyOrder = int(data(3));
551
552 return 0;
553}
554
555
556void CollocationHSFixedNumIter::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