/usr/include/vtk-6.2/vtkDataObject.h is in libvtk6-dev 6.2.0+dfsg1-10build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkDataObject.h
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 vtkDataObject - general representation of visualization data
// .SECTION Description
// vtkDataObject is an general representation of visualization data. It serves
// to encapsulate instance variables and methods for visualization network
// execution, as well as representing data consisting of a field (i.e., just
// an unstructured pile of data). This is to be compared with a vtkDataSet,
// which is data with geometric and/or topological structure.
//
// vtkDataObjects are used to represent arbitrary repositories of data via the
// vtkFieldData instance variable. These data must be eventually mapped into a
// concrete subclass of vtkDataSet before they can actually be displayed.
//
// .SECTION See Also
// vtkDataSet vtkFieldData vtkDataObjectSource vtkDataObjectFilter
// vtkDataObjectMapper vtkDataObjectToDataSet
// vtkFieldDataToAttributeDataFilter
#ifndef vtkDataObject_h
#define vtkDataObject_h
#include "vtkCommonDataModelModule.h" // For export macro
#include "vtkObject.h"
class vtkAbstractArray;
class vtkDataSetAttributes;
class vtkFieldData;
class vtkInformation;
class vtkInformationDataObjectKey;
class vtkInformationDoubleKey;
class vtkInformationDoubleVectorKey;
class vtkInformationIntegerKey;
class vtkInformationIntegerPointerKey;
class vtkInformationIntegerVectorKey;
class vtkInformationStringKey;
class vtkInformationVector;
class vtkInformationInformationVectorKey;
#define VTK_PIECES_EXTENT 0
#define VTK_3D_EXTENT 1
#define VTK_TIME_EXTENT 2
class VTKCOMMONDATAMODEL_EXPORT vtkDataObject : public vtkObject
{
public:
static vtkDataObject *New();
vtkTypeMacro(vtkDataObject,vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Set/Get the information object associated with this data object.
vtkGetObjectMacro(Information, vtkInformation);
virtual void SetInformation(vtkInformation*);
// Description:
// Data objects are composite objects and need to check each part for MTime.
// The information object also needs to be considered.
unsigned long int GetMTime();
// Description:
// Restore data object to initial state,
virtual void Initialize();
// Description:
// Release data back to system to conserve memory resource. Used during
// visualization network execution. Releasing this data does not make
// down-stream data invalid, so it does not modify the MTime of this
// data object.
void ReleaseData();
// Description:
// Get the flag indicating the data has been released.
vtkGetMacro(DataReleased,int);
// Description:
// Turn on/off flag to control whether every object releases its data
// after being used by a filter.
static void SetGlobalReleaseDataFlag(int val);
void GlobalReleaseDataFlagOn() {this->SetGlobalReleaseDataFlag(1);};
void GlobalReleaseDataFlagOff() {this->SetGlobalReleaseDataFlag(0);};
static int GetGlobalReleaseDataFlag();
// Description:
// Assign or retrieve a general field data to this data object.
virtual void SetFieldData(vtkFieldData*);
vtkGetObjectMacro(FieldData,vtkFieldData);
// Description:
// Return class name of data type. This is one of VTK_STRUCTURED_GRID,
// VTK_STRUCTURED_POINTS, VTK_UNSTRUCTURED_GRID, VTK_POLY_DATA, or
// VTK_RECTILINEAR_GRID (see vtkSetGet.h for definitions).
// THIS METHOD IS THREAD SAFE
virtual int GetDataObjectType() {return VTK_DATA_OBJECT;}
// Description:
// Used by Threaded ports to determine if they should initiate an
// asynchronous update (still in development).
unsigned long GetUpdateTime();
// Description:
// Return the actual size of the data in kilobytes. This number
// is valid only after the pipeline has updated. The memory size
// returned is guaranteed to be greater than or equal to the
// memory required to represent the data (e.g., extra space in
// arrays, etc. are not included in the return value).
virtual unsigned long GetActualMemorySize();
// Description:
// Copy information about this data object from the
// pipeline information to its own Information.
// Called right before the main execution pass..
virtual void CopyInformationFromPipeline(vtkInformation* vtkNotUsed(info))
{}
// Description:
// Return the information object within the input information object's
// field data corresponding to the specified association
// (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS) and attribute
// (SCALARS, VECTORS, NORMALS, TCOORDS, or TENSORS)
static vtkInformation *GetActiveFieldInformation(vtkInformation *info,
int fieldAssociation, int attributeType);
// Description:
// Return the information object within the input information object's
// field data corresponding to the specified association
// (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS) and name.
static vtkInformation *GetNamedFieldInformation(vtkInformation *info,
int fieldAssociation, const char *name);
// Description:
// Remove the info associated with an array
static void RemoveNamedFieldInformation(vtkInformation *info,
int fieldAssociation,
const char *name);
// Description:
// Set the named array to be the active field for the specified type
// (SCALARS, VECTORS, NORMALS, TCOORDS, or TENSORS) and association
// (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS). Returns the
// active field information object and creates on entry if one not found.
static vtkInformation *SetActiveAttribute(vtkInformation *info,
int fieldAssociation, const char *attributeName, int attributeType);
// Description:
// Set the name, array type, number of components, and number of tuples
// within the passed information object for the active attribute of type
// attributeType (in specified association, FIELD_ASSOCIATION_POINTS or
// FIELD_ASSOCIATION_CELLS). If there is not an active attribute of the
// specified type, an entry in the information object is created. If
// arrayType, numComponents, or numTuples equal to -1, or name=NULL the
// value is not changed.
static void SetActiveAttributeInfo(vtkInformation *info,
int fieldAssociation, int attributeType, const char *name, int arrayType,
int numComponents, int numTuples);
// Description:
// Convenience version of previous method for use (primarily) by the Imaging
// filters. If arrayType or numComponents == -1, the value is not changed.
static void SetPointDataActiveScalarInfo(vtkInformation *info,
int arrayType, int numComponents);
// Description:
// This method is called by the source when it executes to generate data.
// It is sort of the opposite of ReleaseData.
// It sets the DataReleased flag to 0, and sets a new UpdateTime.
void DataHasBeenGenerated();
// Description:
// make the output data ready for new data to be inserted. For most
// objects we just call Initialize. But for vtkImageData we leave the old
// data in case the memory can be reused.
virtual void PrepareForNewData() {this->Initialize();};
// Description:
// Shallow and Deep copy. These copy the data, but not any of the
// pipeline connections.
virtual void ShallowCopy(vtkDataObject *src);
virtual void DeepCopy(vtkDataObject *src);
// Description:
// The ExtentType will be left as VTK_PIECES_EXTENT for data objects
// such as vtkPolyData and vtkUnstructuredGrid. The ExtentType will be
// changed to VTK_3D_EXTENT for data objects with 3D structure such as
// vtkImageData (and its subclass vtkStructuredPoints), vtkRectilinearGrid,
// and vtkStructuredGrid. The default is the have an extent in pieces,
// with only one piece (no streaming possible).
virtual int GetExtentType() { return VTK_PIECES_EXTENT; };
// Description:
// This method crops the data object (if necessary) so that the extent
// matches the update extent.
virtual void Crop(const int* updateExtent);
//BTX
// Description:
// Possible values for the FIELD_ASSOCIATION information entry.
enum FieldAssociations
{
FIELD_ASSOCIATION_POINTS,
FIELD_ASSOCIATION_CELLS,
FIELD_ASSOCIATION_NONE,
FIELD_ASSOCIATION_POINTS_THEN_CELLS,
FIELD_ASSOCIATION_VERTICES,
FIELD_ASSOCIATION_EDGES,
FIELD_ASSOCIATION_ROWS,
NUMBER_OF_ASSOCIATIONS
};
//ETX
//BTX
// Description:
// Possible attribute types.
// POINT_THEN_CELL is provided for consistency with FieldAssociations.
enum AttributeTypes
{
POINT,
CELL,
FIELD,
POINT_THEN_CELL,
VERTEX,
EDGE,
ROW,
NUMBER_OF_ATTRIBUTE_TYPES
};
//ETX
// Description:
// Returns the attributes of the data object of the specified
// attribute type. The type may be:
// <ul>
// <li>POINT - Defined in vtkDataSet subclasses.
// <li>CELL - Defined in vtkDataSet subclasses.
// <li>VERTEX - Defined in vtkGraph subclasses.
// <li>EDGE - Defined in vtkGraph subclasses.
// <li>ROW - Defined in vtkTable.
// </ul>
// The other attribute type, FIELD, will return NULL since
// field data is stored as a vtkFieldData instance, not a
// vtkDataSetAttributes instance. To retrieve field data, use
// GetAttributesAsFieldData.
virtual vtkDataSetAttributes* GetAttributes(int type);
// Description:
// Returns the attributes of the data object as a vtkFieldData.
// This returns non-null values in all the same cases as GetAttributes,
// in addition to the case of FIELD, which will return the field data
// for any vtkDataObject subclass.
virtual vtkFieldData* GetAttributesAsFieldData(int type);
// Description:
// Retrieves the attribute type that an array came from.
// This is useful for obtaining which attribute type a input array
// to an algorithm came from (retrieved from GetInputAbstractArrayToProcesss).
virtual int GetAttributeTypeForArray(vtkAbstractArray* arr);
// Description:
// Get the number of elements for a specific attribute type (POINT, CELL, etc.).
virtual vtkIdType GetNumberOfElements(int type);
//BTX
// Description:
// Possible values for the FIELD_OPERATION information entry.
enum FieldOperations
{
FIELD_OPERATION_PRESERVED,
FIELD_OPERATION_REINTERPOLATED,
FIELD_OPERATION_MODIFIED,
FIELD_OPERATION_REMOVED
};
//ETX
// Description:
// Given an integer association type, this static method returns a string type
// for the attribute (i.e. type = 0: returns "Points").
static const char* GetAssociationTypeAsString(int associationType);
// Description:
// Given an integer association type, this static method returns a string type
// for the attribute (i.e. type = 0: returns "Points").
static int GetAssociationTypeFromString(const char* associationType);
// \ingroup InformationKeys
static vtkInformationStringKey* DATA_TYPE_NAME();
// \ingroup InformationKeys
static vtkInformationDataObjectKey* DATA_OBJECT();
// \ingroup InformationKeys
static vtkInformationIntegerKey* DATA_EXTENT_TYPE();
// \ingroup InformationKeys
static vtkInformationIntegerPointerKey* DATA_EXTENT();
// \ingroup InformationKeys
static vtkInformationIntegerVectorKey* ALL_PIECES_EXTENT();
// \ingroup InformationKeys
static vtkInformationIntegerKey* DATA_PIECE_NUMBER();
// \ingroup InformationKeys
static vtkInformationIntegerKey* DATA_NUMBER_OF_PIECES();
// \ingroup InformationKeys
static vtkInformationIntegerKey* DATA_NUMBER_OF_GHOST_LEVELS();
// \ingroup InformationKeys
static vtkInformationDoubleKey* DATA_TIME_STEP();
// \ingroup InformationKeys
static vtkInformationInformationVectorKey* POINT_DATA_VECTOR();
// \ingroup InformationKeys
static vtkInformationInformationVectorKey* CELL_DATA_VECTOR();
// \ingroup InformationKeys
static vtkInformationInformationVectorKey* VERTEX_DATA_VECTOR();
// \ingroup InformationKeys
static vtkInformationInformationVectorKey* EDGE_DATA_VECTOR();
// \ingroup InformationKeys
static vtkInformationIntegerKey* FIELD_ARRAY_TYPE();
// \ingroup InformationKeys
static vtkInformationIntegerKey* FIELD_ASSOCIATION();
// \ingroup InformationKeys
static vtkInformationIntegerKey* FIELD_ATTRIBUTE_TYPE();
// \ingroup InformationKeys
static vtkInformationIntegerKey* FIELD_ACTIVE_ATTRIBUTE();
// \ingroup InformationKeys
static vtkInformationIntegerKey* FIELD_NUMBER_OF_COMPONENTS();
// \ingroup InformationKeys
static vtkInformationIntegerKey* FIELD_NUMBER_OF_TUPLES();
// \ingroup InformationKeys
static vtkInformationIntegerKey* FIELD_OPERATION();
// \ingroup InformationKeys
static vtkInformationDoubleVectorKey* FIELD_RANGE();
// \ingroup InformationKeys
static vtkInformationIntegerVectorKey* PIECE_EXTENT();
// \ingroup InformationKeys
static vtkInformationStringKey* FIELD_NAME();
// \ingroup InformationKeys
static vtkInformationDoubleVectorKey* ORIGIN();
// \ingroup InformationKeys
static vtkInformationDoubleVectorKey* SPACING();
// \ingroup InformationKeys
static vtkInformationDoubleVectorKey* BOUNDING_BOX();
// Key used to put SIL information in the output information by readers.
// \ingroup InformationKeys
static vtkInformationDataObjectKey* SIL();
//BTX
// Description:
// Retrieve an instance of this class from an information object.
static vtkDataObject* GetData(vtkInformation* info);
static vtkDataObject* GetData(vtkInformationVector* v, int i=0);
//ETX
protected:
vtkDataObject();
~vtkDataObject();
// General field data associated with data object
vtkFieldData *FieldData;
// Keep track of data release during network execution
int DataReleased;
// When was this data last generated?
vtkTimeStamp UpdateTime;
// Arbitrary extra information associated with this data object.
vtkInformation* Information;
private:
// Helper method for the ShallowCopy and DeepCopy methods.
void InternalDataObjectCopy(vtkDataObject *src);
private:
vtkDataObject(const vtkDataObject&); // Not implemented.
void operator=(const vtkDataObject&); // Not implemented.
};
#endif
|