File: vtkRCalculatorFilter.h

package info (click to toggle)
vtk7 7.1.1%2Bdfsg1-12
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 125,776 kB
  • sloc: cpp: 1,539,582; ansic: 106,521; python: 78,038; tcl: 47,013; xml: 8,142; yacc: 5,040; java: 4,439; perl: 3,132; lex: 1,926; sh: 1,500; makefile: 122; objc: 83
file content (265 lines) | stat: -rw-r--r-- 7,756 bytes parent folder | download | duplicates (3)
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265

/*=========================================================================

  Program:   Visualization Toolkit
  Module:    vtkRCalculatorFilter.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.

=========================================================================*/
/*-------------------------------------------------------------------------
  Copyright 2009 Sandia Corporation.
  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
  the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/

/**
 * @class   vtkRCalculatorFilter
 *
 *
 *
 * This class functions as an array calculator for vtkDataArrays and VTKarray objects,
 * using GNU R as the calculation engine.
 *
 * @sa
 *  vtkRInterface vtkRadapter
 *
 * @par Thanks:
 *  Developed by Thomas Otahal at Sandia National Laboratories.
 *
*/

#ifndef vtkRCalculatorFilter_h
#define vtkRCalculatorFilter_h

#include "vtkFiltersStatisticsGnuRModule.h" // For export macro
#include "vtkDataObjectAlgorithm.h"

class vtkRInterface;
class vtkRCalculatorFilterInternals;
class vtkDataSet;
class vtkDoubleArray;
class vtkGraph;
class vtkTree;
class vtkTable;
class vtkCompositeDataSet;
class vtkArrayData;
class vtkStringArray;

class VTKFILTERSSTATISTICSGNUR_EXPORT vtkRCalculatorFilter : public vtkDataObjectAlgorithm
{

public:

  static vtkRCalculatorFilter *New();

  vtkTypeMacro(vtkRCalculatorFilter, vtkDataObjectAlgorithm );
  void PrintSelf(ostream& os, vtkIndent indent);

  /**
   * Copies vtkDataArray named NameOfVTKArray to R with variable
   * name NameOfRvar.  The array must exist in the input data set.

   * Note: for vtkArray use "0","1","2",... for NameOfVTKArray to specify the index of
   * the vtkArray to pass to R.
   */
  void PutArray(const char* NameOfVTKArray, const char* NameOfRvar);

  /**
   * Copies R variable NameOfRvar from R to the vtkDataArray named
   * NameOfVTKArray.  Will replace existing vtkDataArray with the same name.

   * Note: for vtkArray use any string for NameOfVTKArray.  The array will be appended
   * to the list of vtkArrays on the output.
   */
  void GetArray(const char* NameOfVTKArray, const char* NameOfRvar);

  /**
   * Clears the list of variables to be copied to R.
   */
  void RemoveAllPutVariables();

  /**
   * Clears the list of variables to be copied from R.
   */
  void RemoveAllGetVariables();

  //@{
  /**
   * For vtkTable input to the filter.  An R list variable is created for the
   * vtkTable input using PutTable().  The output of the filter can be set from
   * a list variable in R using GetTable()
   */
  void PutTable(const char* NameOfRvar);
  void GetTable(const char* NameOfRvar);
  //@}

  /**
   * For vtkTable input to the filter. An R list variable is created for each name
   * in the array provided using the vtkTables from the input to the filter.
   */
  void PutTables(vtkStringArray* NamesOfRVars);

  /**
   * For vtkTable output of the filter. If more the one name is provided a composite
   * dataset is created for the output of the filter and a vtkTable is added
   * for each R list variable in the array provided.
   */
  void GetTables(vtkStringArray* NamesOfRVars);

  //@{
  /**
   * For vtkTree input to the filter.  An R phylo tree variable is created for the
   * vtkTree input using PutTree().  The output of the filter can be set from
   * a phylo tree variable in R using GetTree()
   */
  void PutTree(const char* NameOfRvar);
  void GetTree(const char* NameOfRvar);
  //@}

  /**
   * For vtkTree input to the filter.  An R phylo tree variable is created for each
   * name in the array provided using the vtkTrees from the input to the filter.
   */
  void PutTrees(vtkStringArray* NamesOfRvars);

  /**
   * For vtkTree output of the filter. If more than one name is provided a composite
   * dataset is created for the output of the filter and a vtkTree is added for
   * each R phylo tree variable in the array provided.
   */
  void GetTrees(vtkStringArray* NamesOfRvars);


  //@{
  /**
   * Script executed by R.  Can also be set from a file.
   */
  vtkSetStringMacro(Rscript);
  vtkGetStringMacro(Rscript);
  //@}

  //@{
  /**
   * Provide the R script executed by R from an input file.
   */
  vtkSetStringMacro(ScriptFname);
  vtkGetStringMacro(ScriptFname);
  //@}

  //@{
  /**
   * Write R output to standard output.
   */
  vtkSetMacro(Routput,int);
  vtkGetMacro(Routput,int);
  //@}

  //@{
  /**
   * Pass VTK time information to R.
   * If turned turned on, the filter will create three variables in R.
   * The variables will be update automatically as time
   * changes in the VTK pipeline.
   * VTK_TIME_STEPS - array of all available time values.
   * VTK_TIME_RANGE- array of minimum and maximum time values.
   * VTK_CURRENT_TIME - floating point time value at the current time index.
   */
  vtkSetMacro(TimeOutput,int);
  vtkGetMacro(TimeOutput,int);
  //@}

  //@{
  /**
   * Create VTK_BLOCK_ID variable in R when processing composite data sets.
   */
  vtkSetMacro(BlockInfoOutput,int);
  vtkGetMacro(BlockInfoOutput,int);
  //@}

  /**
   * This is required to capture REQUEST_DATA_OBJECT requests.
   */
  virtual int ProcessRequest(vtkInformation* request,
                             vtkInformationVector** inputVector,
                             vtkInformationVector* outputVector);

protected:

  int SetRscriptFromFile(const char* fname);

  virtual int RequestData(vtkInformation *vtkNotUsed(request),
                          vtkInformationVector **inputVector,
                          vtkInformationVector *outputVector);

  /**
   * Creates the same output type as the input type.
   */
  virtual int RequestDataObject(vtkInformation* request,
                                vtkInformationVector** inputVector,
                                vtkInformationVector* outputVector);

  vtkRCalculatorFilter();
  ~vtkRCalculatorFilter();

private:

  vtkRCalculatorFilter(const vtkRCalculatorFilter&) VTK_DELETE_FUNCTION;
  void operator=(const vtkRCalculatorFilter&) VTK_DELETE_FUNCTION;

  // Implementation details
  vtkRCalculatorFilterInternals* rcfi;

  int ProcessInputDataSet(vtkDataSet* dsIn);
  int ProcessOutputDataSet(vtkDataSet* dsOut);

  int ProcessInputGraph(vtkGraph* gIn);
  int ProcessOutputGraph(vtkGraph* gOut);

  int ProcessInputArrayData(vtkArrayData * adIn);
  int ProcessOutputArrayData(vtkArrayData * adOut);

  int ProcessInputCompositeDataSet(vtkCompositeDataSet* cdsIn);
  int ProcessOutputCompositeDataSet(vtkCompositeDataSet * cdsOut);

  int ProcessInputTable(vtkTable* tOut);
  int ProcessInputTable(std::string& name, vtkTable* tIn);

  vtkTable* GetOutputTable(std::string& name);
  int ProcessOutputTable(vtkTable* tOut);

  int ProcessInputTree(vtkTree* tIn);
  int ProcessInputTree(std::string& name, vtkTree* tIn);

  vtkTree* GetOutputTree(std::string& name);
  int ProcessOutputTree(vtkTree* tOut);

  int ProcessInputDataObject(vtkDataObject *input);
  int ProcessOutputDataObject(vtkDataObject *input);
  int HasMultipleGets();
  int HasMultiplePuts();

  vtkRInterface* ri;
  char* Rscript;
  char* RfileScript;
  char* ScriptFname;
  int Routput;
  int TimeOutput;
  int BlockInfoOutput;
  char* OutputBuffer;
  vtkDoubleArray* CurrentTime;
  vtkDoubleArray* TimeRange;
  vtkDoubleArray* TimeSteps;
  vtkDoubleArray* BlockId;
  vtkDoubleArray* NumBlocks;

};

#endif