From a48b782f415cefd7f6639046b3e241a22d232b8a Mon Sep 17 00:00:00 2001 From: mgn Date: Thu, 20 Nov 2014 14:27:28 +0300 Subject: [PATCH] Create plugin as a filter which allows analyze difference between two time steps of one data array (field). Added the following server manager properties: 1. Property is responsible for enumeration the scalar array names of input data set; 2. Property is responsible for specifying the first time step; 3. Property is responsible for specifying the second time step; 4. Property is responsible for specifying the prefix of new array name. Filter is capable of reading various data objects. Also filter can return the corresponding errors if the input data are not correct or property of user interface controls is invalid. This filter appointed into "Temporal" group of filters. Added the icon to this filter. --- src/Plugins/DifferenceTimesteps/CMakeLists.txt | 1 - .../DifferenceTimesteps/vtkDifferenceTimestepsFilter.cxx | 2 -- .../DifferenceTimesteps/vtkDifferenceTimestepsFilter.h | 8 +++----- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/src/Plugins/DifferenceTimesteps/CMakeLists.txt b/src/Plugins/DifferenceTimesteps/CMakeLists.txt index 5208ade7..0568f112 100644 --- a/src/Plugins/DifferenceTimesteps/CMakeLists.txt +++ b/src/Plugins/DifferenceTimesteps/CMakeLists.txt @@ -16,7 +16,6 @@ # # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # -# Author : Maxim Glibin PROJECT(DifferenceTimesteps) diff --git a/src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.cxx b/src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.cxx index 7749f9c1..9a8b3aa3 100644 --- a/src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.cxx +++ b/src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.cxx @@ -15,8 +15,6 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com -// -// Author : Maxim Glibin #include "vtkDifferenceTimestepsFilter.h" diff --git a/src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.h b/src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.h index 12bbf63c..df06db6f 100644 --- a/src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.h +++ b/src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.h @@ -15,11 +15,9 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com -// -// Author : Maxim Glibin -#ifndef __DifferenceTimestepsFilter_h_ -#define __DifferenceTimestepsFilter_h_ +#ifndef __DifferenceTimestepsFilter_h +#define __DifferenceTimestepsFilter_h #include @@ -145,4 +143,4 @@ private: bool VerifyArrays(vtkDataArray **theArrays, int theNumArrays); }; -#endif // __DifferenceTimestepsFilter_h_ +#endif // __DifferenceTimestepsFilter_h -- 2.39.2