/usr/include/paraview/vtkPVSelectionSource.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 | /*=========================================================================
Program: ParaView
Module: vtkPVSelectionSource.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 vtkPVSelectionSource - selection source used to produce different types
// of vtkSelections.
// .SECTION Description
// vtkPVSelectionSource is used to create different types of selections. It
// provides different APIs for different types of selections to create.
// The output selection type depends on the API used most recently.
#ifndef vtkPVSelectionSource_h
#define vtkPVSelectionSource_h
#include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
#include "vtkSelectionAlgorithm.h"
class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkPVSelectionSource : public vtkSelectionAlgorithm
{
public:
static vtkPVSelectionSource* New();
vtkTypeMacro(vtkPVSelectionSource, vtkSelectionAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Set a frustum to choose within.
void SetFrustum(double vertices[32]);
// Description:
// Add global IDs.
void AddGlobalID(vtkIdType id);
void RemoveAllGlobalIDs();
// Description:
// Add integer pedigree IDs in a particular domain.
void AddPedigreeID(const char* domain, vtkIdType id);
void RemoveAllPedigreeIDs();
// Description:
// Add string pedigree IDs in a particular domain.
void AddPedigreeStringID(const char* domain, const char* id);
void RemoveAllPedigreeStringIDs();
// Description:
// Add a (piece, id) to the selection set. The source will generate
// only the ids for which piece == UPDATE_PIECE_NUMBER.
// If piece == -1, the id applies to all pieces.
void AddID(vtkIdType piece, vtkIdType id);
void RemoveAllIDs();
// Description:
// Add IDs that will be added to the selection produced by the
// selection source.
// The source will generate
// only the ids for which piece == UPDATE_PIECE_NUMBER.
// If piece == -1, the id applies to all pieces.
void AddCompositeID(unsigned int composite_index, vtkIdType piece, vtkIdType id);
void RemoveAllCompositeIDs();
// Description:
// The list of IDs that will be added to the selection produced by the
// selection source.
void AddHierarhicalID(unsigned int level, unsigned int dataset, vtkIdType id);
void RemoveAllHierarchicalIDs();
// Description:
// Add a value range to threshold within.
void AddThreshold(double min, double max);
void RemoveAllThresholds();
// Description:
// Add the flat-index/composite index for a block.
void AddBlock(vtkIdType blockno);
void RemoveAllBlocks();
// Description:
// For threshold and value selection, this controls the name of the
// scalar array that will be thresholded within.
void SetArrayName(const char* arrayName);
// Description:
// Add a point in world space to probe at.
void AddLocation(double x, double y, double z);
void RemoveAllLocations();
// Description:
// Set the field type for the generated selection.
// Possible values are as defined by
// vtkSelection::SelectionField.
vtkSetMacro(FieldType, int);
vtkGetMacro(FieldType, int);
// Description:
// When extracting by points, extract the cells that contain the
// passing points.
vtkSetMacro(ContainingCells, int);
vtkGetMacro(ContainingCells, int);
// Description:
vtkSetMacro(Inverse, int);
vtkGetMacro(Inverse, int);
// Description:
// Set/get the query expression string.
vtkSetStringMacro(QueryString);
vtkGetStringMacro(QueryString);
//BTX
protected:
vtkPVSelectionSource();
~vtkPVSelectionSource();
virtual int RequestInformation(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
virtual int RequestData(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
enum Modes
{
FRUSTUM,
GLOBALIDS,
ID,
COMPOSITEID,
HIERARCHICALID,
THRESHOLDS,
LOCATIONS,
BLOCKS,
PEDIGREEIDS,
QUERY
};
Modes Mode;
int FieldType;
int ContainingCells;
int Inverse;
double Frustum[32];
char *ArrayName;
char *QueryString;
private:
vtkPVSelectionSource(const vtkPVSelectionSource&); // Not implemented
void operator=(const vtkPVSelectionSource&); // Not implemented
class vtkInternal;
vtkInternal* Internal;
//ETX
};
#endif
|