Salome HOME
[EDF26799] : Addition of GetRidOffDebugArrays property to remove numbering output...
[modules/paravis.git] / src / Plugins / MEDReader / plugin / MEDReaderIO / vtkMEDReader.h
index 03b1cb479f12f3fc8ca3d9eb6499c6b7ef25c24e..d4d81a822e195b530a398cf26d29c21f934a0c57 100755 (executable)
@@ -100,6 +100,12 @@ class VTK_EXPORT vtkMEDReader : public vtkMultiBlockDataSetAlgorithm
   // Default is true
   void GhostCellGeneratorCallForPara(int);
   vtkGetMacro(GCGCP, bool);
+  
+  // Description
+  // Control if mesh debug arrays should be removed or not
+  // Default is true
+  void GetRidOffDebugArrays(int);
+  vtkGetMacro(RemoveDebugArrays, bool);
 
 
  protected:
@@ -128,6 +134,7 @@ class VTK_EXPORT vtkMEDReader : public vtkMultiBlockDataSetAlgorithm
   bool GenerateVect = false;
   bool GCGCP = true;
   bool DistributeWithMPI = true;
+  bool RemoveDebugArrays = false;
 };
 
 #endif //__vtkMEDReader_h_