#include <vtkAbstractParticleWriter.h>


vtkAbstractParticleWriter is an abstract class which is used by vtkTemporalStreamTracer to write particles out during simulations. This class is abstract and provides a TimeStep and FileName. Subclasses of this should provide the necessary IO.
Definition at line 35 of file vtkAbstractParticleWriter.h.
Public Types | |
| typedef vtkWriter | Superclass | 
Public Member Functions | |
| virtual const char * | GetClassName () | 
| virtual int | IsA (const char *type) | 
| void | PrintSelf (ostream &os, vtkIndent indent) | 
| virtual void | CloseFile ()=0 | 
| virtual void | SetTimeStep (int) | 
| virtual int | GetTimeStep () | 
| virtual void | SetTimeValue (double) | 
| virtual double | GetTimeValue () | 
| virtual void | SetFileName (const char *) | 
| virtual char * | GetFileName () | 
Static Public Member Functions | |
| static int | IsTypeOf (const char *type) | 
| static vtkAbstractParticleWriter * | SafeDownCast (vtkObject *o) | 
Protected Member Functions | |
| vtkAbstractParticleWriter () | |
| ~vtkAbstractParticleWriter () | |
| virtual void | WriteData ()=0 | 
Protected Attributes | |
| int | TimeStep | 
| double | TimeValue | 
| char * | FileName | 
| vtkAbstractParticleWriter::vtkAbstractParticleWriter | ( | ) |  [protected] | 
        
| vtkAbstractParticleWriter::~vtkAbstractParticleWriter | ( | ) |  [protected] | 
        
| virtual const char* vtkAbstractParticleWriter::GetClassName | ( | ) |  [virtual] | 
        
Reimplemented from vtkWriter.
| static int vtkAbstractParticleWriter::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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkWriter.
| virtual int vtkAbstractParticleWriter::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 vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkWriter.
| static vtkAbstractParticleWriter* vtkAbstractParticleWriter::SafeDownCast | ( | vtkObject * | o | ) |  [static] | 
        
Reimplemented from vtkWriter.
| void vtkAbstractParticleWriter::PrintSelf | ( | ostream & | os, | |
| vtkIndent | indent | |||
| ) |  [virtual] | 
        
| virtual void vtkAbstractParticleWriter::SetTimeStep | ( | int | ) |  [virtual] | 
        
Set/get the TimeStep that is being written
| virtual int vtkAbstractParticleWriter::GetTimeStep | ( | ) |  [virtual] | 
        
Set/get the TimeStep that is being written
| virtual void vtkAbstractParticleWriter::SetTimeValue | ( | double | ) |  [virtual] | 
        
Before writing the current data out, set the TimeValue (optional) The TimeValue is a float/double value that corresonds to the real time of the data, it may not be regular, whereas the TimeSteps are simple increments.
| virtual double vtkAbstractParticleWriter::GetTimeValue | ( | ) |  [virtual] | 
        
Before writing the current data out, set the TimeValue (optional) The TimeValue is a float/double value that corresonds to the real time of the data, it may not be regular, whereas the TimeSteps are simple increments.
| virtual void vtkAbstractParticleWriter::SetFileName | ( | const char * | ) |  [virtual] | 
        
Set/get the FileName that is being written to
| virtual char* vtkAbstractParticleWriter::GetFileName | ( | ) |  [virtual] | 
        
Set/get the FileName that is being written to
| virtual void vtkAbstractParticleWriter::CloseFile | ( | ) |  [pure virtual] | 
        
Close the file after a write. This is optional but may protect against data loss in between steps
| virtual void vtkAbstractParticleWriter::WriteData | ( | ) |  [protected, pure virtual] | 
        
Implements vtkWriter.
int vtkAbstractParticleWriter::TimeStep [protected]           | 
        
Definition at line 71 of file vtkAbstractParticleWriter.h.
double vtkAbstractParticleWriter::TimeValue [protected]           | 
        
Definition at line 72 of file vtkAbstractParticleWriter.h.
char* vtkAbstractParticleWriter::FileName [protected]           | 
        
Definition at line 73 of file vtkAbstractParticleWriter.h.
 1.5.6