ParaView
vtkMergeArrays.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkMergeArrays.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
26 #ifndef vtkMergeArrays_h
27 #define vtkMergeArrays_h
28 
29 #include "vtkDataSetAlgorithm.h"
30 #include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
31 
32 class vtkDataSet;
33 
34 class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkMergeArrays : public vtkDataSetAlgorithm
35 {
36 public:
37  static vtkMergeArrays* New();
38 
39  vtkTypeMacro(vtkMergeArrays, vtkDataSetAlgorithm);
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
42 protected:
44  ~vtkMergeArrays();
45 
46  virtual int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
47 
48  // see algorithm for more info
49  virtual int FillInputPortInformation(int port, vtkInformation* info);
50 
51 private:
52  vtkMergeArrays(const vtkMergeArrays&) VTK_DELETE_FUNCTION;
53  void operator=(const vtkMergeArrays&) VTK_DELETE_FUNCTION;
54 };
55 
56 #endif
Multiple inputs with same geometry, one output.