VTK  9.2.6
vtkMoleculeReaderBase.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMoleculeReaderBase.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 =========================================================================*/
27 #ifndef vtkMoleculeReaderBase_h
28 #define vtkMoleculeReaderBase_h
29 
30 #include "vtkIOChemistryModule.h" // For export macro
31 #include "vtkPolyDataAlgorithm.h"
32 
33 class vtkCellArray;
34 class vtkFloatArray;
35 class vtkDataArray;
36 class vtkIdTypeArray;
39 class vtkPoints;
40 class vtkStringArray;
41 class vtkMolecule;
42 class vtkPeriodicTable;
43 
44 class VTKIOCHEMISTRY_EXPORT vtkMoleculeReaderBase : public vtkPolyDataAlgorithm
45 {
46 public:
48  void PrintSelf(ostream& os, vtkIndent indent) override;
49 
50  vtkSetFilePathMacro(FileName);
51  vtkGetFilePathMacro(FileName);
52 
54 
57  vtkSetMacro(BScale, double);
58  vtkGetMacro(BScale, double);
60 
62 
65  vtkSetMacro(HBScale, double);
66  vtkGetMacro(HBScale, double);
68 
72  vtkGetMacro(NumberOfAtoms, vtkIdType);
73 
77  vtkGetMacro(NumberOfModels, unsigned int);
78 
79 protected:
81  ~vtkMoleculeReaderBase() override;
82 
83  char* FileName;
84  double BScale;
85  double HBScale;
87  unsigned int NumberOfModels;
88 
89  int FillOutputPortInformation(int, vtkInformation*) override;
91 
100  int ReadMolecule(FILE* fp, vtkPolyData* output);
101 
110  unsigned int MakeAtomType(const char* atomType);
111 
121  unsigned int MakeBonds(vtkPoints* points, vtkIdTypeArray* atomTypes, vtkCellArray* newBonds);
122 
137 
138  virtual void ReadSpecificMolecule(FILE* fp) = 0;
139 
140 private:
142  void operator=(const vtkMoleculeReaderBase&) = delete;
143 };
144 
145 #endif
Access to information about the elements.
dynamic, self-adjusting array of unsigned int
Store vtkAlgorithm input/output information.
class describing a molecule
Definition: vtkMolecule.h:94
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkSmartPointer< vtkFloatArray > Radii
dynamic, self-adjusting array of float
Definition: vtkFloatArray.h:41
a vtkAbstractArray subclass for strings
Read molecular data files.
dynamic, self-adjusting array of vtkIdType
int vtkIdType
Definition: vtkType.h:332
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:90
vtkSmartPointer< vtkIdTypeArray > Residue
vtkSmartPointer< vtkUnsignedIntArray > Model
vtkSmartPointer< vtkIdTypeArray > AtomType
Superclass for algorithms that produce only polydata as output.
vtkSmartPointer< vtkUnsignedCharArray > Chain
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSmartPointer< vtkUnsignedCharArray > SecondaryStructures
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:55
vtkSmartPointer< vtkUnsignedCharArray > IsHetatm
vtkNew< vtkPeriodicTable > PeriodicTable
dynamic, self-adjusting array of unsigned char
vtkSmartPointer< vtkUnsignedCharArray > RGB
object to represent cell connectivity
Definition: vtkCellArray.h:186
vtkSmartPointer< vtkUnsignedCharArray > SecondaryStructuresEnd
vtkSmartPointer< vtkPoints > Points
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
vtkSmartPointer< vtkMolecule > Molecule
Store zero or more vtkInformation instances.
vtkSmartPointer< vtkStringArray > AtomTypeStrings
vtkSmartPointer< vtkUnsignedCharArray > SecondaryStructuresBegin
represent and manipulate 3D points
Definition: vtkPoints.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.