Salome HOME
To adjust to new SalomeApp_DataOwner, which now holds SALOME_InteractiveObject
[modules/gui.git] / src / VTKViewer / VTKViewer_PassThroughFilter.cxx
1 //  SALOME FILTER : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SALOME_PassThroughFilter.cxx
25 //  Author : Laurent CORNABE with help of Nicolas REJNERI
26 //  Module : SALOME
27
28
29 #include "VTKViewer_PassThroughFilter.h"
30
31 #include <vtkCellData.h>
32 #include <vtkDataSet.h>
33 #include <vtkObjectFactory.h>
34 #include <vtkPointData.h>
35
36 vtkCxxRevisionMacro(VTKViewer_PassThroughFilter, "$Revision$");
37 vtkStandardNewMacro(VTKViewer_PassThroughFilter);
38
39 void VTKViewer_PassThroughFilter::Execute()
40 {
41   vtkDataSet *input = static_cast<vtkDataSet*>(this->GetInput());
42   vtkDataSet *output = static_cast<vtkDataSet*>(this->GetOutput());
43
44   // This has to be here because it initialized all field datas.
45   output->CopyStructure( input );
46   
47   // Pass all. (data object's field data is passed by the
48   // superclass after this method)
49   output->GetPointData()->PassData( input->GetPointData() );
50   output->GetCellData()->PassData( input->GetCellData() );
51
52 }
53
54 void VTKViewer_PassThroughFilter::PrintSelf(ostream& os, vtkIndent indent)
55 {
56   this->Superclass::PrintSelf(os,indent);
57 }