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