| 416 | |
| 417 | |
| 418 | int 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 | |
| 434 | int Collocation::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
nothing calls this directly
no test coverage detected