Salome HOME
Adding multithread computation (available since MeshGems-2.4-2)
[plugins/blsurfplugin.git] / idl / BLSURFPlugin_Algorithm.idl
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // ---
21 // File    : BLSURFPlugin_Algorithm.idl
22 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA) & Lioka RAZAFINDRAZAKA (CEA)
23 //           Size maps developement: Nicolas GEIMER (OCC) & Gilles DAVID (EURIWARE)
24 // ---
25 //
26 #ifndef _SMESH_BLSURFALGORITHM_IDL_
27 #define _SMESH_BLSURFALGORITHM_IDL_
28
29 #include "SMESH_Hypothesis.idl"
30 #include "GEOM_Gen.idl"
31 #include "SALOME_Exception.idl"
32
33 /*!
34  * BLSURFPlugin: interfaces to BLSURF related hypotheses and algorithms
35  */
36 module BLSURFPlugin
37 {
38   typedef sequence<string> string_array;
39
40   // Enforced vertex name
41   typedef string TEnfName;
42   // Entry
43   typedef string TEntry;
44   typedef sequence<TEntry> TEntryList;
45   // Group name
46   typedef string TEnfGroupName;
47   
48   // Coordinates of enforced vertex
49   typedef sequence<double,3> TEnfVertexCoords;
50   // List of coords
51   typedef sequence<TEnfVertexCoords> TEnfVertexCoordsList;
52   
53   // Enforced vertex
54   struct TEnfVertex {
55     TEnfName name;
56     TEntry geomEntry;
57     TEnfVertexCoords coords;
58     TEnfGroupName grpName;
59     TEntryList faceEntries;
60   };
61   // List of enforced vertices
62   typedef sequence<TEnfVertex> TEnfVertexList;
63
64   // Map Face Entry / List of enforced vertices
65   struct TFaceEntryEnfVertexListMapElement {
66     TEntry faceEntry;
67     TEnfVertexList enfVertexList;
68   };
69   typedef sequence<TFaceEntryEnfVertexListMapElement> TFaceEntryEnfVertexListMap;
70   
71   // Map Face Entry / List of coords
72   struct TFaceEntryCoordsListMapElement {
73     TEntry faceEntry;
74     TEnfVertexCoordsList coordsList;
75   };
76   typedef sequence<TFaceEntryCoordsListMapElement> TFaceEntryCoordsListMap;
77   
78   // Map Face Entry / List of enf vertex entries
79   struct TFaceEntryEnfVertexEntryListMapElement {
80     TEntry faceEntry;
81     TEntryList enfVertexEntryList;
82   };
83   typedef sequence<TFaceEntryEnfVertexEntryListMapElement> TFaceEntryEnfVertexEntryListMap;
84   
85   // Map Coords / Enforced vertex
86   struct TCoordsEnfVertexElement {
87     TEnfVertexCoords coords;
88     TEnfVertex enfVertex;
89   };
90   typedef sequence<TCoordsEnfVertexElement> TCoordsEnfVertexMap;
91   
92   // Map Enf Vertex Entry / Enforced vertex
93   struct TEnfVertexEntryEnfVertexElement {
94     TEntry enfVertexEntry;
95     TEnfVertex enfVertex;
96   };
97   typedef sequence<TEnfVertexEntryEnfVertexElement> TEnfVertexEntryEnfVertexMap;
98
99   // List of Face Entry with internal enforced vertices activated
100   typedef sequence<TEntry> TFaceEntryInternalVerticesList;
101
102   // Attractors
103   struct TAttractorParams {
104     string faceEntry;
105     string attEntry;
106     double startSize;
107     double endSize;
108     double infDist;
109     double constDist;
110   };
111   typedef sequence<TAttractorParams> TAttParamsMap;
112   
113   // Periodicity
114   struct TPreCadPeriodicity {
115     TEntry shape1Entry;
116     TEntry shape2Entry;
117     TEntryList theSourceVerticesEntries;
118     TEntryList theTargetVerticesEntries;
119   };
120   
121   typedef sequence<TPreCadPeriodicity> TPeriodicityList;
122
123   // Hyper-patches
124   typedef sequence<long> THyperPatch;
125   typedef sequence<THyperPatch> THyperPatchList;
126   
127   /*!
128    * BLSURFPlugin_BLSURF: interface of BLSURF algorithm
129    */
130   interface BLSURFPlugin_BLSURF : SMESH::SMESH_2D_Algo
131   {
132   };
133
134   /*!
135    * BLSURFPlugin_Hypothesis: interface of "BLSURF parameters" hypothesis
136    */
137   interface BLSURFPlugin_Hypothesis : SMESH::SMESH_Hypothesis
138   {
139
140     /*!
141      * Sets a way to define size of mesh elements to generate
142      * 0 - size is defined automatically
143      * 1 - size is set by SetPhySize() method
144      * 2 - size is set by SetPhySize() method. A sizemap is defined.
145      */
146     void SetPhysicalMesh(in long isCustom);
147     long GetPhysicalMesh();
148
149     /*!
150      * Sets a way to define maximum angular deflection of mesh from CAD model
151      * 0 - deflection is defined automatically
152      * 1 - deflection is set by SetAngleMesh() method
153      * 2 - deflection is set by SetAngleMesh() method. A sizemap is defined (TODO).
154      */
155     void SetGeometricMesh(in long isCustom);
156     long GetGeometricMesh();
157
158     /*!
159      * Sets size of mesh elements to generate
160      */
161     void SetPhySize(in double size);
162     void SetPhySizeRel(in double size);
163     double GetPhySize();
164     boolean IsPhySizeRel();
165
166     /*!
167      * Sets lower boundary of mesh element size
168      */
169     void SetMinSize(in double theMinSize);
170     void SetMinSizeRel(in double theMinSize);
171     double GetMinSize();
172     boolean IsMinSizeRel();
173
174     /*!
175      * Sets upper boundary of mesh element size
176      */
177     void SetMaxSize(in double theMaxSize);
178     void SetMaxSizeRel(in double theMaxSize);
179     double GetMaxSize();
180     boolean IsMaxSizeRel();
181
182     /*!
183      * Sets maximal allowed ratio between the lengths of two adjacent edges
184      */
185     void SetUseGradation(in boolean toUse);
186     boolean GetUseGradation();
187     void SetGradation(in double ratio);
188     double GetGradation();
189
190     /*!
191      * Sets maximal allowed ratio between the lengths of two adjacent edges in 3D mesh
192      */
193     void SetUseVolumeGradation(in boolean toUse);
194     boolean GetUseVolumeGradation();
195     void SetVolumeGradation(in double ratio);
196     double GetVolumeGradation();
197
198     /*!
199      * Sets to create quadrilateral elements or not
200      */
201     void SetQuadAllowed(in boolean allowed);
202     boolean GetQuadAllowed();
203
204     /*!
205      * Sets angular deflection (in degrees) of a mesh face and edge from CAD surface
206      */
207     void SetAngleMesh(in double angle);
208     double GetAngleMesh();
209
210     /*!
211      * Sets the maximum desired distance between a triangle and its supporting CAD surface
212      */
213     void SetChordalError(in double distance);
214     double GetChordalError();
215
216     /*!
217      * Determines whether the generated mesh will be isotropic or anisotropic
218      */
219     void SetAnisotropic(in boolean anisotropic);
220     boolean GetAnisotropic();
221
222     /*!
223      * Defines the maximum anisotropic ratio of the metric governing the anisotropic process.
224      * The default value of 0 means that the metric (and thus the generated elements) 
225      * can be arbitrarily stretched.
226      */
227     void SetAnisotropicRatio(in double ratio);
228     double GetAnisotropicRatio();
229
230     /*!
231      * This patch-independent correction option can be activated to remove the tiny
232      * (nano) edges from the generated mesh, without taking into account the tags 
233      * (attributes) specifications.
234      */
235     void SetRemoveTinyEdges(in boolean remove);
236     boolean GetRemoveTinyEdges();
237
238     /*!
239      * Defines the minimal length under which an edge is considered to be a tiny one
240      */
241     void SetTinyEdgeLength(in double length);
242     double GetTinyEdgeLength();
243
244     /*!
245      *  This patch-independent correction option can be activated to remove the tiny
246      * edges (defined by the option tiny edge optimisation length) from the generated
247      * mesh when it improves the local mesh quality, without taking into account the
248      * tags (attributes) specifications.
249      */
250     void SetOptimiseTinyEdges(in boolean toOptimise);
251     boolean GetOptimiseTinyEdges();
252
253     /*!
254      * Defines the minimal length under which an edge is considered to be a tiny one
255      * to be optimised out by the optimise tiny edges option
256      */
257     void SetTinyEdgeOptimisationLength(in double length);
258     double GetTinyEdgeOptimisationLength();
259
260     /*!
261      * Activate correction of all surface intersections
262      */
263     void SetCorrectSurfaceIntersection(in boolean toCorrect);
264     boolean GetCorrectSurfaceIntersection();
265
266     /*!
267      * Defines the time the user is ready to spend in the intersection prevention process.
268      * For example, maxCost = 3 means that MeshGems-CADSurf will not spend more time
269      * in the intersection removal process than 3 times the time required to mesh
270      * without processing the intersections.
271      */
272     void SetCorrectSurfaceIntersectionMaxCost(in double maxCost);
273     double GetCorrectSurfaceIntersectionMaxCost();
274
275     /*!
276      * This patch independent correction option can be activated to remove the bad 
277      * elements (often called slivers) from the generated mesh, without taking into account
278      * the tags (attributes) specification.
279      */
280     void SetBadElementRemoval(in boolean remove);
281     boolean GetBadElementRemoval();
282
283     /*!
284      * This parameter defines the aspect ratio triggering the "bad element"
285      * classification for the force bad surface element removal option. 
286      */
287     void SetBadElementAspectRatio(in double ratio);
288     double GetBadElementAspectRatio();
289
290     /*!
291      * If this option is activated, MeshGems-CADSurf will optimize the mesh in order to
292      * get better shaped elements, during a process which respects the patch independent options.
293      * This optimisation cannot be fully performed when correct_surface_intersections = 1.
294      */
295     void SetOptimizeMesh(in boolean optimize);
296     boolean GetOptimizeMesh();
297
298     /*!
299      * Determines the order of mesh elements to be generated (linear or quadratic)
300      */
301     void SetQuadraticMesh(in boolean quadratic);
302     boolean GetQuadraticMesh();
303
304     /*!
305      * Sets topology usage way defining how mesh conformity is assured
306      * value=0 - mesh conformity is assured by conformity of a shape
307      * value=1,2 - mesh conformity is assured by pre-processing a CAD model (OBSOLETE)
308      * value=3 - mesh conformity is assured by pre-processing a CAD model with Pre-CAD
309      */
310     void SetTopology(in long way);
311     long GetTopology();
312
313     /*!
314      * Sets verbosity level in the range 0 to 100.
315      */
316     void SetVerbosity(in short theVal) raises (SALOME::SALOME_Exception);
317     short GetVerbosity();
318
319     /*!
320      * Set enforce_cad_edge_sizes parameter
321      *
322      * Relaxes the given sizemap constraint around CAD edges to allow a better
323      * element quality and a better geometric approximation. It is only useful in 
324      * combination with the gradation option.
325      */
326     void SetEnforceCadEdgesSize( in boolean toEnforce );
327     boolean GetEnforceCadEdgesSize();
328
329     /*!
330      * Set jacobian_rectification_respect_geometry parameter
331      *
332      * While making the mesh quadratic, allows to lose the CAD-mesh associativity in order
333      * to correct elements with nagative Jacobian
334      */
335     void SetJacobianRectificationRespectGeometry( in boolean allowRectification );
336     boolean GetJacobianRectificationRespectGeometry();
337     
338     /*!
339      * Set rectify_jacobian parameter
340      *
341      * While making the mesh quadratic, allow to fix nagative Jacobian surface elements
342      */
343     void SetJacobianRectification( in boolean allowRectification );
344     boolean GetJacobianRectification();
345
346     /*!
347      * Set max_number_of_points_per_patch parameter
348      * 
349      * This parameter controls the maximum amount of points MeshGems-CADSurf is allowed
350      * to generate on a single CAD patch. For an automatic gestion of the memory, one
351      * can set this parameter to 0
352      */
353     void SetMaxNumberOfPointsPerPatch( in long nb ) raises (SALOME::SALOME_Exception);
354     long GetMaxNumberOfPointsPerPatch();
355
356
357     /*!
358      * Set max_number_of_threads parameter
359      *
360      * Set the maximum of threads to use for multithreading mesh computation.
361      */
362     void SetMaxNumberOfThreads( in long nb ) raises (SALOME::SALOME_Exception);
363     long GetMaxNumberOfThreads();
364
365     /*!
366      * Set respect_geometry parameter
367      *
368      *  This patch independent option can be deactivated to allow MeshGems-CADSurf
369      * to lower the geometry accuracy in its patch independent process.
370      */
371     void SetRespectGeometry( in boolean toRespect );
372     boolean GetRespectGeometry();
373
374     /*!
375      * Set tiny_edges_avoid_surface_intersections parameter
376      *
377      * This option defines the priority between the tiny feature
378      * suppression and the surface intersection prevention. 
379      */
380     void SetTinyEdgesAvoidSurfaceIntersections( in boolean toAvoidIntersection );
381     boolean GetTinyEdgesAvoidSurfaceIntersections();
382
383     /*!
384      * Set closed_geometry parameter parameter
385      *
386      *  Describes whether the geometry is expected to be closed or not. 
387      * When activated, this option helps MeshGems-PreCAD to treat the dirtiest geometries.
388      */
389     void SetClosedGeometry( in boolean isClosed );
390     boolean GetClosedGeometry();
391
392     /*!
393      * Set debug parameter
394      *
395      * Make MeshGems-CADSurf will be very verbose and will output some intermediate
396      * files in the working directory. This option is mainly meant for Distene support issues.
397      */
398     void SetDebug( in boolean isDebug );
399     boolean GetDebug();
400
401     /*!
402      * Set periodic_tolerance parameter
403      * 
404      *  This parameter defines the maximum size difference between two periodic edges
405      * and also the maximum distance error between two periodic entities.
406      */
407     void SetPeriodicTolerance( in double tol ) raises (SALOME::SALOME_Exception);
408     double GetPeriodicTolerance() raises (SALOME::SALOME_Exception);
409
410     /*!
411      * Set required_entities parameter
412      *
413      * The required entities control the correction operations. 
414      * Accepted values for this parameter are :
415      * - "respect" : MeshGems-CADSurf is not allowed to alter any required entity, 
416      *             even for correction purposes,
417      * - "ignore" : MeshGems-CADSurf will ignore the required entities in its processing,
418      * - "clear" : MeshGems-CADSurf will clear any required status for the entities. 
419      *           There will not be any entity marked as required in the generated mesh.
420      */
421     void SetRequiredEntities( in string howToTreat ) raises (SALOME::SALOME_Exception);
422     string GetRequiredEntities();
423
424     /*!
425      * Set sewing_tolerance parameter
426      *
427      * This parameter is the tolerance of the assembly.
428      */
429     void SetSewingTolerance( in double tol ) raises (SALOME::SALOME_Exception);
430     double GetSewingTolerance() raises (SALOME::SALOME_Exception);
431
432     /*!
433      * Set tags parameter
434      *
435      *  The tag (attribute) system controls the optimisation process. 
436      *  Accepted values for this parameter are :
437      * - "respect"  : the CAD tags will be preserved and unaltered by the optimisation operations,
438      * - "ignore" : the CAD tags will be ignored by the optimisation operations 
439      *              but they will still be present in the output mesh,
440      * - "clear" : MeshGems-CADSurf will clear any tag on any entity and optimise accordingly. 
441      *             There will not be any tag in the generated mesh.
442      */
443     void SetTags( in string howToTreat ) raises (SALOME::SALOME_Exception);
444     string GetTags();
445
446     /*!
447      * Set hyper-patches
448      */
449     void SetHyperPatches(in THyperPatchList hpl);
450     THyperPatchList GetHyperPatches();
451
452     /*!
453      * To merges edges.
454      */
455     void SetPreCADMergeEdges(in boolean toMergeEdges);
456     boolean GetPreCADMergeEdges();
457
458     /*!
459      * To remove duplicate CAD faces.
460      */
461     void SetPreCADRemoveDuplicateCADFaces(in boolean toRemoveDuplicateCADFaces);
462     boolean GetPreCADRemoveDuplicateCADFaces();
463
464     /*!
465      * To process 3D topology.
466      */
467     void SetPreCADProcess3DTopology(in boolean toProcess);
468     boolean GetPreCADProcess3DTopology();
469
470
471     /*!
472      * To compute topology from scratch
473      */
474     void SetPreCADDiscardInput(in boolean toDiscardInput);
475     boolean GetPreCADDiscardInput();
476
477     /*!
478      * Sets advanced option value
479      */
480     void SetOptionValue(in string optionName,
481                         in string optionValue) raises (SALOME::SALOME_Exception);
482     void SetPreCADOptionValue(in string optionName,
483                         in string optionValue) raises (SALOME::SALOME_Exception);
484     string GetOptionValue(in string optionName) raises (SALOME::SALOME_Exception);
485     string GetPreCADOptionValue(in string optionName) raises (SALOME::SALOME_Exception);
486     /*!
487      * Unsets advanced option
488      */
489     void UnsetOption(in string optionName);
490     void UnsetPreCADOption(in string optionName);
491
492     /*!
493      * Adds custom advanced option and its value
494      */
495     void SetAdvancedOption(in string optionsAndValues) // in a form "option_1 v1 option_2 v2'"
496       raises (SALOME::SALOME_Exception);
497     void AddOption(in string optionName, in string optionValue);
498     void AddPreCADOption(in string optionName, in string optionValue);
499     string GetOption(in string optionName);
500     string GetPreCADOption(in string optionName);
501
502     /*!
503      * Return array of strings each of which is option name concatenated
504      * with option value devided by semicolon - "option_name:option_value:option_type".
505      * Option value is empty if an option is not set.
506      * option_type: 1 if user-define, 0 if default
507      * Note: the method is mostly for interaction with GUI.
508      */
509     string_array GetOptionValues();
510     string_array GetPreCADOptionValues();
511     string_array GetAdvancedOptionValues();
512
513     /*!
514      * Set option values each in the form "option_name[:option_value][:option_type]".
515      * Note: the method is mostly for interaction with GUI.
516      */
517     void SetOptionValues(in string_array options) raises (SALOME::SALOME_Exception);
518     void SetPreCADOptionValues(in string_array options) raises (SALOME::SALOME_Exception);
519     void SetAdvancedOptionValues(in string_array options);
520
521     /*!
522      * SizeMap
523      */
524     void SetSizeMapEntries(in string_array sizeMaps) raises (SALOME::SALOME_Exception);
525     void ClearSizeMaps();
526
527     void UnsetEntry(in string entry);
528
529     /*!
530      * Set/unset a SizeMap on geom object
531      */
532     void         SetSizeMap(in GEOM::GEOM_Object GeomObj, in string sizeMap) raises (SALOME::SALOME_Exception);
533     void         SetConstantSizeMap(in GEOM::GEOM_Object GeomObj, in double sizeMap);
534     void         UnsetSizeMap(in GEOM::GEOM_Object GeomObj);
535     
536     /*!
537      * Set a SizeMap on geom object given by entry
538      */
539     void         SetSizeMapEntry(in string entry, in string sizeMap) raises (SALOME::SALOME_Exception);
540     void         SetConstantSizeMapEntry(in string entry, in GEOM::shape_type shapeType, in double sizeMap) raises (SALOME::SALOME_Exception);
541     string       GetSizeMapEntry(in string entry) raises (SALOME::SALOME_Exception);
542     string_array GetSizeMapEntries();
543
544     /*!
545      * Set/unset an attractor on geom object
546      */
547     void         SetAttractor(in GEOM::GEOM_Object GeomObj, in string attractor);
548     void         UnsetAttractor(in GEOM::GEOM_Object GeomObj);
549     
550     /*!
551      * Set an attractor on geom object given by entry
552      */
553     void         SetAttractorEntry(in string entry, in string attractor) raises (SALOME::SALOME_Exception);
554     string       GetAttractorEntry(in string entry) raises (SALOME::SALOME_Exception);
555     string_array GetAttractorEntries();
556
557     /*!
558      * Set/unset an attractor given as geom object on another geom object
559      */
560     void         SetAttractorGeom(in GEOM::GEOM_Object GeomObj, in GEOM::GEOM_Object AttractorShape, in double StartSize, in double EndSize, in double ActionRadius, in double ConstantRadius);
561     void         UnsetAttractorGeom(in GEOM::GEOM_Object GeomObj, in GEOM::GEOM_Object AttractorShape);
562     void         UnsetAttractorEntry(in string entry, in string attractor);
563
564     /*!
565      * Set an attractor given by entry on a geom object given by entry
566      */
567     void         SetClassAttractorEntry(in string entry, in string att_entry, in double StartSize, in double EndSize, in double ActionRadius, in double ConstantRadius ) raises (SALOME::SALOME_Exception);
568     BLSURFPlugin::TAttParamsMap GetAttractorParams();
569
570 /*
571     void         SetCustomSizeMapEntry(in string entry, in string sizeMap);
572     string       GetCustomSizeMapEntry(in string entry);
573     void         SetCustomSizeMap(in GEOM::GEOM_Object GeomObj, in string sizeMap);
574     void         UnsetCustomSizeMap(in GEOM::GEOM_Object GeomObj);
575     string_array GetCustomSizeMapEntries();
576 */
577     ///////////////////////
578     // ENFORCED VERTEXES //
579     ///////////////////////
580     
581     TFaceEntryEnfVertexListMap      GetAllEnforcedVerticesByFace();
582     TEnfVertexList                  GetAllEnforcedVertices();
583     
584     TFaceEntryCoordsListMap         GetAllCoordsByFace();
585     TCoordsEnfVertexMap             GetAllEnforcedVerticesByCoords();
586     
587     TFaceEntryEnfVertexEntryListMap GetAllEnfVertexEntriesByFace();
588     TEnfVertexEntryEnfVertexMap     GetAllEnforcedVerticesByEnfVertexEntry();
589     
590     void                            ClearAllEnforcedVertices();
591     
592    /*!
593     * Set/get/unset an enforced vertex on geom face
594     */
595     // OBSOLETE
596     boolean SetEnforcedVertex(in GEOM::GEOM_Object theFace, in double x, in double y, in double z) raises (SALOME::SALOME_Exception);
597     boolean SetEnforcedVertexNamed(in GEOM::GEOM_Object theFace, in double x, in double y, in double z, in TEnfName theVertexName) raises (SALOME::SALOME_Exception);
598     boolean SetEnforcedVertexGeom(in GEOM::GEOM_Object theFace, in GEOM::GEOM_Object theVertex) raises (SALOME::SALOME_Exception);
599     boolean SetEnforcedVertexWithGroup(in GEOM::GEOM_Object theFace, in double x, in double y, in double z, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
600     boolean SetEnforcedVertexNamedWithGroup(in GEOM::GEOM_Object theFace, in double x, in double y, in double z, in TEnfName theVertexName, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
601     boolean SetEnforcedVertexGeomWithGroup(in GEOM::GEOM_Object theFace, in GEOM::GEOM_Object theVertex, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
602
603     TEnfVertexList GetEnforcedVertices(in GEOM::GEOM_Object theFace) raises (SALOME::SALOME_Exception);
604     boolean UnsetEnforcedVertex(in GEOM::GEOM_Object theFace, in double x, in double y, in double z) raises (SALOME::SALOME_Exception);
605     boolean UnsetEnforcedVertexGeom(in GEOM::GEOM_Object theFace, in GEOM::GEOM_Object theVertex) raises (SALOME::SALOME_Exception);
606     boolean UnsetEnforcedVertices(in GEOM::GEOM_Object theFace) raises (SALOME::SALOME_Exception);
607     
608     // NEW - no face
609     boolean AddEnforcedVertex(in double x, in double y, in double z) raises (SALOME::SALOME_Exception);
610     boolean AddEnforcedVertexNamed(in double x, in double y, in double z, in TEnfName theVertexName) raises (SALOME::SALOME_Exception);
611     boolean AddEnforcedVertexGeom(in GEOM::GEOM_Object theVertex) raises (SALOME::SALOME_Exception);
612     boolean AddEnforcedVertexWithGroup(in double x, in double y, in double z, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
613     boolean AddEnforcedVertexNamedWithGroup(in double x, in double y, in double z, in TEnfName theVertexName, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
614     boolean AddEnforcedVertexGeomWithGroup(in GEOM::GEOM_Object theVertex, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
615
616     boolean RemoveEnforcedVertex(in double x, in double y, in double z) raises (SALOME::SALOME_Exception);
617     boolean RemoveEnforcedVertexGeom(in GEOM::GEOM_Object theVertex) raises (SALOME::SALOME_Exception);
618     boolean RemoveEnforcedVertices() raises (SALOME::SALOME_Exception);
619
620     /*!
621      * Set/get/unset an enforced vertex on geom face given by entry
622      */
623     boolean SetEnforcedVertexEntry(in TEntry theFaceEntry, in double x, in double y, in double z,
624                                    in TEnfName theVertexName, in TEntry theVertexEntry, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
625
626     TEnfVertexList GetEnforcedVerticesEntry(in TEntry theFaceEntry) raises (SALOME::SALOME_Exception);
627     boolean UnsetEnforcedVertexEntry(in TEntry theFaceEntry, in double x, in double y, in double z, in TEntry theVertexEntry) raises (SALOME::SALOME_Exception);
628 //    boolean UnsetEnforcedVertexEntryGeom(in TEntry theFaceEntry, in TEntry theVertexEntry) raises (SALOME::SALOME_Exception);
629     boolean UnsetEnforcedVerticesEntry(in TEntry theFaceEntry) raises (SALOME::SALOME_Exception);
630
631     /*!
632      * To get/set internal vertices as enforced vertices
633      */
634     void          SetInternalEnforcedVertexAllFaces(in boolean toEnforceInternalVertices);
635     boolean       GetInternalEnforcedVertexAllFaces();
636     void          SetInternalEnforcedVertexAllFacesGroup(in TEnfGroupName groupName);
637     TEnfGroupName GetInternalEnforcedVertexAllFacesGroup();
638
639 //  Enable internal enforced vertices on specific face if requested by user
640 //    void          SetInternalEnforcedVertex(in GEOM::GEOM_Object theFace,in boolean toEnforceInternalVertices) raises (SALOME::SALOME_Exception);
641 //    void          SetInternalEnforcedVertexWithGroup(in GEOM::GEOM_Object theFace, in boolean toEnforceInternalVertices, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
642 //    void          SetInternalEnforcedVertexEntry(in TEntry theFaceEntry, in boolean toEnforceInternalVertices, in TEnfGroupName groupName) raises (SALOME::SALOME_Exception);
643 //    boolean       GetInternalEnforcedVertex(in GEOM::GEOM_Object theFace) raises (SALOME::SALOME_Exception);
644 //    boolean       GetInternalEnforcedVertexEntry(in TEntry theFaceEntry) raises (SALOME::SALOME_Exception);
645 //    TFaceEntryInternalVerticesList GetAllInternalEnforcedVerticesFaces();
646     ///////////////////////
647     
648
649     ///////////////////////
650     // PERIODICITY       //
651     ///////////////////////
652
653     void ClearPreCadPeriodicityVectors();
654     void AddPreCadFacesPeriodicity(in GEOM::GEOM_Object theFace1, in GEOM::GEOM_Object theFace2) raises (SALOME::SALOME_Exception);
655     void AddPreCadFacesPeriodicityWithVertices(in GEOM::GEOM_Object theFace1, in GEOM::GEOM_Object theFace2, in GEOM::ListOfGO theSourceVertices, in GEOM::ListOfGO theTargetVertices) raises (SALOME::SALOME_Exception);
656     void AddPreCadFacesPeriodicityEntry(in TEntry theFace1, in TEntry theFace2, in TEntryList theSourceVertices, in TEntryList theTargetVertices)  raises (SALOME::SALOME_Exception);
657     void AddPreCadEdgesPeriodicity(in GEOM::GEOM_Object theEdge1, in GEOM::GEOM_Object theEdge2) raises (SALOME::SALOME_Exception);
658     void AddPreCadEdgesPeriodicityWithVertices(in GEOM::GEOM_Object theEdge1, in GEOM::GEOM_Object theEdge2, in GEOM::ListOfGO theSourceVertices, in GEOM::ListOfGO theTargetVertices) raises (SALOME::SALOME_Exception);
659     void AddPreCadEdgesPeriodicityEntry(in TEntry theEdge1, in TEntry theEdge2, in TEntryList theSourceVertices, in TEntryList theTargetVertices)  raises (SALOME::SALOME_Exception);
660     TPeriodicityList GetPreCadFacesPeriodicityVector();
661     TPeriodicityList GetPreCadEdgesPeriodicityVector();
662     ///////////////////////
663
664     /*!
665      * Sets the file for export resulting mesh in GMF format
666      */
667 //     void SetGMFFile(in string theFileName, in boolean isBinary);
668     void SetGMFFile(in string theFileName);
669     string GetGMFFile();
670 //     boolean GetGMFFileMode();
671
672     //
673     // Obsolete methods - To be removed in V7
674     //
675     void SetPhyMin(in double theMinSize);
676     double GetPhyMin();
677     void SetPhyMax(in double theMaxSize);
678     double GetPhyMax();
679     void SetGeoMin(in double theMinSize);
680     double GetGeoMin();
681     void SetGeoMax(in double theMaxSize);
682     double GetGeoMax();
683     void SetAngleMeshS(in double angle);
684     double GetAngleMeshS();
685     void SetAngleMeshC(in double angle);
686     double GetAngleMeshC();
687     void SetDecimesh(in boolean toIgnoreEdges);
688     boolean GetDecimesh();
689     void SetPreCADRemoveNanoEdges(in boolean toRemoveNanoEdges);
690     boolean GetPreCADRemoveNanoEdges();
691     void SetPreCADEpsNano(in double epsNano);
692     double GetPreCADEpsNano();
693   };
694 };
695
696 #endif