VTK
vtkDataObjectGenerator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDataObjectGenerator.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 =========================================================================*/
39 #ifndef vtkDataObjectGenerator_h
40 #define vtkDataObjectGenerator_h
41 
42 #include "vtkFiltersCoreModule.h" // For export macro
43 #include "vtkDataObjectAlgorithm.h"
44 
45 class vtkInternalStructureCache;
46 
49 {
50  public:
51  static vtkDataObjectGenerator *New();
53  void PrintSelf(ostream &os, vtkIndent indent);
54 
56 
57  vtkSetStringMacro(Program);
58  vtkGetStringMacro(Program);
60 
61 protected:
64 
65  virtual int RequestData(vtkInformation *req,
67  vtkInformationVector *outV);
68  virtual int RequestDataObject(vtkInformation *req,
70  vtkInformationVector *outV);
71  virtual int RequestInformation(vtkInformation *req,
73  vtkInformationVector *outV);
74  virtual int RequestUpdateExtent(vtkInformation *req,
76  vtkInformationVector *outV);
77 
78  //the string to parse to create a structure
79  char *Program;
80  //a record of the structure
81  vtkInternalStructureCache *Structure;
82 
83  //Helper for RequestDataObject
85  CreateOutputDataObjects(vtkInternalStructureCache *structure);
86  //Helper for RequestData
88  FillOutputDataObjects(vtkInternalStructureCache *structure,
89  int level,
90  int stripe=0);
91 
92  //to determine which composite data stripe to fill in
95 
96  //create the templated atomic data sets
97  void MakeImageData1(vtkDataSet *ds);
98  void MakeImageData2(vtkDataSet *ds);
99  void MakeUniformGrid1(vtkDataSet *ds);
100  void MakeRectilinearGrid1(vtkDataSet *ds);
101  void MakeStructuredGrid1(vtkDataSet *ds);
102  void MakePolyData1(vtkDataSet *ds);
103  void MakePolyData2(vtkDataSet *ds);
104  void MakeUnstructuredGrid1(vtkDataSet *ds);
105  void MakeUnstructuredGrid2(vtkDataSet *ds);
106  void MakeUnstructuredGrid3(vtkDataSet *ds);
107  void MakeUnstructuredGrid4(vtkDataSet *ds);
108 
109  //used to spatially separate sub data sets within composites
110  double XOffset; //increases for each dataset index
111  double YOffset; //increases for each sub data set
112  double ZOffset; //increases for each group index
113 
114  //used to filling in point and cell values with unique Ids
117 
118  //assign point and cell values to each point and cell
119  void MakeValues(vtkDataSet *ds);
120 
121 private:
122  vtkDataObjectGenerator(const vtkDataObjectGenerator&); // Not implemented.
123  void operator=(const vtkDataObjectGenerator&); // Not implemented.
124 };
125 
126 #endif
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:61
static vtkDataObjectAlgorithm * New()
#define VTKFILTERSCORE_EXPORT
void PrintSelf(ostream &os, vtkIndent indent)
int vtkIdType
Definition: vtkType.h:275
produces simple (composite or atomic) data sets for testing.
vtkInternalStructureCache * Structure
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Superclass for algorithms that produce only data object as output.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Store zero or more vtkInformation instances.
general representation of visualization data
Definition: vtkDataObject.h:64