VTK
vtkBoostBreadthFirstSearchTree.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkBoostBreadthFirstSearchTree.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 /*-------------------------------------------------------------------------
16  Copyright 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
36 #ifndef vtkBoostBreadthFirstSearchTree_h
37 #define vtkBoostBreadthFirstSearchTree_h
38 
39 #include "vtkInfovisBoostGraphAlgorithmsModule.h" // For export macro
40 #include "vtkStdString.h" // For string type
41 #include "vtkVariant.h" // For variant type
42 
43 #include "vtkTreeAlgorithm.h"
44 
45 class VTKINFOVISBOOSTGRAPHALGORITHMS_EXPORT vtkBoostBreadthFirstSearchTree : public vtkTreeAlgorithm
46 {
47 public:
50  void PrintSelf(ostream& os, vtkIndent indent) override;
51 
56  void SetOriginVertex(vtkIdType index);
57 
65  void SetOriginVertex(vtkStdString arrayName, vtkVariant value);
66 
68 
72  vtkSetMacro(CreateGraphVertexIdArray, bool);
73  vtkGetMacro(CreateGraphVertexIdArray, bool);
74  vtkBooleanMacro(CreateGraphVertexIdArray, bool);
76 
78 
81  vtkSetMacro(ReverseEdges, bool);
82  vtkGetMacro(ReverseEdges, bool);
83  vtkBooleanMacro(ReverseEdges, bool);
85 
86 protected:
89 
91 
93 
94 private:
95 
96  vtkIdType OriginVertexIndex;
97  char* ArrayName;
98  vtkVariant OriginValue;
99  bool ArrayNameSet;
100  bool CreateGraphVertexIdArray;
101  bool ReverseEdges;
102 
104 
107  vtkSetStringMacro(ArrayName);
109 
114  vtkIdType GetVertexIndex(
115  vtkAbstractArray *abstract,vtkVariant value);
116 
118  void operator=(const vtkBoostBreadthFirstSearchTree&) = delete;
119 };
120 
121 #endif
vtkStdString.h
vtkVariant.h
vtkX3D::value
Definition: vtkX3D.h:220
vtkIdType
int vtkIdType
Definition: vtkType.h:347
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkTreeAlgorithm.h
vtkX3D::port
Definition: vtkX3D.h:447
vtkTreeAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkTreeAlgorithm::New
static vtkTreeAlgorithm * New()
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkVariant
A atomic type representing the union of many types.
Definition: vtkVariant.h:65
vtkTreeAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTreeAlgorithm
Superclass for algorithms that produce only Tree as output.
Definition: vtkTreeAlgorithm.h:45
vtkTreeAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkAbstractArray
Abstract superclass for all arrays.
Definition: vtkAbstractArray.h:75
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:80
vtkX3D::info
Definition: vtkX3D.h:376
vtkBoostBreadthFirstSearchTree
Constructs a BFS tree from a graph.
Definition: vtkBoostBreadthFirstSearchTree.h:45
vtkStdString
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:34
vtkX3D::index
Definition: vtkX3D.h:246