VTK  9.1.0
vtkXYZMolReader2.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkXYZMolReader2.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 =========================================================================*/
26 #ifndef vtkXYZMolReader2_h
27 #define vtkXYZMolReader2_h
28 
29 #include "vtkIOChemistryModule.h" // For export macro
30 #include "vtkMoleculeAlgorithm.h"
31 
32 #include <istream> // for std::istream
33 #include <vector> // for std::vector
34 
35 class vtkMolecule;
36 
37 class VTKIOCHEMISTRY_EXPORT vtkXYZMolReader2 : public vtkMoleculeAlgorithm
38 {
39 public:
40  static vtkXYZMolReader2* New();
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
45 
49  void SetOutput(vtkMolecule*) override;
51 
53 
59 
60 protected:
62  ~vtkXYZMolReader2() override = default;
63 
66 
67  std::string FileName = "";
68  std::vector<istream::pos_type> FilePositions; // to store beginning of each step
69  std::vector<double> TimeSteps;
70 
71 private:
72  vtkXYZMolReader2(const vtkXYZMolReader2&) = delete;
73  void operator=(const vtkXYZMolReader2&) = delete;
74 };
75 
76 #endif
vtkMoleculeAlgorithm
Superclass for algorithms that operate on vtkMolecules.
Definition: vtkMoleculeAlgorithm.h:43
vtkXYZMolReader2::vtkSetStdStringFromCharMacro
vtkSetStdStringFromCharMacro(FileName)
Get/Set the name of the XYZ Molecule file.
vtkXYZMolReader2::vtkGetCharFromStdStringMacro
vtkGetCharFromStdStringMacro(FileName)
Get/Set the name of the XYZ Molecule file.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:145
vtkXYZMolReader2
read Molecular Data files
Definition: vtkXYZMolReader2.h:38
vtkMoleculeAlgorithm.h
vtkXYZMolReader2::RequestInformation
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
vtkXYZMolReader2::SetOutput
void SetOutput(vtkMolecule *) override
Get/Set the output (vtkMolecule) that the reader will fill.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:113
vtkXYZMolReader2::TimeSteps
std::vector< double > TimeSteps
Definition: vtkXYZMolReader2.h:69
vtkXYZMolReader2::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkXYZMolReader2::vtkXYZMolReader2
vtkXYZMolReader2()
vtkXYZMolReader2::~vtkXYZMolReader2
~vtkXYZMolReader2() override=default
vtkXYZMolReader2::GetOutput
vtkMolecule * GetOutput()
Get/Set the output (vtkMolecule) that the reader will fill.
vtkXYZMolReader2::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkMolecule
class describing a molecule
Definition: vtkMolecule.h:111
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:183
vtkX3D::string
@ string
Definition: vtkX3D.h:496
vtkXYZMolReader2::New
static vtkXYZMolReader2 * New()
vtkXYZMolReader2::FilePositions
std::vector< istream::pos_type > FilePositions
Definition: vtkXYZMolReader2.h:68