VTK
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 "vtkDomainsChemistryModule.h" // For export macro
31 #include "vtkMoleculeAlgorithm.h"
32 #include "vtkVector.h" // For vtkVector3f
33 
34 namespace vtksys {
35 class RegularExpression;
36 }
37 
38 class VTKDOMAINSCHEMISTRY_EXPORT vtkVASPAnimationReader:
40 {
41 public:
42  static vtkVASPAnimationReader* New();
44  virtual void PrintSelf(ostream &os, vtkIndent indent);
45 
47 
50  vtkSetStringMacro(FileName)
51  vtkGetStringMacro(FileName)
53 
54 protected:
56  ~vtkVASPAnimationReader();
57 
58  virtual int RequestData(vtkInformation *request,
59  vtkInformationVector **inInfoVecs,
60  vtkInformationVector *outInfoVec);
61  virtual int RequestInformation(vtkInformation *request,
62  vtkInformationVector **inInfoVecs,
63  vtkInformationVector *outInfoVec);
64 
71  bool NextTimeStep(std::istream &in, double &time);
72 
79  size_t SelectTimeStepIndex(vtkInformation *info);
80 
81  bool ReadMolecule(std::istream &in, vtkMolecule *molecule);
82 
83  char *FileName;
84 
85  vtksys::RegularExpression *TimeParser;
86  vtksys::RegularExpression *LatticeParser;
87  vtksys::RegularExpression *AtomCountParser;
88  vtksys::RegularExpression *AtomParser;
89 
90 private:
91  vtkVASPAnimationReader(const vtkVASPAnimationReader&) VTK_DELETE_FUNCTION;
92  void operator=(const vtkVASPAnimationReader&) VTK_DELETE_FUNCTION;
93 };
94 
95 #endif // vtkVASPAnimationReader_h
Reader for VASP animation files.
Store vtkAlgorithm input/output information.
class describing a molecule
Definition: vtkMolecule.h:90
static vtkMoleculeAlgorithm * New()
Superclass for algorithms that operate on vtkMolecules.
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkGetStringMacro(ExtensionsString)
Returns a string listing all available extensions.
Store zero or more vtkInformation instances.