ParaView
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkBlockDeliveryPreprocessor Class Reference

filter used by block-delivery representation for pre-processing data. More...

#include <vtkBlockDeliveryPreprocessor.h>

Inherits vtkDataObjectAlgorithm.

Public Types

typedef vtkDataObjectAlgorithm Superclass
 

Public Member Functions

virtual const char * GetClassName ()
 
virtual int IsA (const char *type)
 
void PrintSelf (ostream &os, vtkIndent indent)
 
void AddCompositeDataSetIndex (unsigned int index)
 In case of Composite datasets, set the flat index of the subtree to pass. More...
 
void RemoveAllCompositeDataSetIndices ()
 In case of Composite datasets, set the flat index of the subtree to pass. More...
 
virtual void SetGenerateCellConnectivity (bool)
 Allow user to enable/disable cell connectivity generation in the datamodel. More...
 
virtual bool GetGenerateCellConnectivity ()
 Allow user to enable/disable cell connectivity generation in the datamodel. More...
 
virtual void SetFieldAssociation (int)
 Select the attribute type. More...
 
virtual int GetFieldAssociation ()
 Select the attribute type. More...
 
virtual void SetFlattenTable (int)
 Flatten the table, i.e. More...
 
virtual int GetFlattenTable ()
 Flatten the table, i.e. More...
 
virtual void SetGenerateOriginalIds (bool)
 When set (default) the vtkOriginalIndices array will be added to the output. More...
 
virtual bool GetGenerateOriginalIds ()
 When set (default) the vtkOriginalIndices array will be added to the output. More...
 

Static Public Member Functions

static vtkBlockDeliveryPreprocessorNew ()
 
static int IsTypeOf (const char *type)
 
static vtkBlockDeliveryPreprocessorSafeDownCast (vtkObject *o)
 

Protected Member Functions

 vtkBlockDeliveryPreprocessor ()
 
 ~vtkBlockDeliveryPreprocessor ()
 
virtual vtkExecutive * CreateDefaultExecutive ()
 
virtual int RequestDataObject (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
 This is called by the superclass. More...
 
virtual int RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *)
 

Protected Attributes

int FieldAssociation
 
int FlattenTable
 
bool GenerateOriginalIds
 
bool GenerateCellConnectivity
 

Detailed Description

filter used by block-delivery representation for pre-processing data.

vtkBlockDeliveryPreprocessor is a filter used by block-delivery representation for pre-processing data. It internally uses vtkAttributeDataToTableFilter.

Definition at line 31 of file vtkBlockDeliveryPreprocessor.h.

Member Typedef Documentation

◆ Superclass

typedef vtkDataObjectAlgorithm vtkBlockDeliveryPreprocessor::Superclass

Definition at line 36 of file vtkBlockDeliveryPreprocessor.h.

Constructor & Destructor Documentation

◆ vtkBlockDeliveryPreprocessor()

vtkBlockDeliveryPreprocessor::vtkBlockDeliveryPreprocessor ( )
protected

◆ ~vtkBlockDeliveryPreprocessor()

vtkBlockDeliveryPreprocessor::~vtkBlockDeliveryPreprocessor ( )
protected

Member Function Documentation

◆ New()

static vtkBlockDeliveryPreprocessor* vtkBlockDeliveryPreprocessor::New ( )
static

◆ GetClassName()

virtual const char* vtkBlockDeliveryPreprocessor::GetClassName ( )
virtual

◆ IsTypeOf()

static int vtkBlockDeliveryPreprocessor::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual int vtkBlockDeliveryPreprocessor::IsA ( const char *  type)
virtual

◆ SafeDownCast()

static vtkBlockDeliveryPreprocessor* vtkBlockDeliveryPreprocessor::SafeDownCast ( vtkObject *  o)
static

◆ PrintSelf()

void vtkBlockDeliveryPreprocessor::PrintSelf ( ostream &  os,
vtkIndent  indent 
)

◆ AddCompositeDataSetIndex()

void vtkBlockDeliveryPreprocessor::AddCompositeDataSetIndex ( unsigned int  index)

In case of Composite datasets, set the flat index of the subtree to pass.

Default or empty results in passing the entire composite tree.

◆ RemoveAllCompositeDataSetIndices()

void vtkBlockDeliveryPreprocessor::RemoveAllCompositeDataSetIndices ( )

In case of Composite datasets, set the flat index of the subtree to pass.

Default or empty results in passing the entire composite tree.

◆ SetGenerateCellConnectivity()

virtual void vtkBlockDeliveryPreprocessor::SetGenerateCellConnectivity ( bool  )
virtual

Allow user to enable/disable cell connectivity generation in the datamodel.

◆ GetGenerateCellConnectivity()

virtual bool vtkBlockDeliveryPreprocessor::GetGenerateCellConnectivity ( )
virtual

Allow user to enable/disable cell connectivity generation in the datamodel.

◆ SetFieldAssociation()

virtual void vtkBlockDeliveryPreprocessor::SetFieldAssociation ( int  )
virtual

Select the attribute type.

Accepted values are

  • vtkDataObject::FIELD_ASSOCIATION_POINTS,
  • vtkDataObject::FIELD_ASSOCIATION_CELLS,
  • vtkDataObject::FIELD_ASSOCIATION_NONE,
  • vtkDataObject::FIELD_ASSOCIATION_VERTICES,
  • vtkDataObject::FIELD_ASSOCIATION_EDGES,
  • vtkDataObject::FIELD_ASSOCIATION_ROWS If value is vtkDataObject::FIELD_ASSOCIATION_NONE, then FieldData associated with the input dataobject is extracted.

◆ GetFieldAssociation()

virtual int vtkBlockDeliveryPreprocessor::GetFieldAssociation ( )
virtual

Select the attribute type.

Accepted values are

  • vtkDataObject::FIELD_ASSOCIATION_POINTS,
  • vtkDataObject::FIELD_ASSOCIATION_CELLS,
  • vtkDataObject::FIELD_ASSOCIATION_NONE,
  • vtkDataObject::FIELD_ASSOCIATION_VERTICES,
  • vtkDataObject::FIELD_ASSOCIATION_EDGES,
  • vtkDataObject::FIELD_ASSOCIATION_ROWS If value is vtkDataObject::FIELD_ASSOCIATION_NONE, then FieldData associated with the input dataobject is extracted.

◆ SetFlattenTable()

virtual void vtkBlockDeliveryPreprocessor::SetFlattenTable ( int  )
virtual

Flatten the table, i.e.

split any multicomponent columns into separate components, internally the vtkSplitColumnComponents filter is used.

◆ GetFlattenTable()

virtual int vtkBlockDeliveryPreprocessor::GetFlattenTable ( )
virtual

Flatten the table, i.e.

split any multicomponent columns into separate components, internally the vtkSplitColumnComponents filter is used.

◆ SetGenerateOriginalIds()

virtual void vtkBlockDeliveryPreprocessor::SetGenerateOriginalIds ( bool  )
virtual

When set (default) the vtkOriginalIndices array will be added to the output.

Can be overridden by setting this flag to 0. This is only respected when AddMetaData is true.

◆ GetGenerateOriginalIds()

virtual bool vtkBlockDeliveryPreprocessor::GetGenerateOriginalIds ( )
virtual

When set (default) the vtkOriginalIndices array will be added to the output.

Can be overridden by setting this flag to 0. This is only respected when AddMetaData is true.

◆ CreateDefaultExecutive()

virtual vtkExecutive* vtkBlockDeliveryPreprocessor::CreateDefaultExecutive ( )
protectedvirtual

◆ RequestDataObject()

virtual int vtkBlockDeliveryPreprocessor::RequestDataObject ( vtkInformation *  ,
vtkInformationVector **  ,
vtkInformationVector *   
)
protectedvirtual

This is called by the superclass.

This is the method you should override.

◆ RequestData()

virtual int vtkBlockDeliveryPreprocessor::RequestData ( vtkInformation *  ,
vtkInformationVector **  ,
vtkInformationVector *   
)
protectedvirtual

Member Data Documentation

◆ FieldAssociation

int vtkBlockDeliveryPreprocessor::FieldAssociation
protected

Definition at line 105 of file vtkBlockDeliveryPreprocessor.h.

◆ FlattenTable

int vtkBlockDeliveryPreprocessor::FlattenTable
protected

Definition at line 106 of file vtkBlockDeliveryPreprocessor.h.

◆ GenerateOriginalIds

bool vtkBlockDeliveryPreprocessor::GenerateOriginalIds
protected

Definition at line 107 of file vtkBlockDeliveryPreprocessor.h.

◆ GenerateCellConnectivity

bool vtkBlockDeliveryPreprocessor::GenerateCellConnectivity
protected

Definition at line 108 of file vtkBlockDeliveryPreprocessor.h.


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