| 432 | |
| 433 | |
| 434 | int Collocation::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
| 435 | { |
| 436 | Vector data(3); |
| 437 | if (theChannel.recvVector(this->getDbTag(), cTag, data) < 0) { |
| 438 | opserr << "WARNING Collocation::recvSelf() - could not receive data\n"; |
| 439 | return -1; |
| 440 | } |
| 441 | |
| 442 | theta = data(0); |
| 443 | beta = data(1); |
| 444 | gamma = data(2); |
| 445 | |
| 446 | return 0; |
| 447 | } |
| 448 | |
| 449 | |
| 450 | void Collocation::Print(OPS_Stream &s, int flag) |
nothing calls this directly
no test coverage detected