VTK
vtkDaxThreshold.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 
17 #ifndef vtkDaxThreshold_h
18 #define vtkDaxThreshold_h
19 
20 #include "vtkThreshold.h"
21 #include "vtkAcceleratorsDaxModule.h" //required for correct implementation
22 
23 class VTKACCELERATORSDAX_EXPORT vtkDaxThreshold : public vtkThreshold
24 {
25 public:
27  void PrintSelf(ostream& os, vtkIndent indent);
28 
29  static vtkDaxThreshold* New();
30 
31 protected:
33  ~vtkDaxThreshold();
34 
35  virtual int RequestData(vtkInformation *,
37  vtkInformationVector *);
38 
39 private:
40  vtkDaxThreshold(const vtkDaxThreshold&) VTK_DELETE_FUNCTION;
41  void operator=(const vtkDaxThreshold&) VTK_DELETE_FUNCTION;
42 };
43 
44 #endif // vtkDaxThreshold_h
Store vtkAlgorithm input/output information.
extracts cells where scalar value in cell satisfies threshold criterion
Definition: vtkThreshold.h:61
a simple class to control print indentation
Definition: vtkIndent.h:39
Store zero or more vtkInformation instances.