Salome HOME
Porting to Python 2.6 - add coding page specification for Python scripts
[modules/smesh.git] / idl / SMESH_BasicHypothesis.idl
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SMESH_BasicHypothesis.idl
23 //  Author : Paul RASCLE, EDF
24 //
25 #ifndef _SMESH_BASICHYPOTHESIS_IDL_
26 #define _SMESH_BASICHYPOTHESIS_IDL_
27
28 #include "SALOME_Exception.idl"
29 #include "SMESH_Hypothesis.idl"
30 #include "SMESH_Mesh.idl"
31
32 /*!
33  * StdMeshers: interfaces to standard hypotheses and algorithms
34  */
35 module StdMeshers
36 {
37   /*!
38    * StdMeshers_LocalLength: interface of "Average length" hypothesis
39    */
40   interface StdMeshers_LocalLength : SMESH::SMESH_Hypothesis
41   {
42     /*!
43      * Sets <length> parameter value
44      */
45     void SetLength(in double length)
46       raises (SALOME::SALOME_Exception);
47
48     /*!
49      * Sets <precision> parameter value
50      *
51      * Precision parameter is used to allow rounding a number of segments,
52      * calculated from the edge length and average length of segment,
53      * to the lower integer, if this value outstands from it in bounds of the precision.
54      * Otherwise, the number of segments is rounded to the higher integer.
55      * Use value 0.5 to provide rounding to the nearest integer,
56      * 1.0 for the lower integer, 0.0 for the higher integer.
57      * Default value is 1e-07. In old studies, restored from file,
58      * this value will be set to zero, what corresponds to the old behaviour.
59      */
60     void SetPrecision(in double precision)
61       raises (SALOME::SALOME_Exception);
62
63     /*!
64      * Returns <length> parameter value
65      */
66     double GetLength();
67
68     /*!
69      * Returns <precision> parameter value
70      */
71     double GetPrecision();
72   };
73
74   /*!
75    * StdMeshers_MaxLength: interface of "Max length" hypothesis
76    */
77   interface StdMeshers_MaxLength : SMESH::SMESH_Hypothesis
78   {
79     /*!
80      * Sets <length> parameter value
81      */
82     void SetLength(in double length)
83       raises (SALOME::SALOME_Exception);
84     /*!
85      * Returns <length> parameter value
86      */
87     double GetLength();
88     /*!
89      * Returns true if preestemated length is defined
90      */
91     boolean HavePreestimatedLength();
92     /*!
93      * Returns preestemated length
94      */
95     double GetPreestimatedLength();
96     /*!
97      * Sets preestemated length
98      */
99     void SetPreestimatedLength(in double length);
100     /*!
101      * Sets boolean parameter enabling/desabling usage of length computed
102      * basing on size of bounding box of shape to mesh
103      */
104     void SetUsePreestimatedLength(in boolean toUse);
105     /*!
106      * Returns value of boolean parameter enabling/desabling usage of length computed
107      * basing on size of bounding box of shape to mesh
108      */
109     boolean GetUsePreestimatedLength();
110   };
111
112   /*!
113    * StdMeshers_AutomaticLength: interface of "Automatic length" hypothesis
114    */
115   interface StdMeshers_AutomaticLength : SMESH::SMESH_Hypothesis
116   {
117     /*!
118      * Sets Fineness parameter value
119      */
120     void SetFineness(in double theFineness)
121       raises (SALOME::SALOME_Exception);
122
123     /*!
124      * Returns <Fineness> parameter value
125      */
126     double GetFineness();
127   };
128
129   /*!
130    * StdMeshers_NumberOfSegments: interface of "Nb. Segments" hypothesis
131    */
132   interface StdMeshers_NumberOfSegments : SMESH::SMESH_Hypothesis
133   {
134     /*!
135      * Builds and returns point distribution according to passed density function
136      */
137     SMESH::double_array BuildDistributionExpr( in string func, in long nbSeg, in long conv )
138       raises (SALOME::SALOME_Exception);
139     SMESH::double_array BuildDistributionTab( in SMESH::double_array func, in long nbSeg, in long conv )
140       raises (SALOME::SALOME_Exception);
141   
142     /*!
143      * Sets <number of segments> parameter value
144      */
145     void SetNumberOfSegments(in long segmentsNumber)
146       raises (SALOME::SALOME_Exception);
147
148     /*!
149      * Returns <number of segments> parameter value
150      */
151     long GetNumberOfSegments();
152
153     /*!
154      * Sets <distribution type> parameter value
155      */
156     void SetDistrType(in long typ)
157       raises (SALOME::SALOME_Exception);
158
159     /*!
160      * Returns <distribution type> parameter value
161      */
162     long GetDistrType();
163
164     /*!
165      * Sets <scale factor> parameter value
166      */
167     void SetScaleFactor(in double scaleFactor)
168       raises (SALOME::SALOME_Exception);
169
170     /*!
171      * Returns <scale factor> parameter value
172      */
173     double GetScaleFactor()
174       raises (SALOME::SALOME_Exception);
175
176     /*!
177      * Sets <table function> parameter value for distribution DT_TabFunc
178      */
179     void SetTableFunction(in SMESH::double_array table)
180       raises (SALOME::SALOME_Exception);
181
182     /*!
183      * Returns <table function> parameter value for distribution DT_TabFunc
184      */
185     SMESH::double_array GetTableFunction()
186       raises (SALOME::SALOME_Exception);
187
188     /*!
189      * Sets <expression function> parameter value for distribution DT_ExprFunc
190      */
191     void SetExpressionFunction(in string expr)
192       raises (SALOME::SALOME_Exception);
193
194     /*!
195      * Returns <expression function> parameter value for distribution DT_ExprFunc
196      */
197     string GetExpressionFunction()
198       raises (SALOME::SALOME_Exception);
199
200     /*!
201      * Sets <conversion mode> parameter value for functional distributions
202      */
203     void SetConversionMode(in long conv )
204       raises (SALOME::SALOME_Exception);
205
206     /*!
207      * Returns <conversion mode> parameter value for functional distributions
208      */
209     long ConversionMode()
210       raises (SALOME::SALOME_Exception);
211
212     /*!
213      * Set list of edges to reverse
214      */
215     void SetReversedEdges( in SMESH::long_array list );
216     
217     /*!
218      * Returns list of edges to reverse
219      */
220     SMESH::long_array GetReversedEdges();
221     
222     /*!
223      * Set entry of the main object
224      */
225     void SetObjectEntry( in string entry );
226     
227     /*!
228      * Get the entry of the main object
229      */
230     string GetObjectEntry();
231   };
232
233   /*!
234    * StdMeshers_Arithmetic1D: interface of "Arithmetic 1D" hypothesis
235    */
236   interface StdMeshers_Arithmetic1D : SMESH::SMESH_Hypothesis
237   {
238     /*!
239      * Sets <start segment length> or <end segment length> parameter value
240      * * OBSOLETE *. Avoid such a way of interface design
241      * * It is recommended to dedicate a method to each parameter.
242      */
243     void SetLength(in double length, in boolean isStartLength) 
244       raises (SALOME::SALOME_Exception);
245
246     /*!
247      * Sets <start segment length> parameter value
248      */
249     void SetStartLength(in double length) 
250       raises (SALOME::SALOME_Exception);
251
252     /*!
253      * Sets <end segment length> parameter value
254      */
255     void SetEndLength(in double length)
256       raises (SALOME::SALOME_Exception);
257
258     /*!
259      * Returns <start segment length> or <end segment length> parameter value
260      */
261     double GetLength(in boolean isStartLength);
262     
263     /*!
264      * Set list of edges to reverse
265      */
266     void SetReversedEdges( in SMESH::long_array list );
267     
268     /*!
269      * Returns list of edges to reverse
270      */
271     SMESH::long_array GetReversedEdges();
272     
273     /*!
274      * Set entry of the main object
275      */
276     void SetObjectEntry( in string entry );
277     
278     /*!
279      * Get the entry of the main object
280      */
281     string GetObjectEntry();
282   };
283
284   /*!
285    * StdMeshers_MaxElementArea: interface of "Max. Triangle Area" hypothesis
286    */
287   interface StdMeshers_MaxElementArea : SMESH::SMESH_Hypothesis
288   {
289     /*!
290      * Sets <maximum element area> parameter value
291      */
292     void SetMaxElementArea(in double area) 
293       raises (SALOME::SALOME_Exception);
294
295     /*!
296      * Returns <maximum element area> parameter value
297      */
298     double GetMaxElementArea();
299   };
300
301   /*!
302    * StdMeshers_LengthFromEdges: interface of "Length From Edges (2D Hyp. for Triangulator)" hypothesis
303    */
304   interface StdMeshers_LengthFromEdges : SMESH::SMESH_Hypothesis
305   {
306     /*!
307      * Sets <mode> parameter value
308      */
309     void SetMode(in long mode) 
310       raises (SALOME::SALOME_Exception);
311
312     /*!
313      * Returns <mode> parameter value
314      */
315     long GetMode();
316   };
317
318   /*!
319    * StdMeshers_StartEndLength: interface of "Start and End Length" hypothesis
320    */
321   interface StdMeshers_StartEndLength : SMESH::SMESH_Hypothesis
322   {
323     /*!
324      * Sets <start segment length> or <end segment length> parameter value
325      * * OBSOLETE *. Avoid such a way of interface design.
326      * * It is recommended to dedicate a method to each parameter.
327      */
328     void SetLength(in double length, in boolean isStartLength) 
329       raises (SALOME::SALOME_Exception);
330
331     /*!
332      * Sets <start segment length> parameter value
333      */
334     void SetStartLength(in double length) 
335       raises (SALOME::SALOME_Exception);
336
337     /*!
338      * Sets <end segment length> parameter value
339      */
340     void SetEndLength(in double length)
341       raises (SALOME::SALOME_Exception);
342
343     /*!
344      * Returns <start segment length> or <end segment length> parameter value
345      */
346     double GetLength(in boolean isStartLength);
347
348     /*!
349      * Set list of edges to reverse
350      */
351     void SetReversedEdges( in SMESH::long_array list );
352     
353     /*!
354      * Returns list of edges to reverse
355      */
356     SMESH::long_array GetReversedEdges();
357     
358     /*!
359      * Set entry of the main object
360      */
361     void SetObjectEntry( in string entry );
362     
363     /*!
364      * Get the entry of the main object
365      */
366     string GetObjectEntry();
367   };
368
369
370   /*!
371    * StdMeshers_Deflection1D: interface of "Deflection 1D" hypothesis
372    */
373   interface StdMeshers_Deflection1D : SMESH::SMESH_Hypothesis
374   {
375     /*!
376      * Sets <deflection> parameter value
377      */
378     void SetDeflection(in double deflection)
379       raises (SALOME::SALOME_Exception);
380
381     /*!
382      * Returns <deflection> parameter value
383      */
384     double GetDeflection();
385   };
386
387
388   /*!
389    * StdMeshers_FixedPoints1D: interface of "Fixed points 1D" hypothesis
390    */
391   interface StdMeshers_FixedPoints1D : SMESH::SMESH_Hypothesis
392   {
393     /*!
394      * Sets some points on edge using parameter on curve from 0 to 1
395      * (additionally it is neecessary to check orientation of edges and
396      * create list of reversed edges if it is needed) and sets numbers
397      * of segments between given points (default values are equals 1)
398      */
399     void SetPoints(in SMESH::double_array listParams) 
400       raises (SALOME::SALOME_Exception);
401     void SetNbSegments(in SMESH::long_array listNbSeg) 
402       raises (SALOME::SALOME_Exception);
403
404     /*!
405      * Returns list of point's parameters
406      */
407     SMESH::double_array GetPoints();
408     
409     /*!
410      * Returns list of numbers of segments
411      */
412     SMESH::long_array GetNbSegments();
413     
414     /*!
415      * Set list of edges to reverse
416      */
417     void SetReversedEdges( in SMESH::long_array list );
418     
419     /*!
420      * Returns list of edges to reverse
421      */
422     SMESH::long_array GetReversedEdges();
423     
424     /*!
425      * Set entry of the main object
426      */
427     void SetObjectEntry( in string entry );
428     
429     /*!
430      * Get the entry of the main object
431      */
432     string GetObjectEntry();
433   };
434
435
436   /*!
437    * StdMeshers_MaxElementVolume: interface of "Max. Hexahedron or Tetrahedron Volume" hypothesis
438    */
439   interface StdMeshers_MaxElementVolume : SMESH::SMESH_Hypothesis
440   {
441     /*!
442      * Sets <maximum element volume> parameter value
443      */
444     void SetMaxElementVolume(in double volume) 
445       raises (SALOME::SALOME_Exception);
446
447     /*!
448      * Returns <maximum element volume> parameter value
449      */
450     double GetMaxElementVolume();
451   };
452
453   /*!
454    * StdMeshers_NotConformAllowed: interface of "Not Conform Mesh Allowed" hypothesis.
455    * Presence of this hypothesis permits to algorithm generation of not conform mesh.
456    */
457   interface StdMeshers_NotConformAllowed : SMESH::SMESH_Hypothesis
458   {
459   };
460
461   /*!
462    * StdMeshers_Propagation: interface of "Propagation" hypothesis.
463    * Presence of this hypothesis on any edge propagates any other 1D
464    * hypothesis from this edge on all edges, opposite to it.
465    * It concerns only edges of quadrangle faces.
466    */
467   interface StdMeshers_Propagation : SMESH::SMESH_Hypothesis
468   {
469   };
470
471   /*!
472    * StdMeshers_QuadranglePreference: interface of "QuadranglePreference" hypothesis.
473    * This hypothesis is used by StdMeshers_Quadrangle_2D algorithm.
474    * Presence of this hypothesis forces construction of quadrangles if the number
475    * of nodes on opposite edges is not the same in the case where the global number
476    * of nodes on edges is even
477    */
478   interface StdMeshers_QuadranglePreference : SMESH::SMESH_Hypothesis
479   {
480   };
481
482   /*!
483    * StdMeshers_TrianglePreference: interface of "TrianglePreference" hypothesis.
484    * This hypothesis is used by StdMeshers_Quadrangle_2D algorithm.
485    * Presence of this hypothesis forces construction of triangles in the refinement 
486    * area if the number of nodes on opposite edges is not the same.
487    */
488   interface StdMeshers_TrianglePreference : SMESH::SMESH_Hypothesis
489   {
490   };
491
492   /*!
493    * StdMeshers_QuadraticMesh: interface of "QuadraticMesh" hypothesis.
494    * This is an auxiliary 1D hypothesis whose presence forces construction 
495    * of quadratic edges.
496    * If the 2D mesher sees that all boundary edges are quadratic ones,
497    * it generates quadratic faces, else it generates linear faces using
498    * medium nodes as if they were vertex ones.
499    * The 3D mesher generates quadratic volumes only if all boundary faces
500    * are quadratic ones, else it fails.
501    */
502   interface StdMeshers_QuadraticMesh : SMESH::SMESH_Hypothesis
503   {
504   };
505
506
507   /*!
508    * StdMeshers_NumberOfLayers: interface of "Nb. Layers" hypothesis.
509    * This hypothesis is used by "Radial prism" algorithm.
510    * It specifies number of segments between the internal 
511    * and the external surfaces.
512    */
513   interface StdMeshers_NumberOfLayers : SMESH::SMESH_Hypothesis
514   {
515     /*!
516      * Sets <number of segments> parameter value
517      */
518     void SetNumberOfLayers(in long numberOfLayers) 
519       raises (SALOME::SALOME_Exception);
520
521     /*!
522      * Returns <number of layers> parameter value
523      */
524     long GetNumberOfLayers();
525
526   };
527
528   /*!
529    * StdMeshers_LayerDistribution: interface of "Distribution of Layers" hypothesis.
530    * This hypothesis is used by "Radial prism" algorithm.
531    * It specifies 1D hypothesis defining distribution of segments between the internal 
532    * and the external surfaces.
533    */
534   interface StdMeshers_LayerDistribution : SMESH::SMESH_Hypothesis
535   {
536     /*!
537      * Sets  1D hypothesis specifying distribution of layers
538      */
539     void SetLayerDistribution(in SMESH::SMESH_Hypothesis distributionHyp) 
540       raises (SALOME::SALOME_Exception);
541
542     /*!
543      * Returns 1D hypothesis specifying distribution of layers
544      */
545     SMESH::SMESH_Hypothesis GetLayerDistribution();
546
547   };
548
549   /*!
550    * StdMeshers_NumberOfLayers2D: interface of "Nb. Layers" hypothesis.
551    * This hypothesis is used by "Radial quadrangle" algorithm.
552    * It specifies number of segments between the internal 
553    * and the external surfaces.
554    */
555   interface StdMeshers_NumberOfLayers2D : StdMeshers_NumberOfLayers
556   {
557   };
558
559   /*!
560    * StdMeshers_LayerDistribution2D: interface of "Distribution of Layers" hypothesis.
561    * This hypothesis is used by "Radial quadrangle" algorithm.
562    * It specifies 1D hypothesis defining distribution of segments between the internal 
563    * and the external surfaces.
564    */
565   interface StdMeshers_LayerDistribution2D : StdMeshers_LayerDistribution
566   {
567   };
568
569   /*!
570    * interface of "ProjectionSource1D" hypothesis.
571    * This hypothesis specifies a meshed edge to take a mesh pattern from
572    * and optionally association of vertices between the source edge and a
573    * target one (where a hipothesis is assigned to)
574    */
575   interface StdMeshers_ProjectionSource1D : SMESH::SMESH_Hypothesis
576   {
577     /*!
578      * Sets source <edge> to take a mesh pattern from
579      */
580     void SetSourceEdge(in GEOM::GEOM_Object edge)
581       raises (SALOME::SALOME_Exception);
582
583     /*!
584      * Returns the source edge
585      */
586     GEOM::GEOM_Object GetSourceEdge();
587
588     /*!
589      * Sets source <mesh> to take a mesh pattern from
590      */
591     void SetSourceMesh(in SMESH::SMESH_Mesh mesh);
592
593     /*!
594      * Return source mesh
595      */
596     SMESH::SMESH_Mesh GetSourceMesh();
597
598     /*!
599      * Sets vertex association between the source edge and the target one.
600      * This parameter is optional
601      */
602     void SetVertexAssociation(in GEOM::GEOM_Object sourceVertex,
603                               in GEOM::GEOM_Object targetVertex)
604       raises (SALOME::SALOME_Exception);
605
606     /*!
607      * Returns the vertex associated with the target vertex.
608      * Result may be nil if association not set
609      */
610     GEOM::GEOM_Object  GetSourceVertex();
611
612     /*!
613      * Returns the vertex associated with the source vertex.
614      * Result may be nil if association not set
615      */
616     GEOM::GEOM_Object  GetTargetVertex();
617   };
618
619   /*!
620    * interface of "ProjectionSource2D" hypothesis.
621    * This hypothesis specifies a meshed face to take a mesh pattern from
622    * and optionally association of vertices between the source face and a
623    * target one (where a hipothesis is assigned to)
624    */
625   interface StdMeshers_ProjectionSource2D : SMESH::SMESH_Hypothesis
626   {
627     /*!
628      * Sets a source <face> to take a mesh pattern from
629      */
630     void SetSourceFace(in GEOM::GEOM_Object face)
631       raises (SALOME::SALOME_Exception);
632
633     /*!
634      * Returns the source face
635      */
636     GEOM::GEOM_Object GetSourceFace();
637
638     /*!
639      * Sets source <mesh> to take a mesh pattern from
640      */
641     void SetSourceMesh(in SMESH::SMESH_Mesh mesh);
642
643     /*!
644      * Return source mesh
645      */
646     SMESH::SMESH_Mesh GetSourceMesh();
647
648     /*!
649      * Sets vertex association between the source face and the target one.
650      * This parameter is optional.
651      * Two vertices must belong to one edge of a face
652      */
653     void SetVertexAssociation(in GEOM::GEOM_Object sourceVertex1,
654                               in GEOM::GEOM_Object sourceVertex2,
655                               in GEOM::GEOM_Object targetVertex1,
656                               in GEOM::GEOM_Object targetVertex2)
657       raises (SALOME::SALOME_Exception);
658
659     /*!
660      * Returns the <i>-th source vertex associated with the <i>-th target vertex.
661      * Result may be nil if association not set.
662      * Valid indices are 1 and 2
663      */
664     GEOM::GEOM_Object  GetSourceVertex(in long i)
665       raises (SALOME::SALOME_Exception);
666
667     /*!
668      * Returns the <i>-th target vertex associated with the <i>-th source vertex.
669      * Result may be nil if association not set.
670      * Valid indices are 1 and 2
671      */
672     GEOM::GEOM_Object  GetTargetVertex(in long i)
673       raises (SALOME::SALOME_Exception);
674   };
675
676   /*!
677    * interface of "ProjectionSource3D" hypothesis.
678    * This hypothesis specifies a meshed shell or solid to take a mesh pattern from
679    * and optionally association of vertices between the source shape and a
680    * target one (where a hipothesis is assigned to)
681    */
682   interface StdMeshers_ProjectionSource3D : SMESH::SMESH_Hypothesis
683   {
684     /*!
685      * Sets a source <shape> to take a mesh pattern from
686      */
687     void SetSource3DShape(in GEOM::GEOM_Object shape)
688       raises (SALOME::SALOME_Exception);
689
690     /*!
691      * Returns the source shape
692      */
693     GEOM::GEOM_Object GetSource3DShape();
694
695     /*!
696      * Sets source <mesh> to take a mesh pattern from
697      */
698     void SetSourceMesh(in SMESH::SMESH_Mesh mesh);
699
700     /*!
701      * Return source mesh
702      */
703     SMESH::SMESH_Mesh GetSourceMesh();
704
705     /*!
706      * Sets vertex association between the source shape and the target one.
707      * This parameter is optional.
708      * Two vertices must belong to one edge of a shape
709      */
710     void SetVertexAssociation(in GEOM::GEOM_Object sourceVertex1,
711                               in GEOM::GEOM_Object sourceVertex2,
712                               in GEOM::GEOM_Object targetVertex1,
713                               in GEOM::GEOM_Object targetVertex2)
714       raises (SALOME::SALOME_Exception);
715
716     /*!
717      * Returns the <i>-th source vertex associated with the <i>-th target vertex.
718      * Result may be nil if association not set.
719      * Valid indices are 1 and 2
720      */
721     GEOM::GEOM_Object  GetSourceVertex(in long i)
722       raises (SALOME::SALOME_Exception);
723
724     /*!
725      * Returns the <i>-th target vertex associated with the <i>-th source vertex.
726      * Result may be nil if association not set.
727      * Valid indices are 1 and 2
728      */
729     GEOM::GEOM_Object  GetTargetVertex(in long i)
730       raises (SALOME::SALOME_Exception);
731   };
732
733   /*!
734    * interface of "SegmentLengthAroundVertex" hypothesis.
735    * This hypothesis specifies length of segments adjacent to the vertex the
736    * hypothesis is assigned to
737    */
738   interface StdMeshers_SegmentLengthAroundVertex : SMESH::SMESH_Hypothesis
739   {
740     /*!
741      * Sets <length> parameter value
742      */
743     void SetLength(in double length)
744       raises (SALOME::SALOME_Exception);
745
746     /*!
747      * Returns <length> parameter value
748      */
749     double GetLength();
750   };
751
752   /*!
753    * StdMeshers_QuadrangleParams: interface of "Quadrangle Params" hypothesis
754    */
755   interface StdMeshers_QuadrangleParams : SMESH::SMESH_Hypothesis
756   {
757     /*!
758      * Set base vertex for triangles
759      */
760     void SetTriaVertex( in long vertID );
761     
762     /*!
763      * Returns base vertex for triangles
764      */
765     long GetTriaVertex();
766     
767     /*!
768      * Set entry of the main object
769      */
770     void SetObjectEntry( in string entry );
771     
772     /*!
773      * Get the entry of the main object
774      */
775     string GetObjectEntry();
776   };
777
778   /*!
779    * StdMeshers_SegmentAroundVertex_0D: interface of "SegmentAroundVertex" algorithm
780    */
781   interface StdMeshers_SegmentAroundVertex_0D : SMESH::SMESH_0D_Algo
782   {
783   };
784
785   /*!
786    * StdMeshers_Regular_1D: interface of "Wire discretisation" algorithm
787    */
788   interface StdMeshers_Regular_1D : SMESH::SMESH_1D_Algo
789   {
790   };
791
792   /*!
793    * StdMeshers_CompositeSegment_1D: interface of "Composite side discretisation" algorithm
794    */
795   interface StdMeshers_CompositeSegment_1D : SMESH::SMESH_1D_Algo
796   {
797   };
798
799   /*!
800    * StdMeshers_MEFISTO_2D: interface of "Triangle (Mefisto)" algorithm
801    */
802   interface StdMeshers_MEFISTO_2D : SMESH::SMESH_2D_Algo
803   {
804   };
805
806   /*!
807    * StdMeshers_Quadrangle_2D: interface of "Quadrangle (Mapping)" algorithm
808    */
809   interface StdMeshers_Quadrangle_2D : SMESH::SMESH_2D_Algo
810   {
811   };
812
813   /*!
814    * StdMeshers_Hexa_3D: interface of "Hexahedron (i,j,k)" algorithm
815    */
816   interface StdMeshers_Hexa_3D : SMESH::SMESH_3D_Algo
817   {
818   };
819
820   /*!
821    * StdMeshers_Prism_3D: interface of "3D extrusion" algorithm
822    */
823   interface StdMeshers_Prism_3D : SMESH::SMESH_3D_Algo
824   {
825   };
826
827   /*!
828    * StdMeshers_RadialPrism_3D: interface of "Radial Prism" algorithm
829    */
830   interface StdMeshers_RadialPrism_3D : SMESH::SMESH_3D_Algo
831   {
832   };
833
834   /*!
835    * StdMeshers_Projection_3D: interface of "Projection 3D" algorithm
836    */
837   interface StdMeshers_Projection_3D : SMESH::SMESH_3D_Algo
838   {
839   };
840
841   /*!
842    * StdMeshers_Projection_2D: interface of "Projection 2D" algorithm
843    */
844   interface StdMeshers_Projection_2D : SMESH::SMESH_2D_Algo
845   {
846   };
847
848   /*!
849    * StdMeshers_Projection_1D: interface of "Projection 1D" algorithm
850    */
851   interface StdMeshers_Projection_1D : SMESH::SMESH_1D_Algo
852   {
853   };
854
855   /*!
856    * StdMeshers_UseExisting_2D: interface of "UseExisting 2D" algorithm
857    * doing nothing to allow mesh generation by mesh edition functions in TUI mode
858    */
859   interface StdMeshers_UseExisting_2D : SMESH::SMESH_2D_Algo
860   {
861   };
862
863   /*!
864    * StdMeshers_UseExisting_1D: interface of "UseExisting 1D" algorithm
865    * doing nothing to allow mesh generation by mesh edition functions in TUI mode
866    */
867   interface StdMeshers_UseExisting_1D : SMESH::SMESH_1D_Algo
868   {
869   };
870
871   /*!
872    * StdMeshers_RadialQuadrangle_1D2D: interface of "Radial quadrangle" algorithm
873    */
874   interface StdMeshers_RadialQuadrangle_1D2D : SMESH::SMESH_2D_Algo
875   {
876   };
877
878 };
879
880 #endif