VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes
vtkXMLStructuredDataWriter Class Reference

Superclass for VTK XML structured data writers. More...

#include <vtkXMLStructuredDataWriter.h>

Inheritance diagram for vtkXMLStructuredDataWriter:
Inheritance graph
[legend]
Collaboration diagram for vtkXMLStructuredDataWriter:
Collaboration graph
[legend]

List of all members.

Public Types

typedef vtkXMLWriter Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkXMLStructuredDataWriterNewInstance () const
void PrintSelf (ostream &os, vtkIndent indent)
virtual void SetNumberOfPieces (int)
virtual int GetNumberOfPieces ()
virtual void SetWriteExtent (int, int, int, int, int, int)
virtual void SetWriteExtent (int[6])
virtual intGetWriteExtent ()
virtual void GetWriteExtent (int &, int &, int &, int &, int &, int &)
virtual void GetWriteExtent (int[6])
virtual void SetExtentTranslator (vtkExtentTranslator *)
virtual vtkExtentTranslatorGetExtentTranslator ()

Static Public Member Functions

static int IsTypeOf (const char *type)
static vtkXMLStructuredDataWriterSafeDownCast (vtkObjectBase *o)

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 vtkXMLStructuredDataWriter ()
 ~vtkXMLStructuredDataWriter ()
virtual void WritePrimaryElementAttributes (ostream &os, vtkIndent indent)
virtual void WriteAppendedPiece (int index, vtkIndent indent)
virtual void WriteAppendedPieceData (int index)
virtual void WriteInlinePiece (vtkIndent indent)
virtual void GetInputExtent (int *extent)=0
virtual int WriteHeader ()
virtual int WriteAPiece ()
virtual int WriteFooter ()
virtual void AllocatePositionArrays ()
virtual void DeletePositionArrays ()
void SetupExtentTranslator ()
vtkAbstractArrayCreateExactExtent (vtkAbstractArray *array, int *inExtent, int *outExtent, int isPoint)
virtual int WriteInlineMode (vtkIndent indent)
vtkIdType GetStartTuple (int *extent, vtkIdType *increments, int i, int j, int k)
void CalculatePieceFractions (float *fractions)
virtual vtkAbstractArrayCreateArrayForPoints (vtkAbstractArray *inArray)
virtual vtkAbstractArrayCreateArrayForCells (vtkAbstractArray *inArray)
void SetInputUpdateExtent (int piece)
int ProcessRequest (vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
virtual void SetInternalWriteExtent (int, int, int, int, int, int)
virtual void SetInternalWriteExtent (int[6])

Protected Attributes

int WriteExtent [6]
int InternalWriteExtent [6]
int NumberOfPieces
vtkExtentTranslatorExtentTranslator
floatProgressFractions
int CurrentPiece
OffsetsManagerArrayPointDataOM
OffsetsManagerArrayCellDataOM

Detailed Description

Superclass for VTK XML structured data writers.

vtkXMLStructuredDataWriter provides VTK XML writing functionality that is common among all the structured data formats.

Definition at line 33 of file vtkXMLStructuredDataWriter.h.


Member Typedef Documentation

Reimplemented from vtkXMLWriter.

Reimplemented in vtkXMLImageDataWriter, vtkXMLRectilinearGridWriter, and vtkXMLStructuredGridWriter.

Definition at line 36 of file vtkXMLStructuredDataWriter.h.


Constructor & Destructor Documentation


Member Function Documentation

static int vtkXMLStructuredDataWriter::IsTypeOf ( const char *  name) [static]

Return 1 if this class type 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 vtkXMLWriter.

Reimplemented in vtkXMLImageDataWriter, vtkXMLRectilinearGridWriter, and vtkXMLStructuredGridWriter.

virtual int vtkXMLStructuredDataWriter::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 vtkXMLWriter.

Reimplemented in vtkXMLImageDataWriter, vtkXMLRectilinearGridWriter, and vtkXMLStructuredGridWriter.

virtual vtkObjectBase* vtkXMLStructuredDataWriter::NewInstanceInternal ( ) const [protected, virtual]
void vtkXMLStructuredDataWriter::PrintSelf ( ostream &  os,
vtkIndent  indent 
) [virtual]

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 vtkXMLWriter.

Reimplemented in vtkXMLImageDataWriter, vtkXMLRectilinearGridWriter, and vtkXMLStructuredGridWriter.

virtual void vtkXMLStructuredDataWriter::SetNumberOfPieces ( int  ) [virtual]

Get/Set the number of pieces used to stream the image through the pipeline while writing to the file.

Get/Set the number of pieces used to stream the image through the pipeline while writing to the file.

virtual void vtkXMLStructuredDataWriter::SetWriteExtent ( int  ,
int  ,
int  ,
int  ,
int  ,
int   
) [virtual]

Get/Set the extent of the input that should be treated as the WholeExtent in the output file. The default is the WholeExtent of the input.

virtual void vtkXMLStructuredDataWriter::SetWriteExtent ( int  [6]) [virtual]

Get/Set the extent of the input that should be treated as the WholeExtent in the output file. The default is the WholeExtent of the input.

Get/Set the extent of the input that should be treated as the WholeExtent in the output file. The default is the WholeExtent of the input.

virtual void vtkXMLStructuredDataWriter::GetWriteExtent ( int ,
int ,
int ,
int ,
int ,
int  
) [virtual]

Get/Set the extent of the input that should be treated as the WholeExtent in the output file. The default is the WholeExtent of the input.

virtual void vtkXMLStructuredDataWriter::GetWriteExtent ( int  [6]) [virtual]

Get/Set the extent of the input that should be treated as the WholeExtent in the output file. The default is the WholeExtent of the input.

Get/Set the extent translator used for streaming.

Get/Set the extent translator used for streaming.

virtual void vtkXMLStructuredDataWriter::WritePrimaryElementAttributes ( ostream &  os,
vtkIndent  indent 
) [protected, virtual]

Reimplemented from vtkXMLWriter.

Reimplemented in vtkXMLImageDataWriter.

virtual void vtkXMLStructuredDataWriter::WriteAppendedPiece ( int  index,
vtkIndent  indent 
) [protected, virtual]
virtual void vtkXMLStructuredDataWriter::WriteAppendedPieceData ( int  index) [protected, virtual]
virtual void vtkXMLStructuredDataWriter::WriteInlinePiece ( vtkIndent  indent) [protected, virtual]
virtual void vtkXMLStructuredDataWriter::GetInputExtent ( int extent) [protected, pure virtual]
virtual int vtkXMLStructuredDataWriter::WriteHeader ( ) [protected, virtual]
virtual int vtkXMLStructuredDataWriter::WriteAPiece ( ) [protected, virtual]
virtual int vtkXMLStructuredDataWriter::WriteFooter ( ) [protected, virtual]
virtual void vtkXMLStructuredDataWriter::AllocatePositionArrays ( ) [protected, virtual]
virtual void vtkXMLStructuredDataWriter::DeletePositionArrays ( ) [protected, virtual]
vtkAbstractArray* vtkXMLStructuredDataWriter::CreateExactExtent ( vtkAbstractArray array,
int inExtent,
int outExtent,
int  isPoint 
) [protected]
virtual int vtkXMLStructuredDataWriter::WriteInlineMode ( vtkIndent  indent) [protected, virtual]
vtkIdType vtkXMLStructuredDataWriter::GetStartTuple ( int extent,
vtkIdType increments,
int  i,
int  j,
int  k 
) [protected]

Reimplemented from vtkXMLWriter.

Reimplemented from vtkXMLWriter.

int vtkXMLStructuredDataWriter::ProcessRequest ( vtkInformation request,
vtkInformationVector **  inInfo,
vtkInformationVector outInfo 
) [protected, virtual]

Upstream/Downstream requests form the generalized interface through which executives invoke a algorithm's functionality. Upstream requests correspond to information flow from the algorithm's outputs to its inputs. Downstream requests correspond to information flow from the algorithm's inputs to its outputs. A downstream request is defined by the contents of the request information object. The input to the request is stored in the input information vector passed to ProcessRequest. The results of an downstream request are stored in the output information vector passed to ProcessRequest. An upstream request is defined by the contents of the request information object. The input to the request is stored in the output information vector passed to ProcessRequest. The results of an upstream request are stored in the input information vector passed to ProcessRequest. It returns the boolean status of the pipeline (false means failure).

Reimplemented from vtkXMLWriter.

virtual void vtkXMLStructuredDataWriter::SetInternalWriteExtent ( int  ,
int  ,
int  ,
int  ,
int  ,
int   
) [protected, virtual]
virtual void vtkXMLStructuredDataWriter::SetInternalWriteExtent ( int  [6]) [protected, virtual]

Member Data Documentation

Definition at line 95 of file vtkXMLStructuredDataWriter.h.

Definition at line 101 of file vtkXMLStructuredDataWriter.h.

Definition at line 104 of file vtkXMLStructuredDataWriter.h.

Definition at line 107 of file vtkXMLStructuredDataWriter.h.

Definition at line 109 of file vtkXMLStructuredDataWriter.h.

Definition at line 111 of file vtkXMLStructuredDataWriter.h.

Definition at line 115 of file vtkXMLStructuredDataWriter.h.

Definition at line 116 of file vtkXMLStructuredDataWriter.h.


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