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

Method sendSelf

SRC/analysis/integrator/Collocation.cpp:418–431  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

416
417
418int Collocation::sendSelf(int cTag, Channel &theChannel)
419{
420 Vector data(3);
421 data(0) = theta;
422 data(1) = beta;
423 data(2) = gamma;
424
425 if (theChannel.sendVector(this->getDbTag(), cTag, data) < 0) {
426 opserr << "WARNING Collocation::sendSelf() - failed to send the data\n";
427 return -1;
428 }
429
430 return 0;
431}
432
433
434int Collocation::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