Salome HOME
Merge from tetra_hpc branch
[plugins/ghs3dprlplugin.git] / src / GHS3DPRLPlugin / GHS3DPRLPluginBuilder.py
index 19eefd2f10c2771a22d4fd1b42bc4c66efdc13b8..cec63fda5b91002e120ad18aee86df3ffb47f055 100644 (file)
@@ -111,8 +111,32 @@ class GHS3DPRL_Algorithm(Mesh_Algorithm):
 
     ## To mesh "holes" in a solid or not. Default is to mesh.
     #  @param toMesh "mesh holes" flag value
-    def SetToMeshHoles(self, toMesh):
-        self.Parameters().SetToMeshHoles(toMesh)
+    #def SetToMeshHoles(self, toMesh):
+    #    self.Parameters().SetToMeshHoles(toMesh)
+    #    pass
+    
+    ## To Merge Subdomains. Default is to no.
+    #  @param toMesh "MergeSubdomains" flag value
+    def SetToMergeSubdomains(self, toMesh):
+        self.Parameters().SetToMergeSubdomains(toMesh)
+        pass
+    
+    ## To Tag Subdomains. Default is to no.
+    #  @param toMesh "TagSubdomains" flag value
+    def SetToTagSubdomains(self, toMesh):
+        self.Parameters().SetToTagSubdomains(toMesh)
+        pass
+    
+    ## To Output Interfaces. Default is to no.
+    #  @param toMesh "OutputInterfaces" flag value
+    def SetToOutputInterfaces(self, toMesh):
+        self.Parameters().SetToOutputInterfaces(toMesh)
+        pass
+    
+    ## To Discard Subdomains. Default is to no.
+    #  @param toMesh "DiscardSubdomains" flag value
+    def SetToDiscardSubdomains(self, toMesh):
+        self.Parameters().SetToDiscardSubdomains(toMesh)
         pass
     
     pass # end of GHS3DPRL_Algorithm class