VTK
vtkGaussianCubeReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGaussianCubeReader.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 =========================================================================*/
29 #ifndef __vtkGaussianCubeReader_h
30 #define __vtkGaussianCubeReader_h
31 
32 #include "vtkMoleculeReaderBase.h"
33 
34 class vtkImageData;
35 class vtkTransform;
36 
38 {
39 public:
40  static vtkGaussianCubeReader *New();
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
44  vtkGetObjectMacro(Transform,vtkTransform);
45  vtkSetStringMacro(FileName);
46  vtkGetStringMacro(FileName);
47  vtkImageData *GetGridOutput();
48 
49 protected:
52 
53  char *FileName;
55 
58 
59  void ReadSpecificMolecule(FILE* fp);
60 
61  virtual int FillOutputPortInformation(int, vtkInformation*);
62 private:
63  vtkGaussianCubeReader(const vtkGaussianCubeReader&); // Not implemented.
64  void operator=(const vtkGaussianCubeReader&); // Not implemented.
65 };
66 
67 #endif
read ASCII Gaussian Cube Data files
virtual int FillOutputPortInformation(int port, vtkInformation *info)
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
read Molecular Data files
describes linear transformations via a 4x4 matrix
Definition: vtkTransform.h:58
virtual void ReadSpecificMolecule(FILE *fp)=0
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:37
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
topologically and geometrically regular array of data
Definition: vtkImageData.h:43
Store zero or more vtkInformation instances.
#define VTK_IO_EXPORT