Go to the documentation of this file.
101 #ifndef vtkMultiThreshold_h
102 #define vtkMultiThreshold_h
104 #include "vtkFiltersGeneralModule.h"
190 int AddIntervalSet(
double xmin,
double xmax,
int omin,
int omax,
191 int assoc,
const char* arrayName,
int component,
int allScalars );
192 int AddIntervalSet(
double xmin,
double xmax,
int omin,
int omax,
193 int assoc,
int attribType,
int component,
int allScalars );
204 int AddLowpassIntervalSet(
double xmax,
int assoc,
const char* arrayName,
int component,
int allScalars );
205 int AddHighpassIntervalSet(
double xmin,
int assoc,
const char* arrayName,
int component,
int allScalars );
206 int AddBandpassIntervalSet(
double xmin,
double xmax,
int assoc,
const char* arrayName,
int component,
int allScalars );
207 int AddNotchIntervalSet(
double xlo,
double xhi,
int assoc,
const char* arrayName,
int component,
int allScalars );
213 int AddBooleanSet(
int operation,
int numInputs,
int* inputs );
218 int OutputSet(
int setId );
260 else if ( this->Component > other.
Component )
263 if ( (! this->AllScalars) && other.
AllScalars )
265 else if ( this->AllScalars && (! other.
AllScalars) )
268 if ( this->Type == -1 )
270 if ( other.
Type == -1 )
271 return this->Name < other.
Name;
276 return this->Type < other.
Type;
297 virtual void PrintNodeName( ostream& os );
299 virtual void PrintNode( ostream& os ) = 0;
302 virtual Interval* GetIntervalPointer();
309 double EndpointValues[2];
311 int EndpointClosures[2];
319 int Match(
double cellNorm[2] );
322 void PrintNode( ostream& os )
override;
323 Interval* GetIntervalPointer()
override;
335 BooleanSet(
int sId,
int op,
int* inBegin,
int* inEnd ) : Inputs( inBegin, inEnd ) {
340 void PrintNode( ostream& os )
override;
396 typedef std::map<NormKey,IntervalList>
RuleMap;
423 void UpdateDependents(
430 int AddIntervalSet(
NormKey& nk,
double xmin,
double xmax,
int omin,
int omax );
435 void PrintGraph( ostream& os );
452 double xmin,
double xmax,
int assoc,
const char* arrayName,
int component,
int allScalars )
458 double xlo,
double xhi,
int assoc,
const char* arrayName,
int component,
int allScalars )
488 #endif // vtkMultiThreshold_h
std::vector< Set * > Sets
A list of rules keyed by their unique integer ID.
int AddBooleanSet(int operation, int numInputs, int *inputs)
Create a new mesh subset using boolean operations on pre-existing sets.
TruthTree DependentSets
A list of boolean sets whose values depend on the given set.
A subset of a mesh represented by a range of acceptable attribute values.
Include elements that belong to an odd number of input sets (a kind of "winding XOR")
std::vector< TruthTreeValues > TruthTree
Only include elements that don't belong to any input set.
Ruling
When an interval is evaluated, its value is used to update a truth table.
static vtkMultiBlockDataSetAlgorithm * New()
int AddBandpassIntervalSet(double xmin, double xmax, int assoc, const char *arrayName, int component, int allScalars)
BooleanSet(int sId, int op, int *inBegin, int *inEnd)
Construct a new set with the given ID, operator, and inputs.
int AddHighpassIntervalSet(double xmin, int assoc, const char *arrayName, int component, int allScalars)
abstract superclass for arrays of numeric data
VTKCOMMONCORE_EXPORT bool operator<(const vtkUnicodeString &lhs, const vtkUnicodeString &rhs)
NormKey Norm
This contains information about the attribute over which the interval is defined.
static double Inf()
Special IEEE-754 number used to represent positive infinity.
int AddLowpassIntervalSet(double xmax, int assoc, const char *arrayName, int component, int allScalars)
These convenience members make it easy to insert closed intervals.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
static double NegInf()
Special IEEE-754 number used to represent negative infinity.
int Operator
The boolean operation that will be performed on the inputs to obtain the output.
std::vector< Interval * > IntervalList
A list of pointers to IntervalSets.
Interval * GetIntervalPointer() override
int AddIntervalSet(double xmin, double xmax, int omin, int omax, int assoc, const char *arrayName, int component, int allScalars)
Add a mesh subset to be computed by thresholding an attribute of the input mesh.
BooleanSet * GetBooleanSetPointer() override
Avoid dynamic_casts. Subclasses must override.
abstract class to specify cell behavior
represent and manipulate cell attribute data
std::map< NormKey, IntervalList > RuleMap
A map describing the IntervalSets that share a common attribute and norm.
a simple class to control print indentation
Closure
Whether the endpoint value of an interval should be included or excluded.
int NumberOfOutputs
The number of output datasets.
virtual BooleanSet * GetBooleanSetPointer()
Avoid dynamic_casts. Subclasses must override.
RuleMap IntervalRules
A set of threshold rules sorted by the attribute+norm to which they are applied.
A subset of a mesh represented as a boolean set operation.
Include an element if it belongs to any input set.
Only include an element if it belongs to all the input sets.
int OutputId
A unique identifier for this set.
virtual ~Set()
Virtual destructor since we have virtual members.
Set()
The index of the output mesh that will hold this set or -1 if the set is not output.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Specify a closed interval.
Norm
Norms that can be used to threshold vector attributes.
virtual Interval * GetIntervalPointer()
Include an element if it belongs to exactly one input set.
Threshold cells within multiple intervals.
abstract class for specifying dataset behavior
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
provides thread-safe access to cells
std::vector< int > Inputs
A list of input sets. These may be IntervalSets or BooleanSets.
std::vector< int > TruthTreeValues
A base class for representing threshold sets.
dataset represents arbitrary combinations of all possible cell types
int AddNotchIntervalSet(double xlo, double xhi, int assoc, const char *arrayName, int component, int allScalars)
SetOperation
Operations that can be performed on sets to generate another set. Most of these operators take 2 or m...
A class with comparison operator used to index input array norms used in threshold rules.
int NextArrayIndex
A variable used to store the next index to use when calling SetInputArrayToProcess.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.