VTK  9.2.6
vtkVASPAnimationReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVASPAnimationReader.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 =========================================================================*/
15 
27 #ifndef vtkVASPAnimationReader_h
28 #define vtkVASPAnimationReader_h
29 
30 #include "vtkIOChemistryModule.h" // For export macro
31 #include "vtkMoleculeAlgorithm.h"
32 #include "vtkVector.h" // For vtkVector3f
33 
34 namespace vtksys
35 {
36 class RegularExpression;
37 }
38 
39 class VTKIOCHEMISTRY_EXPORT vtkVASPAnimationReader : public vtkMoleculeAlgorithm
40 {
41 public:
42  static vtkVASPAnimationReader* New();
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
47 
50  vtkSetFilePathMacro(FileName);
51  vtkGetFilePathMacro(FileName);
53 
54 protected:
56  ~vtkVASPAnimationReader() override;
57 
58  int RequestData(vtkInformation* request, vtkInformationVector** inInfoVecs,
59  vtkInformationVector* outInfoVec) override;
60  int RequestInformation(vtkInformation* request, vtkInformationVector** inInfoVecs,
61  vtkInformationVector* outInfoVec) override;
62 
69  bool NextTimeStep(std::istream& in, double& time);
70 
77  size_t SelectTimeStepIndex(vtkInformation* info);
78 
79  bool ReadMolecule(std::istream& in, vtkMolecule* molecule);
80 
81  char* FileName;
82 
83  vtksys::RegularExpression* TimeParser;
84  vtksys::RegularExpression* LatticeParser;
85  vtksys::RegularExpression* AtomCountParser;
86  vtksys::RegularExpression* AtomParser;
87 
88 private:
90  void operator=(const vtkVASPAnimationReader&) = delete;
91 };
92 
93 #endif // vtkVASPAnimationReader_h
Reader for VASP animation files.
Store vtkAlgorithm input/output information.
class describing a molecule
Definition: vtkMolecule.h:94
static vtkMoleculeAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Superclass for algorithms that operate on vtkMolecules.
vtksys::RegularExpression * LatticeParser
a simple class to control print indentation
Definition: vtkIndent.h:39
vtksys::RegularExpression * AtomCountParser
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
Store zero or more vtkInformation instances.
vtksys::RegularExpression * AtomParser
vtksys::RegularExpression * TimeParser