103 #ifndef vtkMultiThreshold_h
104 #define vtkMultiThreshold_h
195 int AddIntervalSet(
double xmin,
double xmax,
int omin,
int omax,
196 int assoc,
const char* arrayName,
int component,
int allScalars );
197 int AddIntervalSet(
double xmin,
double xmax,
int omin,
int omax,
198 int assoc,
int attribType,
int component,
int allScalars );
208 int AddLowpassIntervalSet(
double xmax,
int assoc,
const char* arrayName,
int component,
int allScalars );
209 int AddHighpassIntervalSet(
double xmin,
int assoc,
const char* arrayName,
int component,
int allScalars );
210 int AddBandpassIntervalSet(
double xmin,
double xmax,
int assoc,
const char* arrayName,
int component,
int allScalars );
211 int AddNotchIntervalSet(
double xlo,
double xhi,
int assoc,
const char* arrayName,
int component,
int allScalars );
216 int AddBooleanSet(
int operation,
int numInputs,
int* inputs );
220 int OutputSet(
int setId );
261 else if ( this->Component > other.
Component )
264 if ( (! this->AllScalars) && other.
AllScalars )
266 else if ( this->AllScalars && (! other.
AllScalars) )
269 if ( this->Type == -1 )
271 if ( other.
Type == -1 )
272 return this->Name < other.
Name;
277 return this->Type < other.
Type;
298 virtual void PrintNodeName( ostream& os );
300 virtual void PrintNode( ostream& os ) = 0;
303 virtual Interval* GetIntervalPointer();
310 double EndpointValues[2];
312 int EndpointClosures[2];
320 int Match(
double cellNorm[2] );
323 virtual void PrintNode( ostream& os );
324 virtual Interval* GetIntervalPointer();
336 BooleanSet(
int sId,
int op,
int* inBegin,
int* inEnd ) : Inputs( inBegin, inEnd ) {
341 virtual void PrintNode( ostream& os );
393 typedef std::map<NormKey,IntervalList>
RuleMap;
417 void UpdateDependents(
418 int id, std::set<int>& unresolvedOutputs, TruthTreeValues& setStates,
423 int AddIntervalSet(
NormKey& nk,
double xmin,
double xmax,
int omin,
int omax );
428 void PrintGraph( ostream& os );
445 double xmin,
double xmax,
int assoc,
const char* arrayName,
int component,
int allScalars )
451 double xlo,
double xhi,
int assoc,
const char* arrayName,
int component,
int allScalars )
481 #endif // vtkMultiThreshold_h
std::vector< Set * > Sets
Only include elements that don't belong to any input set.
A subset of a mesh represented by a range of acceptable attribute values.
virtual ~Set()
Virtual destructor since we have virtual members.
int Operator
The boolean operation that will be performed on the inputs to obtain the output.
A subset of a mesh represented as a boolean set operation.
std::vector< TruthTreeValues > TruthTree
int AddBooleanSet(int operation, int numInputs, int *inputs)
represent and manipulate cell attribute data
int OutputId
A unique identifier for this set.
virtual Interval * GetIntervalPointer()
Set()
The index of the output mesh that will hold this set or -1 if the set is not output.
BooleanSet(int sId, int op, int *inBegin, int *inEnd)
Construct a new set with the given ID, operator, and inputs.
NormKey Norm
This contains information about the attribute over which the interval is defined. ...
virtual BooleanSet * GetBooleanSetPointer()
Avoid dynamic_casts. Subclasses must override.
std::vector< Interval * > IntervalList
A list of pointers to IntervalSets.
abstract class for specifying dataset behavior
Include elements that belong to an odd number of input sets (a kind of "winding XOR") ...
int AddBandpassIntervalSet(double xmin, double xmax, int assoc, const char *arrayName, int component, int allScalars)
int AddIntervalSet(double xmin, double xmax, int omin, int omax, int assoc, const char *arrayName, int component, int allScalars)
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
VTKCOMMONCORE_EXPORT bool operator<(const vtkUnicodeString &lhs, const vtkUnicodeString &rhs)
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
provides thread-safe access to cells
static vtkMultiBlockDataSetAlgorithm * New()
int AddLowpassIntervalSet(double xmax, int assoc, const char *arrayName, int component, int allScalars)
abstract class to specify cell behavior
int AddHighpassIntervalSet(double xmin, int assoc, const char *arrayName, int component, int allScalars)
a simple class to control print indentation
Closure
Whether the endpoint value of an interval should be included or excluded.
std::vector< int > Inputs
A list of input sets. These may be IntervalSets or BooleanSets.
dataset represents arbitrary combinations of all possible cell types
abstract superclass for arrays of numeric data
Include an element if it belongs to exactly one input set.
#define VTKFILTERSGENERAL_EXPORT
virtual Interval * GetIntervalPointer()
Specify a closed interval.
std::map< NormKey, IntervalList > RuleMap
A map describing the IntervalSets that share a common attribute and norm.
int AddNotchIntervalSet(double xlo, double xhi, int assoc, const char *arrayName, int component, int allScalars)
Only include an element if it belongs to all the input sets.
virtual int FillInputPortInformation(int port, vtkInformation *info)
void PrintSelf(ostream &os, vtkIndent indent)
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...
Norm
Norms that can be used to threshold vector attributes.
Include an element if it belongs to any input set.
Threshold cells within multiple intervals.
virtual BooleanSet * GetBooleanSetPointer()
Avoid dynamic_casts. Subclasses must override.
A base class for representing threshold sets.
std::vector< int > TruthTreeValues