/usr/include/paraview/vtkHierarchicalFractal.h is in paraview-dev 5.0.1+dfsg1-4.
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 | /*=========================================================================
Program: ParaView
Module: vtkHierarchicalFractal.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 vtkHierarchicalFractal - A source to test AMR data object.
// .SECTION Description
// vtkHierarchicalFractal is a collection of uniform grids. All have the same
// dimensions. Each block has a different origin and spacing. It uses
// mandelbrot to create cell data. I scale the fractal array to look like a
// volme fraction.
// I may also add block id and level as extra cell arrays.
// If GenerateRectilinearGrids is true then this filter outputs
// vtkHierarchicalBoxDataSet otherwise it generates a vtkMultiBlockDataSet.
#ifndef vtkHierarchicalFractal_h
#define vtkHierarchicalFractal_h
#include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
#include "vtkCompositeDataSetAlgorithm.h"
#include "vtkSmartPointer.h" //for ivars
class vtkIntArray;
class vtkUniformGrid;
class vtkRectilinearGrid;
class vtkDataSet;
class vtkHierarchicalBoxDataSet;
class HierarchicalFractalOutputUtil;
class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkHierarchicalFractal : public vtkCompositeDataSetAlgorithm
{
public:
static vtkHierarchicalFractal *New();
vtkTypeMacro(vtkHierarchicalFractal,vtkCompositeDataSetAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Essentially the iso surface value.
// The fractal array is scaled to map this value to 0.5 for use as a volume
// fraction.
vtkSetMacro(FractalValue, float);
vtkGetMacro(FractalValue, float);
// Description:
// Any blocks touching a predefined line will be subdivided to this level.
// Other blocks are subdivided so that neighboring blocks only differ
// by one level.
vtkSetMacro(MaximumLevel, int);
vtkGetMacro(MaximumLevel, int);
// Description:
// XYZ dimensions of cells.
vtkSetMacro(Dimensions, int);
vtkGetMacro(Dimensions, int);
// Description:
// For testing ghost levels.
vtkSetMacro(GhostLevels, int);
vtkGetMacro(GhostLevels, int);
vtkBooleanMacro(GhostLevels, int);
// Description:
// Dummy time-step
vtkSetMacro(TimeStep, int);
vtkGetMacro(TimeStep, int);
vtkGetVector2Macro(TimeStepRange, int);
// Description:
// Generate either rectilinear grids either uniform grids.
// Default is false.
vtkSetMacro(GenerateRectilinearGrids, int);
vtkGetMacro(GenerateRectilinearGrids, int);
vtkBooleanMacro(GenerateRectilinearGrids, int);
// Description:
// Make a 2D data set to test.
vtkSetMacro(TwoDimensional, int);
vtkGetMacro(TwoDimensional, int);
vtkBooleanMacro(TwoDimensional, int);
// Description:
// Test the case when the blocks do not have the same sizes.
// Adds 2 to the x extent of the far x blocks (level 1).
vtkSetMacro(Asymetric,int);
vtkGetMacro(Asymetric,int);
// Description:
// Test with lower levels overlapping higher levels.
// This is what I assume flash is like.
vtkSetMacro(Overlap,int);
vtkGetMacro(Overlap,int);
protected:
vtkHierarchicalFractal();
~vtkHierarchicalFractal();
int StartBlock;
int EndBlock;
int BlockCount;
int TimeStep;
int TimeStepRange[2];
// Create either vtkHierarchicalBoxDataSet or vtkMultiBlockDataSet based on
// the GenerateRectilinearGrids flag.
virtual int RequestDataObject(vtkInformation *req,
vtkInformationVector **inV,
vtkInformationVector *outV);
// Description:
// This is called by the superclass.
// This is the method you should override.
virtual int RequestInformation(vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector);
// Description:
// This is called by the superclass.
// This is the method you should override.
virtual int RequestData(vtkInformation *request,
vtkInformationVector **inputVector,
vtkInformationVector *outputVector);
void Traverse(int &blockId, int level, vtkCompositeDataSet* output,
int x0,int x1, int y0,int y1, int z0,int z1,
int onFace[6]);
int LineTest2(float x0, float y0, float z0,
float x1, float y1, float z1,
double bds[6]);
int LineTest(float x0, float y0, float z0,
float x1, float y1, float z1,
double bds[6], int level, int target);
void SetBlockInfo(vtkUniformGrid *grid, int level, int* ext,int onFace[6]);
void SetRBlockInfo(vtkRectilinearGrid *grid, int level, int* ext,
int onFace[6]);
void AddVectorArray(vtkCompositeDataSet *output);
void AddTestArray(vtkCompositeDataSet *output);
void AddFractalArray(vtkCompositeDataSet *output);
void AddBlockIdArray(vtkCompositeDataSet *output);
void AddDepthArray(vtkHierarchicalBoxDataSet *output);
void AddGhostLevelArray(vtkDataSet *grid,
int dim[3],
int onFace[6]);
int MandelbrotTest(double x, double y);
int TwoDTest(double bds[6], int level, int target);
void CellExtentToBounds(int level,
int ext[6],
double bds[6]);
void ExecuteRectilinearMandelbrot(vtkRectilinearGrid *grid,
double *ptr);
double EvaluateSet(double p[4]);
void GetContinuousIncrements(int extent[6],
vtkIdType &incX,
vtkIdType &incY,
vtkIdType &incZ);
// Dimensions:
// Specify blocks relative to this top level block.
// For now this has to be set before the blocks are defined.
vtkSetVector3Macro(TopLevelSpacing, double);
vtkGetVector3Macro(TopLevelSpacing, double);
vtkSetVector3Macro(TopLevelOrigin, double);
vtkGetVector3Macro(TopLevelOrigin, double);
void InternalImageDataCopy(vtkHierarchicalFractal *src);
int Overlap;
int Asymetric;
int MaximumLevel;
int Dimensions;
float FractalValue;
int GhostLevels;
vtkIntArray *Levels;
int TwoDimensional;
// New method of specifing blocks.
double TopLevelSpacing[3];
double TopLevelOrigin[3];
int GenerateRectilinearGrids;
vtkSmartPointer<HierarchicalFractalOutputUtil> OutputUtil; //convenient class to create composite output
private:
vtkHierarchicalFractal(const vtkHierarchicalFractal&); // Not implemented.
void operator=(const vtkHierarchicalFractal&); // Not implemented.
};
#endif
|