------------------------------------------------------------------------------
| 1381 | |
| 1382 | //------------------------------------------------------------------------------ |
| 1383 | vtkPStreamTracer::vtkPStreamTracer() |
| 1384 | { |
| 1385 | this->Controller = nullptr; |
| 1386 | this->SetController(vtkMultiProcessController::GetGlobalController()); |
| 1387 | |
| 1388 | this->Interpolator = nullptr; |
| 1389 | this->GenerateNormalsInIntegrate = false; |
| 1390 | |
| 1391 | this->EmptyData = 0; |
| 1392 | |
| 1393 | // This class does some non-thread-safe stuff (TBD). Force serial execution. |
| 1394 | this->SerialExecution = true; |
| 1395 | this->ForceSerialExecution = true; |
| 1396 | } |
| 1397 | |
| 1398 | //------------------------------------------------------------------------------ |
| 1399 | vtkPStreamTracer::~vtkPStreamTracer() |
nothing calls this directly
no test coverage detected