VTK
dox/Domains/Chemistry/vtkSimpleBondPerceiver.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkSimpleBondPerceiver.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00036 #ifndef __vtkSimpleBondPerceiver_h
00037 #define __vtkSimpleBondPerceiver_h
00038 
00039 #include "vtkDomainsChemistryModule.h" // For export macro
00040 #include "vtkMoleculeAlgorithm.h"
00041 
00042 class vtkDataSet;
00043 class vtkMolecule;
00044 
00045 class VTKDOMAINSCHEMISTRY_EXPORT vtkSimpleBondPerceiver :
00046     public vtkMoleculeAlgorithm
00047 {
00048 public:
00049   static vtkSimpleBondPerceiver *New();
00050   vtkTypeMacro(vtkSimpleBondPerceiver,vtkMoleculeAlgorithm);
00051   void PrintSelf(ostream& os, vtkIndent indent);
00052 
00054 
00055   vtkSetMacro(Tolerance, float);
00056   vtkGetMacro(Tolerance, float);
00058 
00059 protected:
00060   vtkSimpleBondPerceiver();
00061   ~vtkSimpleBondPerceiver();
00062 
00064 
00066   virtual int RequestData(vtkInformation* request,
00067                           vtkInformationVector** inputVector,
00068                           vtkInformationVector* outputVector);
00070 
00071   float Tolerance;
00072 
00073 private:
00074   vtkSimpleBondPerceiver(const vtkSimpleBondPerceiver&);  // Not implemented.
00075   void operator=(const vtkSimpleBondPerceiver&);  // Not implemented.
00076 };
00077 
00078 #endif