VTK  9.1.0
vtkAbstractParticleWriter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkAbstractParticleWriter.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
31#ifndef vtkAbstractParticleWriter_h
32#define vtkAbstractParticleWriter_h
33
34#include "vtkIOCoreModule.h" // For export macro
35#include "vtkWriter.h"
36
37class VTKIOCORE_EXPORT vtkAbstractParticleWriter : public vtkWriter
38{
39public:
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
44
47 vtkSetMacro(TimeStep, int);
48 vtkGetMacro(TimeStep, int);
50
52
58 vtkSetMacro(TimeValue, double);
59 vtkGetMacro(TimeValue, double);
61
63
69
71
75 vtkSetMacro(CollectiveIO, int);
76 vtkGetMacro(CollectiveIO, int);
80
85 virtual void CloseFile() = 0;
86
87protected:
90
91 void WriteData() override = 0; // internal method subclasses must respond to
94 double TimeValue;
95 char* FileName;
96
97private:
99 void operator=(const vtkAbstractParticleWriter&) = delete;
100};
101
102#endif
abstract class to write particle data to file
void SetWriteModeToCollective()
When running in parallel, this writer may be capable of Collective IO operations (HDF5).
vtkGetFilePathMacro(FileName)
Set/get the FileName that is being written to.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void WriteData() override=0
void SetWriteModeToIndependent()
When running in parallel, this writer may be capable of Collective IO operations (HDF5).
~vtkAbstractParticleWriter() override
virtual void CloseFile()=0
Close the file after a write.
vtkSetFilePathMacro(FileName)
Set/get the FileName that is being written to.
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract class to write data to file(s)
Definition: vtkWriter.h:43