VTK
vtkMPIImageReader.h
Go to the documentation of this file.
1 // -*- c++ -*-
2 /*=========================================================================
3 
4  Program: Visualization Toolkit
5  Module: vtkMPIImageReader.h
6 
7  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
8  All rights reserved.
9  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
10 
11  This software is distributed WITHOUT ANY WARRANTY; without even
12  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13  PURPOSE. See the above copyright notice for more information.
14 
15 =========================================================================*/
16 /*----------------------------------------------------------------------------
17  Copyright (c) Sandia Corporation
18  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
19 ----------------------------------------------------------------------------*/
20 
51 #ifndef vtkMPIImageReader_h
52 #define vtkMPIImageReader_h
53 
54 #include "vtkIOMPIImageModule.h" // For export macro
55 #include "vtkImageReader.h"
56 
57 class vtkMPIOpaqueFileHandle;
59 
60 class VTKIOMPIIMAGE_EXPORT vtkMPIImageReader : public vtkImageReader
61 {
62 public:
64  static vtkMPIImageReader *New();
65  virtual void PrintSelf(ostream &os, vtkIndent indent);
66 
68 
72  vtkGetObjectMacro(Controller, vtkMultiProcessController);
73  virtual void SetController(vtkMultiProcessController *);
75 
76 protected:
79 
81 
85  int GetDataScalarTypeSize();
86 
92  virtual void PartitionController(const int extent[6]);
93 
98  virtual unsigned long GetHeaderSize(vtkMPIOpaqueFileHandle &file);
99 
106  virtual void SetupFileView(vtkMPIOpaqueFileHandle &file, const int extent[6]);
107 
114  virtual void ReadSlice(int slice, const int extent[6], void *buffer);
115 
120  virtual void TransformData(vtkImageData *data);
121 
123 
127  void SetGroupedController(vtkMultiProcessController *);
130 
132  vtkInformation *outInfo);
133 
134 private:
135  vtkMPIImageReader(const vtkMPIImageReader &) VTK_DELETE_FUNCTION;
136  void operator=(const vtkMPIImageReader &) VTK_DELETE_FUNCTION;
137 };
138 
139 #endif //vtkMPIImageReader_h
Store vtkAlgorithm input/output information.
vtkMultiProcessController * GroupedController
A group of processes that are reading the same file (as determined by PartitionController.
unsigned long GetHeaderSize()
Get the size of the header computed by this object.
static vtkImageReader * New()
vtkMPIImageReader provides the mechanism to read a brick of bytes (or shorts, or ints, or floats, or doubles, ...) from a file or series of files.
a simple class to control print indentation
Definition: vtkIndent.h:39
void ExecuteDataWithInformation(vtkDataObject *data, vtkInformation *outInfo)
This is a convenience method that is implemented in many subclasses instead of RequestData.
Superclass of transformable binary file readers.
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
vtkMultiProcessController * Controller
general representation of visualization data
Definition: vtkDataObject.h:64
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
Multiprocessing communication superclass.