| 681 | PStreamTracerUtils() { this->Locator = nullptr; } |
| 682 | |
| 683 | void Initialize(vtkPStreamTracer* tracer) override |
| 684 | { |
| 685 | this->Superclass::Initialize(tracer); |
| 686 | this->Locator = vtkSmartPointer<ProcessLocator>::New(); |
| 687 | this->Locator->Initialize(tracer->InputData); |
| 688 | } |
| 689 | |
| 690 | ProcessLocator* GetProcessLocator() override { return this->Locator; } |
| 691 |
nothing calls this directly
no test coverage detected