VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPOpenFOAMReader.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 =========================================================================*/ 00029 #ifndef __vtkPOpenFOAMReader_h 00030 #define __vtkPOpenFOAMReader_h 00031 00032 #include "vtkIOParallelModule.h" // For export macro 00033 #include "vtkOpenFOAMReader.h" 00034 00035 class vtkDataArraySelection; 00036 class vtkMultiProcessController; 00037 00038 class VTKIOPARALLEL_EXPORT vtkPOpenFOAMReader : public vtkOpenFOAMReader 00039 { 00040 public: 00041 //BTX 00042 enum caseType { DECOMPOSED_CASE = 0, RECONSTRUCTED_CASE = 1 }; 00043 //ETX 00044 static vtkPOpenFOAMReader *New(); 00045 vtkTypeMacro(vtkPOpenFOAMReader, vtkOpenFOAMReader); 00046 00047 void PrintSelf(ostream &os, vtkIndent indent); 00048 00050 00051 void SetCaseType(const int t); 00052 vtkGetMacro(CaseType, caseType); 00054 00055 00056 virtual void SetController(vtkMultiProcessController *); 00057 vtkGetObjectMacro(Controller, vtkMultiProcessController); 00059 00060 protected: 00061 vtkPOpenFOAMReader(); 00062 ~vtkPOpenFOAMReader(); 00063 00064 int RequestInformation(vtkInformation *, vtkInformationVector **, 00065 vtkInformationVector *); 00066 int RequestData(vtkInformation *, vtkInformationVector **, 00067 vtkInformationVector *); 00068 00069 private: 00070 vtkMultiProcessController *Controller; 00071 caseType CaseType; 00072 unsigned long MTimeOld; 00073 int MaximumNumberOfPieces; 00074 int NumProcesses; 00075 int ProcessId; 00076 00077 vtkPOpenFOAMReader(const vtkPOpenFOAMReader &); // Not implemented. 00078 void operator=(const vtkPOpenFOAMReader &); // Not implemented. 00079 00080 void GatherMetaData(); 00081 void BroadcastStatus(int &); 00082 void Broadcast(vtkStringArray *); 00083 void AllGather(vtkStringArray *); 00084 void AllGather(vtkDataArraySelection *); 00085 }; 00086 00087 #endif