| 496 | } |
| 497 | |
| 498 | int HHTExplicit_TP::sendSelf(int cTag, Channel &theChannel) |
| 499 | { |
| 500 | Vector data(2); |
| 501 | data(0) = alpha; |
| 502 | data(1) = gamma; |
| 503 | |
| 504 | if (theChannel.sendVector(this->getDbTag(), cTag, data) < 0) { |
| 505 | opserr << "WARNING HHTExplicit_TP::sendSelf() - could not send data\n"; |
| 506 | return -1; |
| 507 | } |
| 508 | |
| 509 | return 0; |
| 510 | } |
| 511 | |
| 512 | |
| 513 | int HHTExplicit_TP::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
nothing calls this directly
no test coverage detected