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.
74 lines
2.3 KiB
C
74 lines
2.3 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkPYoungsMaterialInterface.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 vtkPYoungsMaterialInterface
|
||
|
* @brief parallel reconstruction of material interfaces
|
||
|
*
|
||
|
*
|
||
|
* This is a subclass of vtkYoungsMaterialInterface, implementing the reconstruction
|
||
|
* of material interfaces, for parallel data sets
|
||
|
*
|
||
|
* @par Thanks:
|
||
|
* This file is part of the generalized Youngs material interface reconstruction algorithm
|
||
|
* contributed by <br> CEA/DIF - Commissariat a l'Energie Atomique, Centre DAM Ile-De-France <br>
|
||
|
* BP12, F-91297 Arpajon, France. <br>
|
||
|
* Implementation by Thierry Carrard and Philippe Pebay
|
||
|
*
|
||
|
* @sa
|
||
|
* vtkYoungsMaterialInterface
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkPYoungsMaterialInterface_h
|
||
|
#define vtkPYoungsMaterialInterface_h
|
||
|
|
||
|
#include "vtkFiltersParallelModule.h" // For export macro
|
||
|
#include "vtkYoungsMaterialInterface.h"
|
||
|
|
||
|
class vtkMultiProcessController;
|
||
|
|
||
|
class VTKFILTERSPARALLEL_EXPORT vtkPYoungsMaterialInterface : public vtkYoungsMaterialInterface
|
||
|
{
|
||
|
public:
|
||
|
static vtkPYoungsMaterialInterface* New();
|
||
|
vtkTypeMacro(vtkPYoungsMaterialInterface, vtkYoungsMaterialInterface);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
/**
|
||
|
* Parallel implementation of the material aggregation.
|
||
|
*/
|
||
|
void Aggregate(int, int*) override;
|
||
|
|
||
|
//@{
|
||
|
/**
|
||
|
* Get/Set the multiprocess controller. If no controller is set,
|
||
|
* single process is assumed.
|
||
|
*/
|
||
|
virtual void SetController(vtkMultiProcessController*);
|
||
|
vtkGetObjectMacro(Controller, vtkMultiProcessController);
|
||
|
//@}
|
||
|
|
||
|
protected:
|
||
|
vtkPYoungsMaterialInterface();
|
||
|
~vtkPYoungsMaterialInterface() override;
|
||
|
|
||
|
vtkMultiProcessController* Controller;
|
||
|
|
||
|
private:
|
||
|
vtkPYoungsMaterialInterface(const vtkPYoungsMaterialInterface&) = delete;
|
||
|
void operator=(const vtkPYoungsMaterialInterface&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif /* VTK_PYOUNGS_MATERIAL_INTERFACE_H */
|