Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

vtkEnSightReader Class Reference

superclass for EnSight file readers. More...

#include <vtkEnSightReader.h>

Inheritance diagram for vtkEnSightReader:

Inheritance graph
[legend]
Collaboration diagram for vtkEnSightReader:

Collaboration graph
[legend]
List of all members.

Public Methods

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
char * GetDescription (int n)
char * GetComplexDescription (int n)
char * GetDescription (int n, int type)
void Update ()
void SetCaseFileName (char *fileName)
virtual char * GetCaseFileName ()
virtual void SetFilePath (const char *)
virtual char * GetFilePath ()
int GetNumberOfVariables ()
int GetNumberOfComplexVariables ()
int GetNumberOfVariables (int type)
virtual int GetNumberOfScalarsPerNode ()
virtual int GetNumberOfVectorsPerNode ()
virtual int GetNumberOfTensorsSymmPerNode ()
virtual int GetNumberOfScalarsPerElement ()
virtual int GetNumberOfVectorsPerElement ()
virtual int GetNumberOfTensorsSymmPerElement ()
virtual int GetNumberOfScalarsPerMeasuredNode ()
virtual int GetNumberOfVectorsPerMeasuredNode ()
virtual int GetNumberOfComplexScalarsPerNode ()
virtual int GetNumberOfComplexVectorsPerNode ()
virtual int GetNumberOfComplexScalarsPerElement ()
virtual int GetNumberOfComplexVectorsPerElement ()
int GetVariableType (int n)
int GetComplexVariableType (int n)
virtual void SetTimeValue (float)
virtual float GetTimeValue ()
virtual float GetMinimumTimeValue ()
virtual float GetMaximumTimeValue ()

Static Public Methods

int IsTypeOf (const char *type)
vtkEnSightReader * SafeDownCast (vtkObject *o)

Protected Methods

 vtkEnSightReader ()
 ~vtkEnSightReader ()
void Execute ()
int ReadCaseFile ()
virtual int ReadGeometryFile (char *fileName, int timeStep)=0
virtual int ReadMeasuredGeometryFile (char *fileName, int timeStep)=0
int ReadVariableFiles ()
virtual int CreateUnstructuredGridOutput (int partId, char line[256])=0
virtual int CreateStructuredGridOutput (int partId, char line[256])=0
int ReadLine (char result[256])
int ReadNextDataLine (char result[256])
void AddVariableFileName (char *fileName1, char *fileName2=NULL)
void AddVariableDescription (char *description)
void AddVariableType ()
int GetElementType (char *line)
void ReplaceWildcards (char *filename, int num)
virtual void SetUseTimeSets (int)
virtual int GetUseTimeSets ()
virtual void UseTimeSetsOn ()
virtual void UseTimeSetsOff ()
virtual void SetUseFileSets (int)
virtual int GetUseFileSets ()
virtual void UseFileSetsOn ()
virtual void UseFileSetsOff ()
virtual int ReadScalarsPerNode (char *fileName, char *description, int timeStep, int measured=0, int numberOfComponents=1, int component=0)=0
virtual int ReadVectorsPerNode (char *fileName, char *description, int timeStep, int measured=0)=0
virtual int ReadTensorsPerNode (char *fileName, char *description, int timeStep)=0
virtual int ReadScalarsPerElement (char *fileName, char *description, int timeStep, int numberOfComponents=1, int component=0)=0
virtual int ReadVectorsPerElement (char *fileName, char *description, int timeStep)=0
virtual int ReadTensorsPerElement (char *fileName, char *description, int timeStep)=0
virtual void SetGeometryFileName (const char *)
virtual char * GetGeometryFileName ()
virtual void SetMeasuredFileName (const char *)
virtual char * GetMeasuredFileName ()
virtual void SetMatchFileName (const char *)
virtual char * GetMatchFileName ()

Protected Attributes

char * FilePath
char * CaseFileName
char * GeometryFileName
char * MeasuredFileName
char * MatchFileName
vtkIdList *** CellIds
vtkIdListUnstructuredPartIds
int VariableMode
int NumberOfVariables
int NumberOfComplexVariables
int * VariableTypes
int * ComplexVariableTypes
char ** VariableFileNames
char ** ComplexVariableFileNames
char ** VariableDescriptions
char ** ComplexVariableDescriptions
vtkIdListVariableTimeSets
vtkIdListComplexVariableTimeSets
vtkIdListVariableFileSets
vtkIdListComplexVariableFileSets
vtkCollectionTimeSetFilenameNumbersCollection
vtkIdListTimeSetsWithFilenameNumbers
vtkCollectionTimeSetTimeValuesCollection
vtkCollectionFileSetFilenameNumbersCollection
vtkIdListFileSetsWithFilenameNumbers
vtkCollectionFileSetNumberOfStepsCollection
vtkIdListTimeSets
vtkIdListFileSets
int GeometryTimeSet
int GeometryFileSet
int MeasuredTimeSet
int MeasuredFileSet
float TimeValue
float GeometryTimeValue
float MeasuredTimeValue
float MinimumTimeValue
float MaximumTimeValue
int NumberOfScalarsPerNode
int NumberOfVectorsPerNode
int NumberOfTensorsSymmPerNode
int NumberOfScalarsPerElement
int NumberOfVectorsPerElement
int NumberOfTensorsSymmPerElement
int NumberOfScalarsPerMeasuredNode
int NumberOfVectorsPerMeasuredNode
int NumberOfComplexScalarsPerNode
int NumberOfComplexVectorsPerNode
int NumberOfComplexScalarsPerElement
int NumberOfComplexVectorsPerElement
istream * IS
int UseTimeSets
int UseFileSets
int NumberOfGeometryParts
int NumberOfMeasuredPoints
vtkIdListMeasuredNodeIds

Detailed Description

superclass for EnSight file readers.

Date:
2001/11/13 14:30:28
Revision:
1.12

Definition at line 85 of file vtkEnSightReader.h.


Constructor & Destructor Documentation

vtkEnSightReader::vtkEnSightReader   [protected]
 

vtkEnSightReader::~vtkEnSightReader   [protected]
 


Member Function Documentation

virtual const char* vtkEnSightReader::GetClassName   [virtual]
 

Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkDataSetSource.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

int vtkEnSightReader::IsTypeOf const char *    type [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 vtkDataSetSource.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::IsA const char *    type [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 vtkDataSetSource.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

vtkEnSightReader* vtkEnSightReader::SafeDownCast vtkObject   o [static]
 

Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkDataSetSource.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

void vtkEnSightReader::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 vtkSource.

void vtkEnSightReader::SetCaseFileName char *    fileName
 

Set/Get the Case file name.

virtual char* vtkEnSightReader::GetCaseFileName   [virtual]
 

Set/Get the Case file name.

virtual void vtkEnSightReader::SetFilePath const char *    [virtual]
 

Set/Get the path the the data files. If specified, this reader will look in this directory for all data files.

virtual char* vtkEnSightReader::GetFilePath   [virtual]
 

Set/Get the path the the data files. If specified, this reader will look in this directory for all data files.

int vtkEnSightReader::GetNumberOfVariables   [inline]
 

Get the number of variables listed in the case file.

Definition at line 106 of file vtkEnSightReader.h.

int vtkEnSightReader::GetNumberOfComplexVariables   [inline]
 

Get the number of variables listed in the case file.

Definition at line 107 of file vtkEnSightReader.h.

int vtkEnSightReader::GetNumberOfVariables int    type
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfScalarsPerNode   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfVectorsPerNode   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfTensorsSymmPerNode   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfScalarsPerElement   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfVectorsPerElement   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfTensorsSymmPerElement   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfScalarsPerMeasuredNode   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfVectorsPerMeasuredNode   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfComplexScalarsPerNode   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfComplexVectorsPerNode   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfComplexScalarsPerElement   [virtual]
 

Get the number of variables of a particular type.

virtual int vtkEnSightReader::GetNumberOfComplexVectorsPerElement   [virtual]
 

Get the number of variables of a particular type.

char* vtkEnSightReader::GetDescription int    n
 

Get the nth description for a non-complex variable.

char* vtkEnSightReader::GetComplexDescription int    n
 

Get the nth description for a complex variable.

char* vtkEnSightReader::GetDescription int    n,
int    type
 

Get the nth description of a particular variable type. Returns NULL if no variable of this type exists in this data set. VTK_SCALAR_PER_NODE = 0; VTK_VECTOR_PER_NODE = 1; VTK_TENSOR_SYMM_PER_NODE = 2; VTK_SCALAR_PER_ELEMENT = 3; VTK_VECTOR_PER_ELEMENT = 4; VTK_TENSOR_SYMM_PER_ELEMENT = 5; VTK_SCALAR_PER_MEASURED_NODE = 6; VTK_VECTOR_PER_MEASURED_NODE = 7; VTK_COMPLEX_SCALAR_PER_NODE = 8; VTK_COMPLEX_VECTOR_PER_NODE 9; VTK_COMPLEX_SCALAR_PER_ELEMENT = 10; VTK_COMPLEX_VECTOR_PER_ELEMENT = 11

int vtkEnSightReader::GetVariableType int    n
 

Get the variable type of variable n.

int vtkEnSightReader::GetComplexVariableType int    n
 

Get the variable type of variable n.

void vtkEnSightReader::Update   [virtual]
 

Bring object up-to-date before execution. Update() checks modified time against last execution time, and re-executes object if necessary.

Reimplemented from vtkSource.

virtual void vtkEnSightReader::SetTimeValue float    [virtual]
 

Set/Get the time value at which to get the value.

virtual float vtkEnSightReader::GetTimeValue   [virtual]
 

Set/Get the time value at which to get the value.

virtual float vtkEnSightReader::GetMinimumTimeValue   [virtual]
 

Get the minimum or maximum time value in this data set.

virtual float vtkEnSightReader::GetMaximumTimeValue   [virtual]
 

Get the minimum or maximum time value in this data set.

void vtkEnSightReader::Execute   [protected, virtual]
 

This method is the old style execute method

Reimplemented from vtkSource.

int vtkEnSightReader::ReadCaseFile   [protected]
 

Read the case file. If an error occurred, 0 is returned; otherwise 1.

virtual int vtkEnSightReader::ReadGeometryFile char *    fileName,
int    timeStep
[protected, pure virtual]
 

Read the geometry file. If an error occurred, 0 is returned; otherwise 1.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::ReadMeasuredGeometryFile char *    fileName,
int    timeStep
[protected, pure virtual]
 

Read the measured geometry file. If an error occurred, 0 is returned; otherwise 1.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

int vtkEnSightReader::ReadVariableFiles   [protected]
 

Read the variable files. If an error occurred, 0 is returned; otherwise 1.

virtual int vtkEnSightReader::ReadScalarsPerNode char *    fileName,
char *    description,
int    timeStep,
int    measured = 0,
int    numberOfComponents = 1,
int    component = 0
[protected, pure virtual]
 

Read scalars per node for this dataset. If an error occurred, 0 is returned; otherwise 1.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::ReadVectorsPerNode char *    fileName,
char *    description,
int    timeStep,
int    measured = 0
[protected, pure virtual]
 

Read vectors per node for this dataset. If an error occurred, 0 is returned; otherwise 1.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::ReadTensorsPerNode char *    fileName,
char *    description,
int    timeStep
[protected, pure virtual]
 

Read tensors per node for this dataset. If an error occurred, 0 is returned; otherwise 1.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::ReadScalarsPerElement char *    fileName,
char *    description,
int    timeStep,
int    numberOfComponents = 1,
int    component = 0
[protected, pure virtual]
 

Read scalars per element for this dataset. If an error occurred, 0 is returned; otherwise 1.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::ReadVectorsPerElement char *    fileName,
char *    description,
int    timeStep
[protected, pure virtual]
 

Read vectors per element for this dataset. If an error occurred, 0 is returned; otherwise 1.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::ReadTensorsPerElement char *    fileName,
char *    description,
int    timeStep
[protected, pure virtual]
 

Read tensors per element for this dataset. If an error occurred, 0 is returned; otherwise 1.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::CreateUnstructuredGridOutput int    partId,
char    line[256]
[protected, pure virtual]
 

Read an unstructured part (partId) from the geometry file and create a vtkUnstructuredGrid output. Return 0 if EOF reached.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, and vtkEnSightGoldReader.

virtual int vtkEnSightReader::CreateStructuredGridOutput int    partId,
char    line[256]
[protected, pure virtual]
 

Read a structured part from the geometry file and create a vtkStructuredGridOutput. Return 0 if EOF reached.

Reimplemented in vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, and vtkEnSightGoldReader.

virtual void vtkEnSightReader::SetGeometryFileName const char *    [protected, virtual]
 

Set/Get the Model file name.

Reimplemented in vtkEnSightGoldReader.

virtual char* vtkEnSightReader::GetGeometryFileName   [protected, virtual]
 

Set/Get the Model file name.

Reimplemented in vtkEnSightGoldReader.

virtual void vtkEnSightReader::SetMeasuredFileName const char *    [protected, virtual]
 

Set/Get the Measured file name.

Reimplemented in vtkEnSightGoldReader.

virtual char* vtkEnSightReader::GetMeasuredFileName   [protected, virtual]
 

Set/Get the Measured file name.

Reimplemented in vtkEnSightGoldReader.

virtual void vtkEnSightReader::SetMatchFileName const char *    [protected, virtual]
 

Set/Get the Match file name.

Reimplemented in vtkEnSightGoldReader.

virtual char* vtkEnSightReader::GetMatchFileName   [protected, virtual]
 

Set/Get the Match file name.

Reimplemented in vtkEnSightGoldReader.

int vtkEnSightReader::ReadLine char    result[256] [protected]
 

Internal function to read in a line up to 256 characters. Returns zero if there was an error.

int vtkEnSightReader::ReadNextDataLine char    result[256] [protected]
 

void vtkEnSightReader::AddVariableFileName char *    fileName1,
char *    fileName2 = NULL
[protected]
 

Add another file name to the list for a particular variable type.

void vtkEnSightReader::AddVariableDescription char *    description [protected]
 

Add another description to the list for a particular variable type.

void vtkEnSightReader::AddVariableType   [protected]
 

Record the variable type for the variable line just read.

int vtkEnSightReader::GetElementType char *    line [protected]
 

Determine the element type from a line read a file. Return -1 for invalid element type.

void vtkEnSightReader::ReplaceWildcards char *    filename,
int    num
[protected]
 

Replace the *'s in the filename with the given filename number.

virtual void vtkEnSightReader::SetUseTimeSets int    [protected, virtual]
 

virtual int vtkEnSightReader::GetUseTimeSets   [protected, virtual]
 

virtual void vtkEnSightReader::UseTimeSetsOn   [protected, virtual]
 

virtual void vtkEnSightReader::UseTimeSetsOff   [protected, virtual]
 

virtual void vtkEnSightReader::SetUseFileSets int    [protected, virtual]
 

virtual int vtkEnSightReader::GetUseFileSets   [protected, virtual]
 

virtual void vtkEnSightReader::UseFileSetsOn   [protected, virtual]
 

virtual void vtkEnSightReader::UseFileSetsOff   [protected, virtual]
 


Member Data Documentation

char* vtkEnSightReader::FilePath [protected]
 

Definition at line 282 of file vtkEnSightReader.h.

char* vtkEnSightReader::CaseFileName [protected]
 

Definition at line 284 of file vtkEnSightReader.h.

char* vtkEnSightReader::GeometryFileName [protected]
 

Definition at line 285 of file vtkEnSightReader.h.

char* vtkEnSightReader::MeasuredFileName [protected]
 

Definition at line 286 of file vtkEnSightReader.h.

char* vtkEnSightReader::MatchFileName [protected]
 

Definition at line 287 of file vtkEnSightReader.h.

vtkIdList*** vtkEnSightReader::CellIds [protected]
 

Definition at line 290 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::UnstructuredPartIds [protected]
 

Definition at line 293 of file vtkEnSightReader.h.

int vtkEnSightReader::VariableMode [protected]
 

Definition at line 295 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfVariables [protected]
 

Definition at line 296 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfComplexVariables [protected]
 

Definition at line 297 of file vtkEnSightReader.h.

int* vtkEnSightReader::VariableTypes [protected]
 

Definition at line 300 of file vtkEnSightReader.h.

int* vtkEnSightReader::ComplexVariableTypes [protected]
 

Definition at line 301 of file vtkEnSightReader.h.

char** vtkEnSightReader::VariableFileNames [protected]
 

Definition at line 304 of file vtkEnSightReader.h.

char** vtkEnSightReader::ComplexVariableFileNames [protected]
 

Definition at line 305 of file vtkEnSightReader.h.

char** vtkEnSightReader::VariableDescriptions [protected]
 

Definition at line 308 of file vtkEnSightReader.h.

char** vtkEnSightReader::ComplexVariableDescriptions [protected]
 

Definition at line 309 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::VariableTimeSets [protected]
 

Definition at line 312 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::ComplexVariableTimeSets [protected]
 

Definition at line 313 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::VariableFileSets [protected]
 

Definition at line 316 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::ComplexVariableFileSets [protected]
 

Definition at line 317 of file vtkEnSightReader.h.

vtkCollection* vtkEnSightReader::TimeSetFilenameNumbersCollection [protected]
 

Definition at line 320 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::TimeSetsWithFilenameNumbers [protected]
 

Definition at line 321 of file vtkEnSightReader.h.

vtkCollection* vtkEnSightReader::TimeSetTimeValuesCollection [protected]
 

Definition at line 324 of file vtkEnSightReader.h.

vtkCollection* vtkEnSightReader::FileSetFilenameNumbersCollection [protected]
 

Definition at line 327 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::FileSetsWithFilenameNumbers [protected]
 

Definition at line 328 of file vtkEnSightReader.h.

vtkCollection* vtkEnSightReader::FileSetNumberOfStepsCollection [protected]
 

Definition at line 331 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::TimeSets [protected]
 

Definition at line 334 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::FileSets [protected]
 

Definition at line 335 of file vtkEnSightReader.h.

int vtkEnSightReader::GeometryTimeSet [protected]
 

Definition at line 337 of file vtkEnSightReader.h.

int vtkEnSightReader::GeometryFileSet [protected]
 

Definition at line 338 of file vtkEnSightReader.h.

int vtkEnSightReader::MeasuredTimeSet [protected]
 

Definition at line 339 of file vtkEnSightReader.h.

int vtkEnSightReader::MeasuredFileSet [protected]
 

Definition at line 340 of file vtkEnSightReader.h.

float vtkEnSightReader::TimeValue [protected]
 

Definition at line 342 of file vtkEnSightReader.h.

float vtkEnSightReader::GeometryTimeValue [protected]
 

Definition at line 343 of file vtkEnSightReader.h.

float vtkEnSightReader::MeasuredTimeValue [protected]
 

Definition at line 344 of file vtkEnSightReader.h.

float vtkEnSightReader::MinimumTimeValue [protected]
 

Definition at line 346 of file vtkEnSightReader.h.

float vtkEnSightReader::MaximumTimeValue [protected]
 

Definition at line 347 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfScalarsPerNode [protected]
 

Definition at line 350 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfVectorsPerNode [protected]
 

Definition at line 351 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfTensorsSymmPerNode [protected]
 

Definition at line 352 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfScalarsPerElement [protected]
 

Definition at line 353 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfVectorsPerElement [protected]
 

Definition at line 354 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfTensorsSymmPerElement [protected]
 

Definition at line 355 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfScalarsPerMeasuredNode [protected]
 

Definition at line 356 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfVectorsPerMeasuredNode [protected]
 

Definition at line 357 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfComplexScalarsPerNode [protected]
 

Definition at line 358 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfComplexVectorsPerNode [protected]
 

Definition at line 359 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfComplexScalarsPerElement [protected]
 

Definition at line 360 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfComplexVectorsPerElement [protected]
 

Definition at line 361 of file vtkEnSightReader.h.

istream* vtkEnSightReader::IS [protected]
 

Definition at line 363 of file vtkEnSightReader.h.

int vtkEnSightReader::UseTimeSets [protected]
 

Definition at line 365 of file vtkEnSightReader.h.

int vtkEnSightReader::UseFileSets [protected]
 

Definition at line 370 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfGeometryParts [protected]
 

Definition at line 375 of file vtkEnSightReader.h.

int vtkEnSightReader::NumberOfMeasuredPoints [protected]
 

Definition at line 378 of file vtkEnSightReader.h.

vtkIdList* vtkEnSightReader::MeasuredNodeIds [protected]
 

Definition at line 379 of file vtkEnSightReader.h.


The documentation for this class was generated from the following file:
Generated on Thu Mar 28 14:29:11 2002 for VTK by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001