------------------------------------------------------------------------------ Note: includes guard against non-parallel calls
| 916 | //------------------------------------------------------------------------------ |
| 917 | // Note: includes guard against non-parallel calls |
| 918 | void vtkPOpenFOAMReader::GatherMetaData() |
| 919 | { |
| 920 | if (this->NumProcesses > 1) |
| 921 | { |
| 922 | this->AllGather(this->Superclass::PatchDataArraySelection); |
| 923 | this->AllGather(this->Superclass::CellDataArraySelection); |
| 924 | this->AllGather(this->Superclass::PointDataArraySelection); |
| 925 | this->AllGather(this->Superclass::LagrangianDataArraySelection); |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | //------------------------------------------------------------------------------ |
| 930 | // Broadcast a vtkStringArray in process 0 to all processes |
no test coverage detected