VTK
vtkmAverageToPoints.h
Go to the documentation of this file.
1 //=============================================================================
2 //
3 // Copyright (c) Kitware, Inc.
4 // All rights reserved.
5 // See LICENSE.txt for details.
6 //
7 // This software is distributed WITHOUT ANY WARRANTY; without even
8 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9 // PURPOSE. See the above copyright notice for more information.
10 //
11 // Copyright 2012 Sandia Corporation.
12 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
13 // the U.S. Government retains certain rights in this software.
14 //
15 //=============================================================================
16 
29 #ifndef vtkmAverageToPoints_h
30 #define vtkmAverageToPoints_h
31 
32 #include "vtkDataSetAlgorithm.h"
33 #include "vtkAcceleratorsVTKmModule.h" //required for correct implementation
34 
35 class VTKACCELERATORSVTKM_EXPORT vtkmAverageToPoints : public vtkDataSetAlgorithm
36 {
37 public:
39  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
40  static vtkmAverageToPoints* New();
41 
42 protected:
44  ~vtkmAverageToPoints();
45 
46  virtual int RequestData(vtkInformation *,
48  vtkInformationVector *) VTK_OVERRIDE;
49 
50 private:
51  vtkmAverageToPoints(const vtkmAverageToPoints&) VTK_DELETE_FUNCTION;
52  void operator=(const vtkmAverageToPoints&) VTK_DELETE_FUNCTION;
53 };
54 
55 #endif // vtkmAverageToPoints_h
56 // VTK-HeaderTest-Exclude: vtkmAverageToPoints.h
Accelerated cell to point interpolation filter.
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:33
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.