VTK  9.3.20240318
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
vtkDataArraySelection Class Reference

Store on/off settings for data arrays, etc. More...

#include <vtkDataArraySelection.h>

Inheritance diagram for vtkDataArraySelection:
[legend]
Collaboration diagram for vtkDataArraySelection:
[legend]

Public Types

typedef vtkObject Superclass
 

Public Member Functions

virtual vtkTypeBool IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class. More...
 
vtkDataArraySelectionNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
void EnableArray (const char *name)
 Enable the array with the given name. More...
 
void DisableArray (const char *name)
 Disable the array with the given name. More...
 
int ArrayIsEnabled (const char *name) const
 Return whether the array with the given name is enabled. More...
 
int ArrayExists (const char *name) const
 Return whether the array with the given name exists. More...
 
void EnableAllArrays ()
 Enable all arrays that currently have an entry. More...
 
void DisableAllArrays ()
 Disable all arrays that currently have an entry. More...
 
int GetNumberOfArrays () const
 Get the number of arrays that currently have an entry. More...
 
int GetNumberOfArraysEnabled () const
 Get the number of arrays that are enabled. More...
 
const char * GetArrayName (int index) const
 Get the name of the array entry at the given index. More...
 
int GetArrayIndex (const char *name) const
 Get an index of the array with the given name. More...
 
int GetEnabledArrayIndex (const char *name) const
 Get the index of an array with the given name among those that are enabled. More...
 
int GetArraySetting (int index) const
 Get whether the array at the given index is enabled. More...
 
int GetArraySetting (const char *name) const
 Get whether the array is enabled/disable using its name. More...
 
void SetArraySetting (const char *name, int setting)
 Set array setting given the name. More...
 
void RemoveAllArrays ()
 Remove all array entries. More...
 
int AddArray (const char *name, bool state=true)
 Add to the list of arrays that have entries. More...
 
void RemoveArrayByIndex (int index)
 Remove an array setting given its index. More...
 
void RemoveArrayByName (const char *name)
 Remove an array setting given its name. More...
 
void CopySelections (vtkDataArraySelection *selections)
 Copy the selections from the given vtkDataArraySelection instance. More...
 
void DeepCopy (const vtkDataArraySelection *other)
 Copy contents of other. More...
 
bool IsEqual (const vtkDataArraySelection *other) const
 Returns true if the two array selections are equivalent. More...
 
void SetArrays (const char *const *names, int numArrays)
 Set the list of arrays that have entries. More...
 
void SetArraysWithDefault (const char *const *names, int numArrays, int defaultStatus)
 Set the list of arrays that have entries. More...
 
void Union (vtkDataArraySelection *other)
 Update this to include values from other. More...
 
void Union (vtkDataArraySelection *other, bool skipModified)
 Update this to include values from other. More...
 
virtual void SetUnknownArraySetting (int)
 Get/Set enabled state for any unknown arrays. More...
 
virtual int GetUnknownArraySetting ()
 Get/Set enabled state for any unknown arrays. More...
 
- Public Member Functions inherited from vtkObject
 vtkBaseTypeMacro (vtkObject, vtkObjectBase)
 
virtual void DebugOn ()
 Turn debugging output on. More...
 
virtual void DebugOff ()
 Turn debugging output off. More...
 
bool GetDebug ()
 Get the value of the debug flag. More...
 
void SetDebug (bool debugFlag)
 Set the value of the debug flag. More...
 
virtual void Modified ()
 Update the modification time for this object. More...
 
virtual vtkMTimeType GetMTime ()
 Return this object's modified time. More...
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
void RemoveObserver (unsigned long tag)
 
void RemoveObservers (unsigned long event)
 
void RemoveObservers (const char *event)
 
void RemoveAllObservers ()
 
vtkTypeBool HasObserver (unsigned long event)
 
vtkTypeBool HasObserver (const char *event)
 
vtkTypeBool InvokeEvent (unsigned long event)
 
vtkTypeBool InvokeEvent (const char *event)
 
std::string GetObjectDescription () const override
 The object description printed in messages and PrintSelf output. More...
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkCommandGetCommand (unsigned long tag)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObserver (vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Allow user to set the AbortFlagOn() with the return value of the callback method. More...
 
vtkTypeBool InvokeEvent (unsigned long event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
vtkTypeBool InvokeEvent (const char *event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
virtual void SetObjectName (const std::string &objectName)
 Set/get the name of this object for reporting purposes. More...
 
virtual std::string GetObjectName () const
 Set/get the name of this object for reporting purposes. More...
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 Return the class name as a string. More...
 
virtual vtkIdType GetNumberOfGenerationsFromBase (const char *name)
 Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
virtual void Delete ()
 Delete a VTK object. More...
 
virtual void FastDelete ()
 Delete a reference to this object. More...
 
void InitializeObjectBase ()
 
void Print (ostream &os)
 Print an object to an ostream. More...
 
void Register (vtkObjectBase *o)
 Increase the reference count (mark as used by another object). More...
 
virtual void UnRegister (vtkObjectBase *o)
 Decrease the reference count (release by another object). More...
 
int GetReferenceCount ()
 Return the current reference count of this object. More...
 
void SetReferenceCount (int)
 Sets the reference count. More...
 
bool GetIsInMemkind () const
 A local state flag that remembers whether this object lives in the normal or extended memory space. More...
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual bool UsesGarbageCollector () const
 Indicate whether the class uses vtkGarbageCollector or not. More...
 

Static Public Member Functions

static vtkTypeBool IsTypeOf (const char *type)
 
static vtkDataArraySelectionSafeDownCast (vtkObjectBase *o)
 
static vtkDataArraySelectionNew ()
 
- Static Public Member Functions inherited from vtkObject
static vtkObjectNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void BreakOnError ()
 This method is called when vtkErrorMacro executes. More...
 
static void SetGlobalWarningDisplay (vtkTypeBool val)
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOn ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOff ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static vtkTypeBool GetGlobalWarningDisplay ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
- Static Public Member Functions inherited from vtkObjectBase
static vtkTypeBool IsTypeOf (const char *name)
 Return 1 if this class type is the same type of (or a subclass of) the named class. More...
 
static vtkIdType GetNumberOfGenerationsFromBaseType (const char *name)
 Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
static vtkObjectBaseNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void SetMemkindDirectory (const char *directoryname)
 The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. More...
 
static bool GetUsingMemkind ()
 A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. More...
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkDataArraySelection ()
 
 ~vtkDataArraySelection () override
 
- Protected Member Functions inherited from vtkObject
 vtkObject ()
 
 ~vtkObject () override
 
void RegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr)
 These methods allow a command to exclusively grab all events. More...
 
void InternalReleaseFocus ()
 These methods allow a command to exclusively grab all events. More...
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void ReportReferences (vtkGarbageCollector *)
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Additional Inherited Members

- Static Protected Member Functions inherited from vtkObjectBase
static vtkMallocingFunction GetCurrentMallocFunction ()
 
static vtkReallocingFunction GetCurrentReallocFunction ()
 
static vtkFreeingFunction GetCurrentFreeFunction ()
 
static vtkFreeingFunction GetAlternateFreeFunction ()
 
- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
std::string ObjectName
 
- Protected Attributes inherited from vtkObjectBase
std::atomic< int32_t > ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Detailed Description

Store on/off settings for data arrays, etc.

vtkDataArraySelection is intended to be used by algorithms that want to expose a API that allow the user to enable/disable a collection of entities, such as arrays. Readers, for example, can use vtkDataArraySelection to let the user choose which array to read from the file.

Originally intended for selecting data arrays (hence the name), this class can be used for letting users choose other items too, for example, vtkIOSSReader uses vtkDataArraySelection to let users choose which blocks to read.

Unlike most other vtkObject subclasses, vtkDataArraySelection has public API that need not modify the MTime for the object. These M-Time non-modifying methods are typically intended for use within the algorithm or reader to populate the vtkDataArraySelection instance with available array names and their default values.

Tests:
vtkDataArraySelection (Tests)

Definition at line 36 of file vtkDataArraySelection.h.

Member Typedef Documentation

◆ Superclass

Definition at line 39 of file vtkDataArraySelection.h.

Constructor & Destructor Documentation

◆ vtkDataArraySelection()

vtkDataArraySelection::vtkDataArraySelection ( )
protected

◆ ~vtkDataArraySelection()

vtkDataArraySelection::~vtkDataArraySelection ( )
overrideprotected

Member Function Documentation

◆ IsTypeOf()

static vtkTypeBool vtkDataArraySelection::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual vtkTypeBool vtkDataArraySelection::IsA ( const char *  name)
virtual

Return 1 if this class is the same type of (or a subclass of) the named class.

Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkObjectBase.

◆ SafeDownCast()

static vtkDataArraySelection* vtkDataArraySelection::SafeDownCast ( vtkObjectBase o)
static

◆ NewInstanceInternal()

virtual vtkObjectBase* vtkDataArraySelection::NewInstanceInternal ( ) const
protectedvirtual

◆ NewInstance()

vtkDataArraySelection* vtkDataArraySelection::NewInstance ( ) const

◆ PrintSelf()

void vtkDataArraySelection::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
overridevirtual

Methods invoked by print to print information about the object including superclasses.

Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkObjectBase.

◆ New()

static vtkDataArraySelection* vtkDataArraySelection::New ( )
static

◆ EnableArray()

void vtkDataArraySelection::EnableArray ( const char *  name)

Enable the array with the given name.

Creates a new entry if none exists.

This method will call this->Modified() if the enable state for the array changed.

◆ DisableArray()

void vtkDataArraySelection::DisableArray ( const char *  name)

Disable the array with the given name.

Creates a new entry if none exists.

This method will call this->Modified() if the enable state for the array changed.

◆ ArrayIsEnabled()

int vtkDataArraySelection::ArrayIsEnabled ( const char *  name) const

Return whether the array with the given name is enabled.

If there is no entry, the array is assumed to be disabled.

◆ ArrayExists()

int vtkDataArraySelection::ArrayExists ( const char *  name) const

Return whether the array with the given name exists.

◆ EnableAllArrays()

void vtkDataArraySelection::EnableAllArrays ( )

Enable all arrays that currently have an entry.

This method will call this->Modified() if the enable state for any of the known arrays is changed.

◆ DisableAllArrays()

void vtkDataArraySelection::DisableAllArrays ( )

Disable all arrays that currently have an entry.

This method will call this->Modified() if the enable state for any of the known arrays is changed.

◆ GetNumberOfArrays()

int vtkDataArraySelection::GetNumberOfArrays ( ) const

Get the number of arrays that currently have an entry.

◆ GetNumberOfArraysEnabled()

int vtkDataArraySelection::GetNumberOfArraysEnabled ( ) const

Get the number of arrays that are enabled.

◆ GetArrayName()

const char* vtkDataArraySelection::GetArrayName ( int  index) const

Get the name of the array entry at the given index.

◆ GetArrayIndex()

int vtkDataArraySelection::GetArrayIndex ( const char *  name) const

Get an index of the array with the given name.

◆ GetEnabledArrayIndex()

int vtkDataArraySelection::GetEnabledArrayIndex ( const char *  name) const

Get the index of an array with the given name among those that are enabled.

Returns -1 if the array is not enabled.

◆ GetArraySetting() [1/2]

int vtkDataArraySelection::GetArraySetting ( int  index) const

Get whether the array at the given index is enabled.

◆ GetArraySetting() [2/2]

int vtkDataArraySelection::GetArraySetting ( const char *  name) const
inline

Get whether the array is enabled/disable using its name.

Definition at line 122 of file vtkDataArraySelection.h.

◆ SetArraySetting()

void vtkDataArraySelection::SetArraySetting ( const char *  name,
int  setting 
)

Set array setting given the name.

If the array doesn't exist, it will be added.

This method will call this->Modified() if the enable state for the array changed.

◆ RemoveAllArrays()

void vtkDataArraySelection::RemoveAllArrays ( )

Remove all array entries.

This method will call this->Modified() if the arrays were cleared.

◆ AddArray()

int vtkDataArraySelection::AddArray ( const char *  name,
bool  state = true 
)

Add to the list of arrays that have entries.

For arrays that already have entries, the settings are untouched. For arrays that don't already have an entry, they are assumed to be enabled by default. The state can also be passed as the second argument. This method should be called only by the filter owning this object.

This method does not call this->Modified().

Also note for arrays already known to this instance (i.e. this->ArrayExists(name) == true, this method has no effect.

◆ RemoveArrayByIndex()

void vtkDataArraySelection::RemoveArrayByIndex ( int  index)

Remove an array setting given its index.

This method does not call this->Modified().

◆ RemoveArrayByName()

void vtkDataArraySelection::RemoveArrayByName ( const char *  name)

Remove an array setting given its name.

This method does not call this->Modified().

◆ SetArrays()

void vtkDataArraySelection::SetArrays ( const char *const *  names,
int  numArrays 
)

Set the list of arrays that have entries.

For arrays that already have entries, the settings are copied. For arrays that don't already have an entry, they are assigned the given default status. If no default status is given, it is assumed to be on. There will be no more entries than the names given. This method should be called only by the filter owning this object. The signature with the default must have a different name due to a bug in the Borland C++ 5.5 compiler.

This method does not call this->Modified().

◆ SetArraysWithDefault()

void vtkDataArraySelection::SetArraysWithDefault ( const char *const *  names,
int  numArrays,
int  defaultStatus 
)

Set the list of arrays that have entries.

For arrays that already have entries, the settings are copied. For arrays that don't already have an entry, they are assigned the given default status. If no default status is given, it is assumed to be on. There will be no more entries than the names given. This method should be called only by the filter owning this object. The signature with the default must have a different name due to a bug in the Borland C++ 5.5 compiler.

This method does not call this->Modified().

◆ CopySelections()

void vtkDataArraySelection::CopySelections ( vtkDataArraySelection selections)

Copy the selections from the given vtkDataArraySelection instance.

This method will call this->Modified() if the array selections changed.

◆ Union() [1/2]

void vtkDataArraySelection::Union ( vtkDataArraySelection other)
inline

Update this to include values from other.

For arrays that don't exist in this but exist in other, they will get added to this with the same array setting as in other. Array settings for arrays already in this are left unchanged.

This method will call this->Modified() if the array selections changed unless skipModified is set to true (default is false).

Definition at line 203 of file vtkDataArraySelection.h.

◆ Union() [2/2]

void vtkDataArraySelection::Union ( vtkDataArraySelection other,
bool  skipModified 
)

Update this to include values from other.

For arrays that don't exist in this but exist in other, they will get added to this with the same array setting as in other. Array settings for arrays already in this are left unchanged.

This method will call this->Modified() if the array selections changed unless skipModified is set to true (default is false).

◆ SetUnknownArraySetting()

virtual void vtkDataArraySelection::SetUnknownArraySetting ( int  )
virtual

Get/Set enabled state for any unknown arrays.

Default is 0 i.e. not enabled. When set to 1, ArrayIsEnabled will return 1 for any array not explicitly specified.

◆ GetUnknownArraySetting()

virtual int vtkDataArraySelection::GetUnknownArraySetting ( )
virtual

Get/Set enabled state for any unknown arrays.

Default is 0 i.e. not enabled. When set to 1, ArrayIsEnabled will return 1 for any array not explicitly specified.

◆ DeepCopy()

void vtkDataArraySelection::DeepCopy ( const vtkDataArraySelection other)

Copy contents of other.

The MTime for this instance is modified only if values are different.

◆ IsEqual()

bool vtkDataArraySelection::IsEqual ( const vtkDataArraySelection other) const

Returns true if the two array selections are equivalent.


The documentation for this class was generated from the following file: