/usr/include/vtk-7.1/vtkAMRDataSetCache.h is in libvtk7-dev 7.1.1+dfsg1-2.
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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkAMRDataSetCache.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.
=========================================================================*/
/**
* @class vtkAMRDataSetCache
*
*
* A concrete implementation of vtkObject that provides functionality for
* caching AMR blocks. The primary intent of this class is to be used by the
* AMR reader infrastructure for caching blocks/data in memory to minimize
* out-of-core operations.
*/
#ifndef vtkAMRDataSetCache_h
#define vtkAMRDataSetCache_h
#include "vtkIOAMRModule.h" // For export macro
#include "vtkObject.h"
#include <map> // For STL map used as the data-structure for the cache.
class vtkUniformGrid;
class vtkDataArray;
class VTKIOAMR_EXPORT vtkAMRDataSetCache : public vtkObject
{
public:
static vtkAMRDataSetCache* New();
vtkTypeMacro( vtkAMRDataSetCache, vtkObject );
void PrintSelf(ostream &os, vtkIndent indent );
/**
* Inserts an AMR block to the cache
*/
void InsertAMRBlock(int compositeIdx,vtkUniformGrid *amrGrid);
/**
* Inserts a point data array to an already cached block
* NOTE: this->HasAMRBlock( compositeIdx ) == true
*/
void InsertAMRBlockPointData(
int compositeIdx, vtkDataArray *dataArray );
/**
* Inserts a cell data array to an already cached block
* NOTE: this->HasAMRBlock( compositeIdx ) == true
*/
void InsertAMRBlockCellData(
int compositeIdx, vtkDataArray *dataArray );
/**
* Given the name of the cell array and AMR block composite index, this
* method returns a pointer to the cell data array.
* NOTE: Null is returned if the cell array and/or block is not cached.
*/
vtkDataArray* GetAMRBlockCellData(
int compositeIdx, const char *dataName );
/**
* Given the name of the point array and AMR block composite index, this
* method returns a pointer to the point data array.
* NOTE: Null is returend if the point array and /or block is not cached.
*/
vtkDataArray* GetAMRBlockPointData(
int compositeIdx, const char *dataName );
/**
* Given the composite index, this method returns the AMR block.
* NOTE: Null is returned if the AMR block does not exist in the cache.
*/
vtkUniformGrid* GetAMRBlock(int compositeIdx );
/**
* Checks if the cell data array, associated with the provided name, has
* been cached for the AMR block with the given composite index.
*/
bool HasAMRBlockCellData(int compositeIdx, const char *name);
/**
* Checks if the point data array, associated with the provided name, has
* been cached for the AMR block with the given composite index.
*/
bool HasAMRBlockPointData(int compositeIdx, const char *name);
/**
* Checks if the AMR block associated with the given composite is cached.
*/
bool HasAMRBlock( const int compositeIdx );
protected:
vtkAMRDataSetCache();
virtual ~vtkAMRDataSetCache();
typedef std::map< int, vtkUniformGrid* > AMRCacheType;
AMRCacheType Cache;
private:
vtkAMRDataSetCache( const vtkAMRDataSetCache& ) VTK_DELETE_FUNCTION;
void operator=( const vtkAMRDataSetCache& ) VTK_DELETE_FUNCTION;
};
#endif /* vtkAMRDataSetCache_h */
|