------------------------------------------------------------------------------
| 167 | |
| 168 | //------------------------------------------------------------------------------ |
| 169 | int vtkMultiProcessController::GetNumberOfProcesses() |
| 170 | { |
| 171 | if (this->Communicator) |
| 172 | { |
| 173 | return this->Communicator->GetNumberOfProcesses(); |
| 174 | } |
| 175 | else |
| 176 | { |
| 177 | vtkErrorMacro("Communicator not set."); |
| 178 | return 0; |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | //------------------------------------------------------------------------------ |
| 183 | int vtkMultiProcessController::GetLocalProcessId() |
no outgoing calls