VTK
dox/IO/Geometry/vtkSESAMEReader.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkSESAMEReader.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 =========================================================================*/
00027 #ifndef __vtkSESAMEReader_h
00028 #define __vtkSESAMEReader_h
00029 
00030 #include "vtkIOGeometryModule.h" // For export macro
00031 #include <vtkRectilinearGridAlgorithm.h>
00032 
00033 class vtkIntArray;
00034 
00035 class VTKIOGEOMETRY_EXPORT vtkSESAMEReader : public vtkRectilinearGridAlgorithm
00036 {
00037 public:
00038   static vtkSESAMEReader *New();
00039   vtkTypeMacro(vtkSESAMEReader, vtkRectilinearGridAlgorithm);
00040 
00041   void PrintSelf(ostream& os, vtkIndent indent);
00042 
00044   void SetFileName(const char* file);
00046   const char* GetFileName();
00047 
00049   int IsValidFile();
00050 
00052   int GetNumberOfTableIds();
00053 
00055   int* GetTableIds();
00056 
00058   vtkIntArray* GetTableIdsAsArray();
00059 
00061   void SetTable(int tableId);
00063   int GetTable();
00064 
00066   int GetNumberOfTableArrayNames();
00067 
00069 
00070   int GetNumberOfTableArrays()
00071     { return this->GetNumberOfTableArrayNames(); }
00073 
00074   const char* GetTableArrayName(int index);
00075 
00077 
00078   void SetTableArrayStatus(const char* name, int flag);
00079   int GetTableArrayStatus(const char* name);
00081 
00082 protected:
00083 
00084   vtkSESAMEReader();
00085   virtual ~vtkSESAMEReader();
00086 
00087   //BTX
00088   class MyInternal;
00089   MyInternal* Internal;
00090   //ETX
00091 
00092   int OpenFile();
00093   void CloseFile();
00094 
00095   virtual int RequestData(vtkInformation *,
00096                           vtkInformationVector **,
00097                           vtkInformationVector *);
00098   virtual int RequestInformation(vtkInformation *,
00099                                  vtkInformationVector **,
00100                                  vtkInformationVector *);
00101 
00102   int ReadTableValueLine ( float *v1, float *v2, float *v3,
00103       float *v4, float *v5);
00104   int JumpToTable( int tableID );
00105 
00106   void ReadTable(vtkRectilinearGrid* output);
00107 
00108 private:
00109   vtkSESAMEReader(const vtkSESAMEReader&);  // Not implemented.
00110   void operator=(const vtkSESAMEReader&);  // Not implemented.
00111 
00112 };
00113 
00114 #endif