1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkMultiGroupDataSet.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkMultiGroupDataSet - Composite dataset that organize datasets in groups
// .SECTION Description
// vtkMultiGroupDataSet is a vtkCompositeDataSet that stores
// a hierarchy of datasets. The dataset collection consists of
// multiple groups. NULL pointers are valid placeholders for datasets.
// Each group can contain zero or more datasets.
// When a multi-group dataset is distributed across processors, no
// two processor should have the same dataset. For example, if a data
// has
// @verbatim
// Group 0:
// * ds 0
// * ds 1
// @endverbatim
// it cannot be distributed in the following way:
// @verbatim
// proc 0:
// Group 0:
// * ds 0
// * ds 1
//
// proc 1:
// Group 0:
// * ds 0
// * ds 1
// @endverbatim
// but can be distributed in the following way:
// @verbatim
// proc 0:
// Group 0:
// * ds 0
// * (null)
//
// proc 1:
// Group 0:
// * (null)
// * ds 1
// @endverbatim
#ifndef __vtkMultiGroupDataSet_h
#define __vtkMultiGroupDataSet_h
#include "vtkCompositeDataSet.h"
//BTX
struct vtkMultiGroupDataSetInternal;
//ETX
class vtkDataObject;
class vtkMGDSNode;
class vtkMultiGroupDataInformation;
class VTK_FILTERING_EXPORT vtkMultiGroupDataSet : public vtkCompositeDataSet
{
public:
static vtkMultiGroupDataSet *New();
vtkTypeRevisionMacro(vtkMultiGroupDataSet,vtkCompositeDataSet);
virtual void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Return a new (forward) iterator
// (the iterator has to be deleted by user)
virtual vtkCompositeDataIterator* NewIterator();
// Description:
// Return class name of data type (see vtkType.h for
// definitions).
virtual int GetDataObjectType() {return VTK_MULTIGROUP_DATA_SET;}
// Description:
// Restore data object to initial state,
virtual void Initialize();
// Description:
// Set the number of groups. This call might cause
// allocation if the new number of groups is larger than the
// current one.
void SetNumberOfGroups(unsigned int numGroups);
// Description:
// Returns the number of groups.
unsigned int GetNumberOfGroups();
// Description:
// Set the number of datasets in a given group. This call might
// cause allocation if the new number of datasets is larger
// than the current one.
void SetNumberOfDataSets(unsigned int group, unsigned int numDataSets);
// Description:
// Returns the number of datasets in a given group.
unsigned int GetNumberOfDataSets(unsigned int group);
// Description:
// Initialize the entry for a dataset node. This removes all
// parent/child links between the given node and others.
void InitializeNode(unsigned int group, unsigned int id);
// Description:
// Set the dataset pointer for a given group id and position.
// NULL pointer is an accepted assignment and will replace
// the dataset. Use NULL pointer to mark a dataset as existant, possibly
// on another processor. Metadata can still be associated with
// a NULL dataset.
void SetDataSet(unsigned int group, unsigned int id, vtkDataObject* dataSet);
// Description:
// Uses keys GROUP() and INDEX() to call SetDataSet(GROUP, INDEX, dobj)
virtual void AddDataSet(vtkInformation* index, vtkDataObject* dobj);
// Description:
// Get a dataset give a group and an id.
vtkDataObject* GetDataSet(unsigned int group, unsigned int id);
// Description:
// Uses keys GROUP() and INDEX() to call GetDataSet(GROUP, INDEX)
virtual vtkDataObject* GetDataSet(vtkInformation* index);
// Description:
// Shallow and Deep copy.
virtual void ShallowCopy(vtkDataObject *src);
virtual void DeepCopy(vtkDataObject *src);
// Description:
// Returns the data structure containing information about
// the datasets. This is an information object containing
// the meta-data associated with this dataset. This may include
// things like datatypes, extents...
vtkGetObjectMacro(MultiGroupDataInformation,vtkMultiGroupDataInformation);
// Description:
// Set the information about the datasets.
// This is an information object containing the meta-data associated with
// this dataset. This may include things like datatypes, extents...
// NOTE: vtkMultiGroupDataSet must have a valid information object
// at all times. Passing a null argument to this method will cause
// the existing information being replaced by a new (empty) one.
void SetMultiGroupDataInformation(vtkMultiGroupDataInformation* info);
// Description:
// Returns the total number of points of all blocks. This will
// iterate over all blocks and call GetNumberOfPoints() so it
// might be expansive.
virtual vtkIdType GetNumberOfPoints();
//BTX
friend class vtkMultiGroupDataIterator;
//ETX
static vtkInformationIntegerKey* GROUP();
//BTX
// Description:
// Retrieve an instance of this class from an information object.
static vtkMultiGroupDataSet* GetData(vtkInformation* info);
static vtkMultiGroupDataSet* GetData(vtkInformationVector* v, int i=0);
//ETX
protected:
vtkMultiGroupDataSet();
~vtkMultiGroupDataSet();
vtkMultiGroupDataSetInternal* Internal;
void InitializeDataSets();
virtual vtkMGDSNode* NewNode();
vtkMultiGroupDataInformation* MultiGroupDataInformation;
private:
vtkMultiGroupDataSet(const vtkMultiGroupDataSet&); // Not implemented.
void operator=(const vtkMultiGroupDataSet&); // Not implemented.
};
#endif
|