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

Method sendSelf

SRC/analysis/integrator/CollocationHSFixedNumIter.cpp:522–536  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

520}
521
522int CollocationHSFixedNumIter::sendSelf(int cTag, Channel &theChannel)
523{
524 static Vector data(4);
525 data(0) = theta;
526 data(1) = beta;
527 data(2) = gamma;
528 data(3) = polyOrder;
529
530 if (theChannel.sendVector(this->getDbTag(), cTag, data) < 0) {
531 opserr << "WARNING CollocationHSFixedNumIter::sendSelf() - failed to send the data\n";
532 return -1;
533 }
534
535 return 0;
536}
537
538
539int CollocationHSFixedNumIter::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker)

Callers

nothing calls this directly

Calls 2

sendVectorMethod · 0.45
getDbTagMethod · 0.45

Tested by

no test coverage detected