/usr/include/vtk-6.3/vtkCachingInterpolatedVelocityField.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 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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkCachingInterpolatedVelocityField.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 vtkCachingInterpolatedVelocityField - Interface for obtaining
// interpolated velocity values
// .SECTION Description
// vtkCachingInterpolatedVelocityField acts as a continuous velocity field
// by performing cell interpolation on the underlying vtkDataSet.
// This is a concrete sub-class of vtkFunctionSet with
// NumberOfIndependentVariables = 4 (x,y,z,t) and
// NumberOfFunctions = 3 (u,v,w). Normally, every time an evaluation
// is performed, the cell which contains the point (x,y,z) has to
// be found by calling FindCell. This is a computationally expensive
// operation. In certain cases, the cell search can be avoided or shortened
// by providing a guess for the cell id. For example, in streamline
// integration, the next evaluation is usually in the same or a neighbour
// cell. For this reason, vtkCachingInterpolatedVelocityField stores the last
// cell id. If caching is turned on, it uses this id as the starting point.
// .SECTION Caveats
// vtkCachingInterpolatedVelocityField is not thread safe. A new instance should
// be created by each thread.
// .SECTION See Also
// vtkFunctionSet vtkStreamer
// .SECTION TODO
// Need to clean up style to match vtk/Kitware standards. Please help.
#ifndef vtkTInterpolatedVelocityField_h
#define vtkTInterpolatedVelocityField_h
#include "vtkFiltersFlowPathsModule.h" // For export macro
#include "vtkFunctionSet.h"
#include "vtkSmartPointer.h" // this is allowed
//BTX
#include <vector> // we need them
//ETX
class vtkDataSet;
class vtkDataArray;
class vtkPointData;
class vtkGenericCell;
class vtkAbstractCellLocator;
//BTX
//---------------------------------------------------------------------------
class IVFDataSetInfo;
//---------------------------------------------------------------------------
class IVFCacheList : public std::vector< IVFDataSetInfo > {};
//---------------------------------------------------------------------------
//ETX
class VTKFILTERSFLOWPATHS_EXPORT vtkCachingInterpolatedVelocityField : public vtkFunctionSet
{
public:
vtkTypeMacro(vtkCachingInterpolatedVelocityField,vtkFunctionSet);
virtual void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Construct a vtkCachingInterpolatedVelocityField with no initial data set.
// LastCellId is set to -1.
static vtkCachingInterpolatedVelocityField *New();
// Description:
// Evaluate the velocity field, f={u,v,w}, at {x, y, z}.
// returns 1 if valid, 0 if test failed
virtual int FunctionValues(double* x, double* f);
virtual int InsideTest(double* x);
// Description:
// Add a dataset used by the interpolation function evaluation.
virtual void SetDataSet(int I, vtkDataSet* dataset, bool staticdataset, vtkAbstractCellLocator *locator);
// Description:
// If you want to work with an arbitrary vector array, then set its name
// here. By default this in NULL and the filter will use the active vector
// array.
vtkGetStringMacro(VectorsSelection);
void SelectVectors(const char *fieldName)
{this->SetVectorsSelection(fieldName);}
// Description:
// Set LastCellId to c and LastCacheIndex datasetindex, cached from last evaluation.
// If c isn't -1 then the corresponding cell is stored in Cache->Cell.
// These values should be valid or an assertion will be triggered.
void SetLastCellInfo(vtkIdType c, int datasetindex);
// Description:
// Set LastCellId to -1 and Cache to NULL so that the next
// search does not start from the previous cell.
void ClearLastCellInfo();
// Description:
// Returns the interpolation weights/pcoords cached from last evaluation
// if the cached cell is valid (returns 1). Otherwise, it does not
// change w and returns 0.
int GetLastWeights(double* w);
int GetLastLocalCoordinates(double pcoords[3]);
// Description:
// Caching statistics.
vtkGetMacro(CellCacheHit, int);
vtkGetMacro(DataSetCacheHit, int);
vtkGetMacro(CacheMiss, int);
protected:
vtkCachingInterpolatedVelocityField();
~vtkCachingInterpolatedVelocityField();
vtkGenericCell *TempCell;
int CellCacheHit;
int DataSetCacheHit;
int CacheMiss;
int LastCacheIndex;
int LastCellId;
IVFDataSetInfo *Cache;
IVFCacheList CacheList;
char *VectorsSelection;
//BTX
std::vector<double> Weights;
//ETX
vtkSetStringMacro(VectorsSelection);
// private versions which work on the passed dataset/cache
// these do the real computation
int FunctionValues(IVFDataSetInfo *cache, double *x, double *f);
int InsideTest(IVFDataSetInfo *cache, double* x);
//BTX
friend class vtkTemporalInterpolatedVelocityField;
// Description:
// If all weights have been computed (parametric coords etc all valid)
// then we can quickly interpolate a scalar/vector using the known weights
// and the generic cell which has been stored.
// This function is primarily reserved for use by
// vtkTemporalInterpolatedVelocityField
void FastCompute(IVFDataSetInfo *cache, double f[3]);
bool InterpolatePoint(vtkPointData *outPD, vtkIdType outIndex);
bool InterpolatePoint(vtkCachingInterpolatedVelocityField *inCIVF,
vtkPointData *outPD, vtkIdType outIndex);
vtkGenericCell *GetLastCell();
//ETX
private:
vtkCachingInterpolatedVelocityField(const vtkCachingInterpolatedVelocityField&); // Not implemented.
void operator=(const vtkCachingInterpolatedVelocityField&); // Not implemented.
};
//---------------------------------------------------------------------------
///////////////////////////////////////////////////////////////////////////////
// IVFDataSetInfo
///////////////////////////////////////////////////////////////////////////////
#ifndef DOXYGEN_SHOULD_SKIP_THIS
//
//BTX
//
class IVFDataSetInfo
{
public:
vtkSmartPointer<vtkDataSet> DataSet;
vtkSmartPointer<vtkAbstractCellLocator> BSPTree;
vtkSmartPointer<vtkGenericCell> Cell;
double PCoords[3];
float *VelocityFloat;
double *VelocityDouble;
double Tolerance;
bool StaticDataSet;
IVFDataSetInfo();
IVFDataSetInfo(const IVFDataSetInfo &ivfci);
IVFDataSetInfo &operator=(const IVFDataSetInfo &ivfci);
void SetDataSet(vtkDataSet *data, char *velocity, bool staticdataset, vtkAbstractCellLocator *locator);
//
static const double TOLERANCE_SCALE;
};
//
//ETX
//
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
#endif
|