You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
C
68 lines
2.0 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkPMaskPoints.h
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
/**
|
||
|
* @class vtkPMaskPoints
|
||
|
* @brief parallel Mask Points
|
||
|
*
|
||
|
* The difference between this implementation and vtkMaskPoints is
|
||
|
* the use of the vtkMultiProcessController and that
|
||
|
* ProportionalMaximumNumberOfPoints is obeyed.
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkPMaskPoints_h
|
||
|
#define vtkPMaskPoints_h
|
||
|
|
||
|
#include "vtkFiltersParallelModule.h" // For export macro
|
||
|
#include "vtkMaskPoints.h"
|
||
|
|
||
|
class vtkMultiProcessController;
|
||
|
|
||
|
class VTKFILTERSPARALLEL_EXPORT vtkPMaskPoints : public vtkMaskPoints
|
||
|
{
|
||
|
public:
|
||
|
static vtkPMaskPoints* New();
|
||
|
vtkTypeMacro(vtkPMaskPoints, vtkMaskPoints);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
//@{
|
||
|
/**
|
||
|
* Set the communicator object for interprocess communication
|
||
|
*/
|
||
|
virtual vtkMultiProcessController* GetController();
|
||
|
virtual void SetController(vtkMultiProcessController*);
|
||
|
//@}
|
||
|
|
||
|
protected:
|
||
|
vtkPMaskPoints();
|
||
|
~vtkPMaskPoints() override;
|
||
|
|
||
|
void InternalScatter(unsigned long*, unsigned long*, int, int) override;
|
||
|
void InternalGather(unsigned long*, unsigned long*, int, int) override;
|
||
|
int InternalGetNumberOfProcesses() override;
|
||
|
int InternalGetLocalProcessId() override;
|
||
|
void InternalBarrier() override;
|
||
|
void InternalSplitController(int color, int key) override;
|
||
|
void InternalResetController() override;
|
||
|
|
||
|
vtkMultiProcessController* Controller;
|
||
|
vtkMultiProcessController* OriginalController;
|
||
|
|
||
|
private:
|
||
|
vtkPMaskPoints(const vtkPMaskPoints&) = delete;
|
||
|
void operator=(const vtkPMaskPoints&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|