VTK
vtkBoostBetweennessClustering.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkBoostGraphAdapter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 
34 #ifndef vtkBoostBetweennessClustering_h
35 #define vtkBoostBetweennessClustering_h
36 
37 #include "vtkInfovisBoostGraphAlgorithmsModule.h" // For export macro
38 #include "vtkGraphAlgorithm.h"
39 
40 class VTKINFOVISBOOSTGRAPHALGORITHMS_EXPORT vtkBoostBetweennessClustering :
41  public vtkGraphAlgorithm
42 {
43 public:
46  void PrintSelf(ostream &os, vtkIndent indent);
47 
50 
52 
56  vtkSetMacro(Threshold, double);
57  vtkGetMacro(Threshold, double);
59 
61 
65  vtkSetMacro(UseEdgeWeightArray, bool);
66  vtkBooleanMacro(UseEdgeWeightArray, bool);
68 
69  vtkSetMacro(InvertEdgeWeightArray, bool);
70  vtkBooleanMacro(InvertEdgeWeightArray, bool);
71 
73 
77  vtkGetStringMacro(EdgeWeightArrayName);
78  vtkSetStringMacro(EdgeWeightArrayName);
80 
82 
86  vtkSetStringMacro(EdgeCentralityArrayName);
88 
89 protected:
90 
91  virtual int RequestData(vtkInformation* request,
92  vtkInformationVector** inputVector,
93  vtkInformationVector* outputVector);
94 
96 
97 
98 private:
99 
100  double Threshold;
101  bool UseEdgeWeightArray;
102  bool InvertEdgeWeightArray;
103  char* EdgeWeightArrayName;
104  char* EdgeCentralityArrayName;
105 
107  void operator=(const vtkBoostBetweennessClustering&) VTK_DELETE_FUNCTION;
108 };
109 
110 #endif // vtkBoostBetweennessClustering_h
static vtkGraphAlgorithm * New()
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only graph as output.
a simple class to control print indentation
Definition: vtkIndent.h:39
int Threshold(vtkDataSet *input, vtkUnstructuredGrid *output, vtkDataArray *field, double lower, double upper)
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Store zero or more vtkInformation instances.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Implements graph clustering based on edge betweenness centrality.