------------------------------------------------------------------------------
| 349 | |
| 350 | //------------------------------------------------------------------------------ |
| 351 | vtkPOpenFOAMReader::vtkPOpenFOAMReader() |
| 352 | { |
| 353 | this->Controller = nullptr; |
| 354 | this->SetController(vtkMultiProcessController::GetGlobalController()); |
| 355 | if (this->Controller == nullptr) |
| 356 | { |
| 357 | this->SetController(vtkDummyController::New()); |
| 358 | this->NumProcesses = 1; |
| 359 | this->ProcessId = 0; |
| 360 | } |
| 361 | else |
| 362 | { |
| 363 | this->NumProcesses = this->Controller->GetNumberOfProcesses(); |
| 364 | this->ProcessId = this->Controller->GetLocalProcessId(); |
| 365 | } |
| 366 | this->CaseType = RECONSTRUCTED_CASE; |
| 367 | this->ReadAllFilesToDetermineStructure = true; |
| 368 | this->MTimeOld = 0; |
| 369 | } |
| 370 | |
| 371 | //------------------------------------------------------------------------------ |
| 372 | vtkPOpenFOAMReader::~vtkPOpenFOAMReader() |
nothing calls this directly
no test coverage detected