/usr/include/vtk-6.3/vtkOverlappingAMR.h is in libvtk6-dev 6.3.0+dfsg1-5.
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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkOverlappingAMR.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 vtkOverlappingAMR - hierarchical dataset of vtkUniformGrids
//
// .SECTION Description
// vtkOverlappingAMR extends vtkUniformGridAMR by exposing access to the
// amr meta data, which stores all structural information represented
// by an vtkAMRInformation object
//
// .SECTION See Also
// vtkAMRInformation
#ifndef vtkOverlappingAmr_h
#define vtkOverlappingAmr_h
#include "vtkCommonDataModelModule.h" // For export macro
#include "vtkUniformGridAMR.h"
class vtkAMRBox;
class vtkCompositeDataIterator;
class vtkUniformGrid;
class vtkAMRInformation;
class vtkInformationIdTypeKey;
class VTKCOMMONDATAMODEL_EXPORT vtkOverlappingAMR: public vtkUniformGridAMR
{
public:
static vtkOverlappingAMR *New();
// Description:
// Return class name of data type (see vtkType.h for definitions).
virtual int GetDataObjectType() {return VTK_OVERLAPPING_AMR;}
vtkTypeMacro(vtkOverlappingAMR,vtkUniformGridAMR);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Return a new iterator (the iterator has to be deleted by the user).
virtual vtkCompositeDataIterator* NewIterator();
//Description:
//Get/Set the global origin of the amr data set
void SetOrigin(const double*);
double* GetOrigin();
// Description
// Get/Set the grid spacing at a given level
void SetSpacing(unsigned int level, const double spacing[3]);
void GetSpacing(unsigned int level, double spacing[3]);
// Description
// Set/Get the AMRBox for a given block
void SetAMRBox(unsigned int level, unsigned int id, const vtkAMRBox& box) ;
const vtkAMRBox& GetAMRBox(unsigned int level, unsigned int id) ;
// Description
// Returns the bounding information of a data set.
void GetBounds(unsigned int level, unsigned int id, double* bb);
// Description
// Returns the origin of an AMR block
void GetOrigin(unsigned int level, unsigned int id, double origin[3]);
static vtkInformationIdTypeKey* NUMBER_OF_BLANKED_POINTS();
//BTX
// Description:
// Retrieve an instance of this class from an information object.
static vtkOverlappingAMR* GetData(vtkInformation* info)
{ return vtkOverlappingAMR::SafeDownCast(Superclass::GetData(info)); }
static vtkOverlappingAMR* GetData(vtkInformationVector* v, int i=0)
{ return vtkOverlappingAMR::SafeDownCast(Superclass::GetData(v, i)); }
//ETX
// Description:
// Sets the refinement of a given level. The spacing at level
// level+1 is defined as spacing(level+1) = spacing(level)/refRatio(level).
// Note that currently, this is not enforced by this class however
// some algorithms might not function properly if the spacing in
// the blocks (vtkUniformGrid) does not match the one described
// by the refinement ratio.
void SetRefinementRatio(unsigned int level, int refRatio);
// Description:
// Returns the refinement of a given level.
int GetRefinementRatio(unsigned int level);
// Description:
// Set/Get the source id of a block. The source id is produced by an
// AMR source, e.g. a file reader might set this to be a file block id
void SetAMRBlockSourceIndex(unsigned int level, unsigned int id, int sourceId);
int GetAMRBlockSourceIndex(unsigned int level, unsigned int id);
// Description:
// Returns the refinement ratio for the position pointed by the iterator.
int GetRefinementRatio(vtkCompositeDataIterator* iter);
//Description:
//Return whether parent child information has been generated
bool HasChildrenInformation();
//Description:
// Generate the parent/child relationships - needed to be called
// before GetParents or GetChildren can be used!
void GenerateParentChildInformation();
// Description:
// Return a pointer to Parents of a block. The first entry is the number
// of parents the block has followed by its parent ids in level-1.
// If none exits it returns NULL.
unsigned int *GetParents(unsigned int level, unsigned int index, unsigned int& numParents);
// Description:
// Return a pointer to Children of a block. The first entry is the number
// of children the block has followed by its childern ids in level+1.
// If none exits it returns NULL.
unsigned int *GetChildren(unsigned int level, unsigned int index, unsigned int& numChildren);
// Description:
// Prints the parents and children of a requested block (Debug Routine)
void PrintParentChildInfo(unsigned int level, unsigned int index);
//Unhide superclass method
void GetBounds(double b[6]) { Superclass::GetBounds(b);}
//Description
//Given a point q, find the highest level grid that contains it.
bool FindGrid(double q[3], unsigned int& level, unsigned int& gridId);
// Description:
// Get/Set the interal representation of amr meta meta data
vtkAMRInformation* GetAMRInfo(){ return Superclass::GetAMRInfo();}
virtual void SetAMRInfo(vtkAMRInformation* info){ return Superclass::SetAMRInfo(info);}
// Description
//Check whether the data set is internally consistent, e.g.
//whether the meta data and acutal data blocks match.
//Incorrectness will be reported as error messages
void Audit();
protected:
vtkOverlappingAMR();
virtual ~vtkOverlappingAMR();
private:
vtkOverlappingAMR(const vtkOverlappingAMR&); // Not implemented.
void operator=(const vtkOverlappingAMR&); // Not implemented.
};
#endif
|