/usr/include/vtk-6.3/vtkMergeFields.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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkMergeFields.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 vtkMergeFields - Merge multiple fields into one.
// .SECTION Description
// vtkMergeFields is used to merge mutliple field into one.
// The new field is put in the same field data as the original field.
// For example
// @verbatim
// mf->SetOutputField("foo", vtkMergeFields::POINT_DATA);
// mf->SetNumberOfComponents(2);
// mf->Merge(0, "array1", 1);
// mf->Merge(1, "array2", 0);
// @endverbatim
// will tell vtkMergeFields to use the 2nd component of array1 and
// the 1st component of array2 to create a 2 component field called foo.
// The same can be done using Tcl:
// @verbatim
// mf SetOutputField foo POINT_DATA
// mf Merge 0 array1 1
// mf Merge 1 array2 0
//
// Field locations: DATA_OBJECT, POINT_DATA, CELL_DATA
// @endverbatim
// .SECTION See Also
// vtkFieldData vtkDataSet vtkDataObjectToDataSetFilter
// vtkDataSetAttributes vtkDataArray vtkRearrangeFields
// vtkSplitField vtkAssignAttribute
#ifndef vtkMergeFields_h
#define vtkMergeFields_h
#include "vtkFiltersCoreModule.h" // For export macro
#include "vtkDataSetAlgorithm.h"
class vtkDataArray;
class vtkFieldData;
class VTKFILTERSCORE_EXPORT vtkMergeFields : public vtkDataSetAlgorithm
{
public:
vtkTypeMacro(vtkMergeFields,vtkDataSetAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Create a new vtkMergeFields.
static vtkMergeFields *New();
// Description:
// The output field will have the given name and it will be in
// fieldLoc (the input fields also have to be in fieldLoc).
void SetOutputField(const char* name, int fieldLoc);
// Description:
// Helper method used by the other language bindings. Allows the caller to
// specify arguments as strings instead of enums.Returns an operation id
// which can later be used to remove the operation.
void SetOutputField(const char* name, const char* fieldLoc);
// Description:
// Add a component (arrayName,sourceComp) to the output field.
void Merge(int component, const char* arrayName, int sourceComp);
// Description:
// Set the number of the components in the output field.
// This has to be set before execution. Default value is 0.
vtkSetMacro(NumberOfComponents, int);
vtkGetMacro(NumberOfComponents, int);
//BTX
enum FieldLocations
{
DATA_OBJECT=0,
POINT_DATA=1,
CELL_DATA=2
};
//ETX
//BTX
struct Component
{
int Index;
int SourceIndex;
char* FieldName;
Component* Next; // linked list
void SetName(const char* name)
{
delete[] this->FieldName;
this->FieldName = 0;
if (name)
{
this->FieldName = new char[strlen(name)+1];
strcpy(this->FieldName, name);
}
}
Component() { FieldName = 0; }
~Component() { delete[] FieldName; }
};
//ETX
protected:
//BTX
enum FieldType
{
NAME,
ATTRIBUTE
};
//ETX
vtkMergeFields();
virtual ~vtkMergeFields();
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
char* FieldName;
int FieldLocation;
int NumberOfComponents;
int OutputDataType;
static char FieldLocationNames[3][12];
int MergeArray(vtkDataArray* in, vtkDataArray* out, int inComp, int outComp);
// Components are stored as a linked list.
Component* Head;
Component* Tail;
// Methods to browse/modify the linked list.
Component* GetNextComponent(Component* op)
{ return op->Next; }
Component* GetFirst()
{ return this->Head; }
void AddComponent(Component* op);
Component* FindComponent(int index);
void DeleteAllComponents();
void PrintComponent(Component* op, ostream& os, vtkIndent indent);
void PrintAllComponents(ostream& os, vtkIndent indent);
private:
vtkMergeFields(const vtkMergeFields&); // Not implemented.
void operator=(const vtkMergeFields&); // Not implemented.
};
#endif
|