Salome HOME
Win32 compilation.
[plugins/blsurfplugin.git] / src / BLSURFPlugin / BLSURFPlugin_Hypothesis.cxx
1 // Copyright (C) 2007-2013  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.
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_Hypothesis.cxx
22 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA) & Lioka RAZAFINDRAZAKA (CEA)
23 //           & Aurelien ALLEAUME (DISTENE)
24 //           Size maps development: Nicolas GEIMER (OCC) & Gilles DAVID (EURIWARE)
25 // ---
26 //
27 #include "BLSURFPlugin_Hypothesis.hxx"
28 #include "BLSURFPlugin_Attractor.hxx"
29 #include "SMESH_Gen_i.hxx"
30 #include <utilities.h>
31 #include <cstring>
32 #include <iostream>
33 #include <sstream>
34
35 // cascade include
36 #include "ShapeAnalysis.hxx"
37
38 // CORBA includes
39 #include CORBA_CLIENT_HEADER(SALOMEDS)
40 #include CORBA_CLIENT_HEADER(GEOM_Gen)
41
42 //=============================================================================
43 BLSURFPlugin_Hypothesis::BLSURFPlugin_Hypothesis(int hypId, int studyId, SMESH_Gen * gen) :
44   SMESH_Hypothesis(hypId, studyId, gen), 
45   _physicalMesh(GetDefaultPhysicalMesh()),
46   _geometricMesh(GetDefaultGeometricMesh()),
47   _phySize(GetDefaultPhySize()),
48   _phySizeRel(GetDefaultPhySizeRel()),
49   _minSize(GetDefaultMinSize()),
50   _minSizeRel(GetDefaultMinSizeRel()),
51   _maxSize(GetDefaultMaxSize()),
52   _maxSizeRel(GetDefaultMaxSizeRel()),
53   _gradation(GetDefaultGradation()),
54   _quadAllowed(GetDefaultQuadAllowed()),
55   _angleMesh(GetDefaultAngleMesh()),
56   _chordalError(GetDefaultChordalError()), 
57   _anisotropic(GetDefaultAnisotropic()),
58   _anisotropicRatio(GetDefaultAnisotropicRatio()),
59   _removeTinyEdges(GetDefaultRemoveTinyEdges()),
60   _tinyEdgeLength(GetDefaultTinyEdgeLength()),
61   _badElementRemoval(GetDefaultBadElementRemoval()),
62   _badElementAspectRatio(GetDefaultBadElementAspectRatio()),
63   _optimizeMesh(GetDefaultOptimizeMesh()),
64   _quadraticMesh(GetDefaultQuadraticMesh()),
65   _verb(GetDefaultVerbosity()),
66   _topology(GetDefaultTopology()),
67   _preCADMergeEdges(GetDefaultPreCADMergeEdges()),
68   _preCADProcess3DTopology(GetDefaultPreCADProcess3DTopology()),
69   _preCADDiscardInput(GetDefaultPreCADDiscardInput()),
70   _sizeMap(GetDefaultSizeMap()),
71   _attractors(GetDefaultSizeMap()),
72   _classAttractors(GetDefaultAttractorMap()),
73   _faceEntryEnfVertexListMap(GetDefaultFaceEntryEnfVertexListMap()),
74   _enfVertexList(GetDefaultEnfVertexList()),
75   _faceEntryCoordsListMap(GetDefaultFaceEntryCoordsListMap()),
76   _coordsEnfVertexMap(GetDefaultCoordsEnfVertexMap()),
77   _faceEntryEnfVertexEntryListMap(GetDefaultFaceEntryEnfVertexEntryListMap()),
78   _enfVertexEntryEnfVertexMap(GetDefaultEnfVertexEntryEnfVertexMap()),
79   _groupNameNodeIDMap(GetDefaultGroupNameNodeIDMap()),
80   _GMFFileName(GetDefaultGMFFile()),
81   _enforcedInternalVerticesAllFaces(GetDefaultInternalEnforcedVertex()),
82   _preCadFacesPeriodicityVector(GetDefaultPreCadFacesPeriodicityVector()),
83   _preCadEdgesPeriodicityVector(GetDefaultPreCadEdgesPeriodicityVector())
84 {
85   _name = "BLSURF_Parameters";
86   _param_algo_dim = 2;
87   
88 //   _GMFFileMode = false; // GMF ascii mode
89
90   const char* boolOptionNames[] = {         "correct_surface_intersections",            // default = 1
91                                             "create_tag_on_collision",                  // default = 1
92                                             "debug",                                    // default = 0
93                                             "enforce_cad_edge_sizes",                   // default = 0
94                                             "frontal",                                  // ok default = 1
95                                             "jacobian_rectification_respect_geometry",  // default = 1
96                                             "proximity",                                // default = 0
97                                             "rectify_jacobian",                         // default = 1
98                                             "respect_geometry",                         // default = 1
99                                             "" // mark of end
100       };
101
102   const char* intOptionNames[] = {          "hinterpol_flag",                           // ok default = 0
103                                             "hmean_flag",                               // ok default = 0
104                                             "max_number_of_points_per_patch",           // default = 100000
105                                             "prox_nb_layer",                            // detects the volumic proximity of surfaces
106                                             "" // mark of end
107       };
108   const char* doubleOptionNames[] = {       "surface_intersections_processing_max_cost",// default = 15
109                                             "periodic_tolerance",                       // default = diag/100
110                                             "prox_ratio",
111                                             "" // mark of end
112       };
113   const char* charOptionNames[] = {         "required_entities",                        // default = "respect"
114                                             "tags",                                     // default = "respect"
115                                             "" // mark of end
116       };
117
118   // PreCAD advanced options
119   const char* preCADboolOptionNames[] = {   "closed_geometry",                          // default = 0
120                                             "create_tag_on_collision",                  // default = 1
121                                             "debug",                                    // default = 0 
122                                             "remove_tiny_edges",                        // default = 0
123                                             "" // mark of end
124       };
125   const char* preCADintOptionNames[] = {    "manifold_geometry",                        // default = 0
126                                             "" // mark of end
127       };
128   const char* preCADdoubleOptionNames[] = { "periodic_tolerance",                       // default = diag * 1e-5
129                                             "sewing_tolerance",                         // default = diag * 5e-4
130                                             "tiny_edge_length",                         // default = diag * 1e-5
131                                             "" // mark of end
132       };
133   const char* preCADcharOptionNames[] = {   "required_entities",                        // default = "respect"
134                                             "tags",                                     // default = "respect"
135                                             "" // mark of end
136       };
137   
138   int i = 0;
139   while (boolOptionNames[i][0])
140     _option2value[boolOptionNames[i++]].clear();
141   
142   i = 0;
143   while (preCADboolOptionNames[i][0])
144     _preCADoption2value[preCADboolOptionNames[i++]].clear();
145   
146   i = 0;
147   while (intOptionNames[i][0])
148     _option2value[intOptionNames[i++]].clear();
149   
150   i = 0;
151   while (preCADintOptionNames[i][0])
152     _preCADoption2value[preCADintOptionNames[i++]].clear();
153
154   i = 0;
155   while (doubleOptionNames[i][0]) {
156     _doubleOptions.insert(doubleOptionNames[i]);
157     _option2value[doubleOptionNames[i++]].clear();
158   }
159   i = 0;
160   while (preCADdoubleOptionNames[i][0]) {
161     _preCADdoubleOptions.insert(preCADdoubleOptionNames[i]);
162     _preCADoption2value[preCADdoubleOptionNames[i++]].clear();
163   }
164   i = 0;
165   while (charOptionNames[i][0]) {
166     _charOptions.insert(charOptionNames[i]);
167     _option2value[charOptionNames[i++]].clear();
168   }
169   i = 0;
170   while (preCADcharOptionNames[i][0]) {
171     _preCADcharOptions.insert(preCADcharOptionNames[i]);
172     _preCADoption2value[preCADcharOptionNames[i++]].clear();
173   }
174   
175
176       
177   _sizeMap.clear();
178   _attractors.clear();
179   _faceEntryEnfVertexListMap.clear();
180   _enfVertexList.clear();
181   _faceEntryCoordsListMap.clear();
182   _coordsEnfVertexMap.clear();
183   _faceEntryEnfVertexEntryListMap.clear();
184   _enfVertexEntryEnfVertexMap.clear();
185   _groupNameNodeIDMap.clear();
186
187   /* TODO GROUPS
188    _groupNameEnfVertexListMap.clear();
189    _enfVertexGroupNameMap.clear();
190    */
191 }
192
193 TopoDS_Shape BLSURFPlugin_Hypothesis::entryToShape(std::string entry)
194 {
195   MESSAGE("BLSURFPlugin_Hypothesis::entryToShape "<<entry );
196   GEOM::GEOM_Object_var aGeomObj;
197   SMESH_Gen_i* smeshGen_i = SMESH_Gen_i::GetSMESHGen();
198   SALOMEDS::Study_ptr myStudy = smeshGen_i->GetCurrentStudy();
199   
200   TopoDS_Shape S = TopoDS_Shape();
201   SALOMEDS::SObject_var aSObj = myStudy->FindObjectID( entry.c_str() );
202   if (!aSObj->_is_nil() ) {
203     CORBA::Object_var obj = aSObj->GetObject();
204     aGeomObj = GEOM::GEOM_Object::_narrow(obj);
205     aSObj->UnRegister();
206   }
207   if ( !aGeomObj->_is_nil() )
208     S = smeshGen_i->GeomObjectToShape( aGeomObj.in() );
209   return S;
210 }
211
212 //=============================================================================
213 void BLSURFPlugin_Hypothesis::SetPhysicalMesh(PhysicalMesh thePhysicalMesh) {
214   if (thePhysicalMesh != _physicalMesh) {
215     _physicalMesh = thePhysicalMesh;
216     NotifySubMeshesHypothesisModification();
217   }
218 }
219
220 //=============================================================================
221 void BLSURFPlugin_Hypothesis::SetGeometricMesh(GeometricMesh theGeometricMesh) {
222   if (theGeometricMesh != _geometricMesh) {
223     _geometricMesh = theGeometricMesh;
224 //     switch (_geometricMesh) {
225 //       case DefaultGeom:
226 //       default:
227 //         _angleMesh = GetDefaultAngleMesh();
228 //         _gradation = GetDefaultGradation();
229 //         break;
230 //     }
231     NotifySubMeshesHypothesisModification();
232   }
233 }
234
235 //=============================================================================
236 void BLSURFPlugin_Hypothesis::SetPhySize(double theVal, bool isRelative) {
237   if ((theVal != _phySize) || (isRelative != _phySizeRel)) {
238     _phySizeRel = isRelative;
239     if (theVal == 0) {
240       _phySize = GetMaxSize();
241       MESSAGE("Warning: nul physical size is not allowed");
242     }
243     else
244       _phySize = theVal;
245     NotifySubMeshesHypothesisModification();
246   }
247 }
248
249 //=============================================================================
250 void BLSURFPlugin_Hypothesis::SetMinSize(double theMinSize, bool isRelative) {
251   if ((theMinSize != _minSize) || (isRelative != _minSizeRel)) {
252     _minSizeRel = isRelative;
253     _minSize = theMinSize;
254     NotifySubMeshesHypothesisModification();
255   }
256 }
257
258 //=============================================================================
259 void BLSURFPlugin_Hypothesis::SetMaxSize(double theMaxSize, bool isRelative) {
260   if ((theMaxSize != _maxSize) || (isRelative != _maxSizeRel)) {
261     _maxSizeRel = isRelative;
262     _maxSize = theMaxSize;
263     NotifySubMeshesHypothesisModification();
264   }
265 }
266
267 //=============================================================================
268 void BLSURFPlugin_Hypothesis::SetGradation(double theVal) {
269   if (theVal != _gradation) {
270     _gradation = theVal;
271     NotifySubMeshesHypothesisModification();
272   }
273 }
274
275 //=============================================================================
276 void BLSURFPlugin_Hypothesis::SetQuadAllowed(bool theVal) {
277   if (theVal != _quadAllowed) {
278     _quadAllowed = theVal;
279     NotifySubMeshesHypothesisModification();
280   }
281 }
282
283 //=============================================================================
284 void BLSURFPlugin_Hypothesis::SetAngleMesh(double theVal) {
285   if (theVal != _angleMesh) {
286     _angleMesh = theVal;
287     NotifySubMeshesHypothesisModification();
288   }
289 }
290
291 //=============================================================================
292 void BLSURFPlugin_Hypothesis::SetChordalError(double theDistance) {
293   if (theDistance != _chordalError) {
294     _chordalError = theDistance;
295     NotifySubMeshesHypothesisModification();
296   }
297 }
298
299 //=============================================================================
300 void BLSURFPlugin_Hypothesis::SetAnisotropic(bool theVal) {
301   if (theVal != _anisotropic) {
302     _anisotropic = theVal;
303     NotifySubMeshesHypothesisModification();
304   }
305 }
306
307 //=============================================================================
308 void BLSURFPlugin_Hypothesis::SetAnisotropicRatio(double theVal) {
309   if (theVal != _anisotropicRatio) {
310     _anisotropicRatio = theVal;
311     NotifySubMeshesHypothesisModification();
312   }
313 }
314
315 //=============================================================================
316 void BLSURFPlugin_Hypothesis::SetRemoveTinyEdges(bool theVal) {
317   if (theVal != _removeTinyEdges) {
318     _removeTinyEdges = theVal;
319     NotifySubMeshesHypothesisModification();
320   }
321 }
322
323 //=============================================================================
324 void BLSURFPlugin_Hypothesis::SetTinyEdgeLength(double theVal) {
325   if (theVal != _tinyEdgeLength) {
326     _tinyEdgeLength = theVal;
327     NotifySubMeshesHypothesisModification();
328   }
329 }
330
331 //=============================================================================
332 void BLSURFPlugin_Hypothesis::SetBadElementRemoval(bool theVal) {
333   if (theVal != _badElementRemoval) {
334     _badElementRemoval = theVal;
335     NotifySubMeshesHypothesisModification();
336   }
337 }
338
339 //=============================================================================
340 void BLSURFPlugin_Hypothesis::SetBadElementAspectRatio(double theVal) {
341   if (theVal != _badElementAspectRatio) {
342     _badElementAspectRatio = theVal;
343     NotifySubMeshesHypothesisModification();
344   }
345 }
346
347 //=============================================================================
348 void BLSURFPlugin_Hypothesis::SetOptimizeMesh(bool theVal) {
349   if (theVal != _optimizeMesh) {
350     _optimizeMesh = theVal;
351     NotifySubMeshesHypothesisModification();
352   }
353 }
354
355 //=============================================================================
356 void BLSURFPlugin_Hypothesis::SetQuadraticMesh(bool theVal) {
357   if (theVal != _quadraticMesh) {
358     _quadraticMesh = theVal;
359     NotifySubMeshesHypothesisModification();
360   }
361 }
362
363 //=============================================================================
364 void BLSURFPlugin_Hypothesis::SetTopology(Topology theTopology) {
365   if (theTopology != _topology) {
366     _topology = theTopology;
367     NotifySubMeshesHypothesisModification();
368   }
369 }
370
371 //=============================================================================
372 void BLSURFPlugin_Hypothesis::SetVerbosity(int theVal) {
373   if (theVal != _verb) {
374     _verb = theVal;
375     NotifySubMeshesHypothesisModification();
376   }
377 }
378
379 //=============================================================================
380 void BLSURFPlugin_Hypothesis::SetPreCADMergeEdges(bool theVal) {
381   if (theVal != _preCADMergeEdges) {
382 //     SetTopology(PreCAD);
383     _preCADMergeEdges = theVal;
384     NotifySubMeshesHypothesisModification();
385   }
386 }
387
388 //=============================================================================
389 void BLSURFPlugin_Hypothesis::SetPreCADProcess3DTopology(bool theVal) {
390   if (theVal != _preCADProcess3DTopology) {
391 //     SetTopology(PreCAD);
392     _preCADProcess3DTopology = theVal;
393     NotifySubMeshesHypothesisModification();
394   }
395 }
396
397 //=============================================================================
398 void BLSURFPlugin_Hypothesis::SetPreCADDiscardInput(bool theVal) {
399   if (theVal != _preCADDiscardInput) {
400 //     SetTopology(PreCAD);
401     _preCADDiscardInput = theVal;
402     NotifySubMeshesHypothesisModification();
403   }
404 }
405
406 //=============================================================================
407 // void BLSURFPlugin_Hypothesis::SetGMFFile(const std::string& theFileName, bool isBinary)
408 void BLSURFPlugin_Hypothesis::SetGMFFile(const std::string& theFileName)
409 {
410   _GMFFileName = theFileName;
411 //   _GMFFileMode = isBinary;
412   NotifySubMeshesHypothesisModification();
413 }
414
415 //=============================================================================
416 void BLSURFPlugin_Hypothesis::SetOptionValue(const std::string& optionName, const std::string& optionValue)
417     throw (std::invalid_argument) {
418   TOptionValues::iterator op_val = _option2value.find(optionName);
419   if (op_val == _option2value.end()) {
420     std::string msg = "Unknown BLSURF option: '" + optionName + "'";
421     throw std::invalid_argument(msg);
422   }
423   if (op_val->second != optionValue) {
424     const char* ptr = optionValue.c_str();
425     // strip white spaces
426     while (ptr[0] == ' ')
427       ptr++;
428     int i = strlen(ptr);
429     while (i != 0 && ptr[i - 1] == ' ')
430       i--;
431     // check value type
432     bool typeOk = true;
433     std::string typeName;
434     if (i == 0) {
435       // empty string
436     } else if (_charOptions.find(optionName) != _charOptions.end()) {
437       // do not check strings
438     } else if (_doubleOptions.find(optionName) != _doubleOptions.end()) {
439       // check if value is double
440       char * endPtr;
441       strtod(ptr, &endPtr);
442       typeOk = (ptr != endPtr);
443       typeName = "real";
444     } else {
445       // check if value is int
446       char * endPtr;
447       strtol(ptr, &endPtr, 10);
448       typeOk = (ptr != endPtr);
449       typeName = "integer";
450     }
451     if (!typeOk) {
452       std::string msg = "Advanced option '" + optionName + "' = '" + optionValue + "' but must be " + typeName;
453       throw std::invalid_argument(msg);
454     }
455     op_val->second = optionValue;
456     NotifySubMeshesHypothesisModification();
457   }
458 }
459
460 //=============================================================================
461 void BLSURFPlugin_Hypothesis::SetPreCADOptionValue(const std::string& optionName, const std::string& optionValue)
462     throw (std::invalid_argument) {
463   TOptionValues::iterator op_val = _preCADoption2value.find(optionName);
464   if (op_val == _preCADoption2value.end()) {
465     std::string msg = "Unknown BLSURF option: '" + optionName + "'";
466     throw std::invalid_argument(msg);
467   }
468   if (op_val->second != optionValue) {
469     const char* ptr = optionValue.c_str();
470     // strip white spaces
471     while (ptr[0] == ' ')
472       ptr++;
473     int i = strlen(ptr);
474     while (i != 0 && ptr[i - 1] == ' ')
475       i--;
476     // check value type
477     bool typeOk = true;
478     std::string typeName;
479     if (i == 0) {
480       // empty string
481     } else if (_preCADcharOptions.find(optionName) != _preCADcharOptions.end()) {
482       // do not check strings
483     } else if (_preCADdoubleOptions.find(optionName) != _preCADdoubleOptions.end()) {
484       // check if value is double
485       char * endPtr;
486       strtod(ptr, &endPtr);
487       typeOk = (ptr != endPtr);
488       typeName = "real";
489     } else {
490       // check if value is int
491       char * endPtr;
492       strtol(ptr, &endPtr, 10);
493       typeOk = (ptr != endPtr);
494       typeName = "integer";
495     }
496     if (!typeOk) {
497       std::string msg = "PreCAD advanced option '" + optionName + "' = '" + optionValue + "' but must be " + typeName;
498       throw std::invalid_argument(msg);
499     }
500     op_val->second = optionValue;
501     NotifySubMeshesHypothesisModification();
502   }
503 }
504
505 //=============================================================================
506 std::string BLSURFPlugin_Hypothesis::GetOptionValue(const std::string& optionName) throw (std::invalid_argument) {
507   TOptionValues::iterator op_val = _option2value.find(optionName);
508   if (op_val == _option2value.end()) {
509     std::string msg = "Unknown BLSURF option: <";
510     msg += optionName + ">";
511     throw std::invalid_argument(msg);
512   }
513   return op_val->second;
514 }
515
516 //=============================================================================
517 std::string BLSURFPlugin_Hypothesis::GetPreCADOptionValue(const std::string& optionName) throw (std::invalid_argument) {
518   TOptionValues::iterator op_val = _preCADoption2value.find(optionName);
519   if (op_val == _preCADoption2value.end()) {
520     std::string msg = "Unknown PRECAD option: <";
521     msg += optionName + ">";
522     throw std::invalid_argument(msg);
523   }
524   return op_val->second;
525 }
526
527 //=============================================================================
528 void BLSURFPlugin_Hypothesis::ClearOption(const std::string& optionName) {
529   TOptionValues::iterator op_val = _option2value.find(optionName);
530   if (op_val != _option2value.end())
531     op_val->second.clear();
532 }
533
534 //=============================================================================
535 void BLSURFPlugin_Hypothesis::ClearPreCADOption(const std::string& optionName) {
536   TOptionValues::iterator op_val = _preCADoption2value.find(optionName);
537   if (op_val != _preCADoption2value.end())
538     op_val->second.clear();
539 }
540
541 //=======================================================================
542 //function : SetSizeMapEntry
543 //=======================================================================
544 void BLSURFPlugin_Hypothesis::SetSizeMapEntry(const std::string& entry, const std::string& sizeMap) {
545   if (_sizeMap[entry].compare(sizeMap) != 0) {
546     SetPhysicalMesh(PhysicalLocalSize);
547     _sizeMap[entry] = sizeMap;
548     NotifySubMeshesHypothesisModification();
549   }
550 }
551
552 //=======================================================================
553 //function : GetSizeMapEntry
554 //=======================================================================
555 std::string BLSURFPlugin_Hypothesis::GetSizeMapEntry(const std::string& entry) {
556   TSizeMap::iterator it = _sizeMap.find(entry);
557   if (it != _sizeMap.end())
558     return it->second;
559   else
560     return "No_Such_Entry";
561 }
562
563 /*!
564  * \brief Return the size maps
565  */
566 BLSURFPlugin_Hypothesis::TSizeMap BLSURFPlugin_Hypothesis::GetSizeMapEntries(const BLSURFPlugin_Hypothesis* hyp) {
567   return hyp ? hyp->_GetSizeMapEntries() : GetDefaultSizeMap();
568 }
569
570 //=======================================================================
571 //function : SetAttractorEntry
572 //=======================================================================
573 void BLSURFPlugin_Hypothesis::SetAttractorEntry(const std::string& entry, const std::string& attractor) {
574   if (_attractors[entry].compare(attractor) != 0) {
575     SetPhysicalMesh(PhysicalLocalSize);
576     _attractors[entry] = attractor;
577     NotifySubMeshesHypothesisModification();
578   }
579 }
580
581 //=======================================================================
582 //function : GetAttractorEntry
583 //=======================================================================
584 std::string BLSURFPlugin_Hypothesis::GetAttractorEntry(const std::string& entry) {
585   TSizeMap::iterator it = _attractors.find(entry);
586   if (it != _attractors.end())
587     return it->second;
588   else
589     return "No_Such_Entry";
590 }
591
592 /*!
593  * \brief Return the attractors
594  */
595 BLSURFPlugin_Hypothesis::TSizeMap BLSURFPlugin_Hypothesis::GetAttractorEntries(const BLSURFPlugin_Hypothesis* hyp) {
596   return hyp ? hyp->_GetAttractorEntries() : GetDefaultSizeMap();
597 }
598
599 //=======================================================================
600 //function : SetClassAttractorEntry
601 //=======================================================================
602 void BLSURFPlugin_Hypothesis::SetClassAttractorEntry(const std::string& entry, const std::string& attEntry, double StartSize, double EndSize, double ActionRadius, double ConstantRadius)
603 {
604   SetPhysicalMesh(PhysicalLocalSize);
605
606   // The new attractor can't be defined on the same face as another sizemap
607   TSizeMap::iterator it  = _sizeMap.find( entry );
608   if ( it != _sizeMap.end() ) {
609     _sizeMap.erase(it);
610     NotifySubMeshesHypothesisModification();
611   }
612   else {
613     TSizeMap::iterator itAt  = _attractors.find( entry );
614     if ( itAt != _attractors.end() ) {
615       _attractors.erase(itAt);
616       NotifySubMeshesHypothesisModification();
617     }
618   }
619   
620   const TopoDS_Shape AttractorShape = BLSURFPlugin_Hypothesis::entryToShape(attEntry);
621   const TopoDS_Face FaceShape = TopoDS::Face(BLSURFPlugin_Hypothesis::entryToShape(entry));
622   bool attExists = (_classAttractors.find(entry) != _classAttractors.end());
623   double u1,u2,v1,v2, diag;
624   
625   if ( !attExists || (attExists && _classAttractors[entry]->GetAttractorEntry().compare(attEntry) != 0)){ 
626     ShapeAnalysis::GetFaceUVBounds(FaceShape,u1,u2,v1,v2);
627 //     diag = sqrt((u2 - u1) * (u2 - u1) + (v2 - v1) * (v2 - v1));  
628     BLSURFPlugin_Attractor* myAttractor = new BLSURFPlugin_Attractor(FaceShape, AttractorShape, attEntry);//, 0.1 ); // test 0.002 * diag); 
629     myAttractor->BuildMap();
630     myAttractor->SetParameters(StartSize, EndSize, ActionRadius, ConstantRadius);
631     _classAttractors[entry] = myAttractor;
632     NotifySubMeshesHypothesisModification();
633   }
634   else {
635     _classAttractors[entry]->SetParameters(StartSize, EndSize, ActionRadius, ConstantRadius);
636     if (!_classAttractors[entry]->IsMapBuilt()){
637       _classAttractors[entry]->BuildMap();
638     }
639     NotifySubMeshesHypothesisModification();
640   }
641     
642 }
643
644 //=======================================================================
645 //function : SetConstantSizeOnAdjacentFaces
646 //=======================================================================
647 // TODO uncomment and test (include the needed .hxx)
648 // SetConstantSizeOnAdjacentFaces(myShape, att_entry, startSize, endSize = user_size, const_dist  ) {
649 //   TopTools_IndexedMapOfShapListOdShape anEdge2FaceMap;
650 //   TopExp::MapShapesAnAncestors(myShape,TopAbs_EDGE, TopAbs_FACE, anEdge2FaceMap);
651 //   TopTools_IndexedMapOfShapListOdShape::iterator it;
652 //   for (it = anEdge2FaceMap.begin();it != anEdge2FaceMap.end();it++){
653 //       SetClassAttractorEntry((*it).first, att_entry, startSize, endSize, 0, const_dist)
654 //   }
655
656
657
658
659
660
661 //=======================================================================
662 //function : GetClassAttractorEntry
663 //=======================================================================
664 // BLSURFPlugin_Attractor&  BLSURFPlugin_Hypothesis::GetClassAttractorEntry(const std::string& entry)
665 // {
666 //  TAttractorMap::iterator it  = _classAttractors.find( entry );
667 //  if ( it != _classAttractors.end() )
668 //    return it->second;
669 //  else
670 //    return "No_Such_Entry";
671 // }
672 // 
673   /*!
674    * \brief Return the map of attractor instances
675    */
676 BLSURFPlugin_Hypothesis::TAttractorMap BLSURFPlugin_Hypothesis::GetClassAttractorEntries(const BLSURFPlugin_Hypothesis* hyp)
677 {
678     return hyp ? hyp->_GetClassAttractorEntries():GetDefaultAttractorMap();
679 }
680
681 //=======================================================================
682 //function : ClearEntry
683 //=======================================================================
684 void BLSURFPlugin_Hypothesis::ClearEntry(const std::string& entry)
685 {
686  TSizeMap::iterator it  = _sizeMap.find( entry );
687  
688  if ( it != _sizeMap.end() ) {
689    _sizeMap.erase(it);
690    NotifySubMeshesHypothesisModification();
691  }
692  else {
693    TSizeMap::iterator itAt  = _attractors.find( entry );
694    if ( itAt != _attractors.end() ) {
695      _attractors.erase(itAt);
696      NotifySubMeshesHypothesisModification();
697    }
698    else {
699      TAttractorMap::iterator it_clAt = _classAttractors.find( entry );
700      if ( it_clAt != _classAttractors.end() ) {
701        _classAttractors.erase(it_clAt);
702        MESSAGE("_classAttractors.size() = "<<_classAttractors.size())
703        NotifySubMeshesHypothesisModification();
704      }
705      else
706        std::cout<<"No_Such_Entry"<<std::endl;
707    }
708  }
709 }
710
711 //=======================================================================
712 //function : ClearSizeMaps
713 //=======================================================================
714 void BLSURFPlugin_Hypothesis::ClearSizeMaps() {
715   _sizeMap.clear();
716   _attractors.clear();
717   _classAttractors.clear();
718 }
719
720 // Enable internal enforced vertices on specific face if requested by user
721
722 ////=======================================================================
723 ////function : SetInternalEnforcedVertex
724 ////=======================================================================
725 //void BLSURFPlugin_Hypothesis::SetInternalEnforcedVertex(TEntry theFaceEntry,
726 //                                                        bool toEnforceInternalVertices,
727 //                                                        TEnfGroupName theGroupName) {
728
729 //  MESSAGE("BLSURFPlugin_Hypothesis::SetInternalEnforcedVertex("<< theFaceEntry << ", "
730 //      << toEnforceInternalVertices << ", " << theGroupName << ")");
731   
732 //  TFaceEntryInternalVerticesList::iterator it = _faceEntryInternalVerticesList.find(theFaceEntry);
733 //  if (it != _faceEntryInternalVerticesList.end()) {
734 //    if (!toEnforceInternalVertices) {
735 //      _faceEntryInternalVerticesList.erase(it);
736 //    }
737 //  }
738 //  else {
739 //    if (toEnforceInternalVertices) {
740 //      _faceEntryInternalVerticesList.insert(theFaceEntry);
741 //    }
742 //  }
743   
744 //  // TODO
745 //  // Take care of groups
746 //}
747
748
749 //=======================================================================
750 //function : SetEnforcedVertex
751 //=======================================================================
752 bool BLSURFPlugin_Hypothesis::SetEnforcedVertex(TEntry theFaceEntry, TEnfName theVertexName, TEntry theVertexEntry,
753                                                 TEnfGroupName theGroupName, double x, double y, double z) {
754
755   MESSAGE("BLSURFPlugin_Hypothesis::SetEnforcedVertex("<< theFaceEntry << ", "
756       << x << ", " << y << ", " << z << ", " << theVertexName << ", " << theVertexEntry << ", " << theGroupName << ")");
757
758   SetPhysicalMesh(PhysicalLocalSize);
759
760   //  TEnfVertexList::iterator it;
761   bool toNotify = false;
762   bool toCreate = true;
763
764   TEnfVertex *oldEnVertex;
765   TEnfVertex *newEnfVertex = new TEnfVertex();
766   newEnfVertex->name = theVertexName;
767   newEnfVertex->geomEntry = theVertexEntry;
768   newEnfVertex->coords.clear();
769   if (theVertexEntry == "") {
770     newEnfVertex->coords.push_back(x);
771     newEnfVertex->coords.push_back(y);
772     newEnfVertex->coords.push_back(z);
773   }
774   newEnfVertex->grpName = theGroupName;
775   newEnfVertex->faceEntries.clear();
776   newEnfVertex->faceEntries.insert(theFaceEntry);
777   
778   
779   // update _enfVertexList
780   TEnfVertexList::iterator it = _enfVertexList.find(newEnfVertex);
781   if (it != _enfVertexList.end()) {
782     toCreate = false;
783     oldEnVertex = (*it);
784     MESSAGE("Enforced Vertex was found => Update");
785     if (oldEnVertex->name != theVertexName) {
786       MESSAGE("Update name from \"" << oldEnVertex->name << "\" to \"" << theVertexName << "\"");
787       oldEnVertex->name = theVertexName;
788       toNotify = true;
789     }
790     if (oldEnVertex->grpName != theGroupName) {
791       MESSAGE("Update group name from \"" << oldEnVertex->grpName << "\" to \"" << theGroupName << "\"");
792       oldEnVertex->grpName = theGroupName;
793       toNotify = true;
794     }
795     TEntryList::iterator it_faceEntries = oldEnVertex->faceEntries.find(theFaceEntry);
796     if (it_faceEntries == oldEnVertex->faceEntries.end()) {
797       MESSAGE("Update face list by adding \"" << theFaceEntry << "\"");
798       oldEnVertex->faceEntries.insert(theFaceEntry);
799       _faceEntryEnfVertexListMap[theFaceEntry].insert(oldEnVertex);
800       toNotify = true;
801     }
802     if (toNotify) {
803       // update map coords / enf vertex if needed
804       if (oldEnVertex->coords.size()) {
805         _coordsEnfVertexMap[oldEnVertex->coords] = oldEnVertex;
806         _faceEntryCoordsListMap[theFaceEntry].insert(oldEnVertex->coords);
807       }
808
809       // update map geom entry / enf vertex if needed
810       if (oldEnVertex->geomEntry != "") {
811         _enfVertexEntryEnfVertexMap[oldEnVertex->geomEntry] = oldEnVertex;
812         _faceEntryEnfVertexEntryListMap[theFaceEntry].insert(oldEnVertex->geomEntry);
813       }
814     }
815   }
816
817 //   //////// CREATE ////////////
818   if (toCreate) {
819     toNotify = true;
820     MESSAGE("Creating new enforced vertex");
821     _faceEntryEnfVertexListMap[theFaceEntry].insert(newEnfVertex);
822     _enfVertexList.insert(newEnfVertex);
823     if (theVertexEntry == "") {
824       _faceEntryCoordsListMap[theFaceEntry].insert(newEnfVertex->coords);
825       _coordsEnfVertexMap[newEnfVertex->coords] = newEnfVertex;
826     }
827     else {
828       _faceEntryEnfVertexEntryListMap[theFaceEntry].insert(newEnfVertex->geomEntry);
829       _enfVertexEntryEnfVertexMap[newEnfVertex->geomEntry] = newEnfVertex;
830     }
831   }
832
833   if (toNotify)
834     NotifySubMeshesHypothesisModification();
835
836   MESSAGE("BLSURFPlugin_Hypothesis::SetEnforcedVertex END");
837   return toNotify;
838 }
839
840
841 //=======================================================================
842 //function : GetEnforcedVertices
843 //=======================================================================
844
845 BLSURFPlugin_Hypothesis::TEnfVertexList BLSURFPlugin_Hypothesis::GetEnfVertexList(const TEntry& theFaceEntry)
846     throw (std::invalid_argument) {
847
848   if (_faceEntryEnfVertexListMap.count(theFaceEntry) > 0)
849     return _faceEntryEnfVertexListMap[theFaceEntry];
850   else
851     return GetDefaultEnfVertexList();
852
853   std::ostringstream msg;
854   msg << "No enforced vertex for face entry " << theFaceEntry;
855   throw std::invalid_argument(msg.str());
856 }
857
858 //=======================================================================
859 //function : GetEnfVertexCoordsList
860 //=======================================================================
861
862 BLSURFPlugin_Hypothesis::TEnfVertexCoordsList BLSURFPlugin_Hypothesis::GetEnfVertexCoordsList(
863     const TEntry& theFaceEntry) throw (std::invalid_argument) {
864
865   if (_faceEntryCoordsListMap.count(theFaceEntry) > 0)
866     return _faceEntryCoordsListMap[theFaceEntry];
867
868   std::ostringstream msg;
869   msg << "No enforced vertex coords for face entry " << theFaceEntry;
870   throw std::invalid_argument(msg.str());
871 }
872
873 //=======================================================================
874 //function : GetEnfVertexEntryList
875 //=======================================================================
876
877 BLSURFPlugin_Hypothesis::TEntryList BLSURFPlugin_Hypothesis::GetEnfVertexEntryList(const TEntry& theFaceEntry)
878     throw (std::invalid_argument) {
879
880   if (_faceEntryEnfVertexEntryListMap.count(theFaceEntry) > 0)
881     return _faceEntryEnfVertexEntryListMap[theFaceEntry];
882
883   std::ostringstream msg;
884   msg << "No enforced vertex entry for face entry " << theFaceEntry;
885   throw std::invalid_argument(msg.str());
886 }
887
888 //=======================================================================
889 //function : GetEnfVertex(TEnfVertexCoords coords)
890 //=======================================================================
891
892 BLSURFPlugin_Hypothesis::TEnfVertex* BLSURFPlugin_Hypothesis::GetEnfVertex(TEnfVertexCoords coords)
893     throw (std::invalid_argument) {
894
895   if (_coordsEnfVertexMap.count(coords) > 0)
896     return _coordsEnfVertexMap[coords];
897
898   std::ostringstream msg;
899   msg << "No enforced vertex with coords (" << coords[0] << ", " << coords[1] << ", " << coords[2] << ")";
900   throw std::invalid_argument(msg.str());
901 }
902
903 //=======================================================================
904 //function : GetEnfVertex(const TEntry& theEnfVertexEntry)
905 //=======================================================================
906
907 BLSURFPlugin_Hypothesis::TEnfVertex* BLSURFPlugin_Hypothesis::GetEnfVertex(const TEntry& theEnfVertexEntry)
908     throw (std::invalid_argument) {
909
910   if (_enfVertexEntryEnfVertexMap.count(theEnfVertexEntry) > 0)
911     return _enfVertexEntryEnfVertexMap[theEnfVertexEntry];
912
913   std::ostringstream msg;
914   msg << "No enforced vertex with entry " << theEnfVertexEntry;
915   throw std::invalid_argument(msg.str());
916 }
917
918 //Enable internal enforced vertices on specific face if requested by user
919 ////=======================================================================
920 ////function : GetInternalEnforcedVertex
921 ////=======================================================================
922
923 //bool BLSURFPlugin_Hypothesis::GetInternalEnforcedVertex(const TEntry& theFaceEntry)
924 //{
925 //  if (_faceEntryInternalVerticesList.count(theFaceEntry) > 0)
926 //    return true;
927 //  return false;
928 //}
929
930 //=======================================================================
931 //function : ClearEnforcedVertex
932 //=======================================================================
933
934 bool BLSURFPlugin_Hypothesis::ClearEnforcedVertex(const TEntry& theFaceEntry, double x, double y, double z,
935     const TEntry& theVertexEntry) throw (std::invalid_argument) {
936
937   bool toNotify = false;
938   std::ostringstream msg;
939   TEnfVertex *oldEnfVertex;
940   TEnfVertexCoords coords;
941   coords.clear();
942   coords.push_back(x);
943   coords.push_back(y);
944   coords.push_back(z);
945
946   // check that enf vertex with given enf vertex entry exists
947   TEnfVertexEntryEnfVertexMap::iterator it_enfVertexEntry = _enfVertexEntryEnfVertexMap.find(theVertexEntry);
948   if (it_enfVertexEntry != _enfVertexEntryEnfVertexMap.end()) {
949     // Success
950     MESSAGE("Found enforced vertex with geom entry " << theVertexEntry);
951     oldEnfVertex = it_enfVertexEntry->second;
952
953     _enfVertexEntryEnfVertexMap.erase(it_enfVertexEntry);
954
955     TEntryList& enfVertexEntryList = _faceEntryEnfVertexEntryListMap[theFaceEntry];
956     enfVertexEntryList.erase(theVertexEntry);
957     if (enfVertexEntryList.size() == 0)
958       _faceEntryEnfVertexEntryListMap.erase(theFaceEntry);
959     //    TFaceEntryEnfVertexEntryListMap::iterator it_entry_entry = _faceEntryEnfVertexEntryListMap.find(theFaceEntry);
960     //    TEntryList::iterator it_entryList = it_entry_entry->second.find(theVertexEntry);
961     //    it_entry_entry->second.erase(it_entryList);
962     //    if (it_entry_entry->second.size() == 0)
963     //      _faceEntryEnfVertexEntryListMap.erase(it_entry_entry);
964   } else {
965     // Fail
966     MESSAGE("Enforced vertex with geom entry " << theVertexEntry << " not found");
967     msg << "No enforced vertex with geom entry " << theVertexEntry;
968     // check that enf vertex with given coords exists
969     TCoordsEnfVertexMap::iterator it_coords_enf = _coordsEnfVertexMap.find(coords);
970     if (it_coords_enf != _coordsEnfVertexMap.end()) {
971       // Success
972       MESSAGE("Found enforced vertex with coords " << x << ", " << y << ", " << z);
973       oldEnfVertex = it_coords_enf->second;
974
975       _coordsEnfVertexMap.erase(it_coords_enf);
976
977       TEnfVertexCoordsList& enfVertexCoordsList = _faceEntryCoordsListMap[theFaceEntry];
978       enfVertexCoordsList.erase(coords);
979       if (enfVertexCoordsList.size() == 0)
980         _faceEntryCoordsListMap.erase(theFaceEntry);
981       //      TFaceEntryCoordsListMap::iterator it_entry_coords = _faceEntryCoordsListMap.find(theFaceEntry);
982       //      TEnfVertexCoordsList::iterator it_coordsList = it_entry_coords->second.find(coords);
983       //      it_entry_coords->second.erase(it_coordsList);
984       //      if (it_entry_coords->second.size() == 0)
985       //        _faceEntryCoordsListMap.erase(it_entry_coords);
986     } else {
987       // Fail
988       MESSAGE("Enforced vertex with coords " << x << ", " << y << ", " << z << " not found");
989       msg << std::endl;
990       msg << "No enforced vertex at " << x << ", " << y << ", " << z;
991       throw std::invalid_argument(msg.str());
992     }
993   }
994
995   MESSAGE("Remove enf vertex from _enfVertexList");
996
997   // update _enfVertexList
998   TEnfVertexList::iterator it = _enfVertexList.find(oldEnfVertex);
999   if (it != _enfVertexList.end()) {
1000     (*it)->faceEntries.erase(theFaceEntry);
1001     if ((*it)->faceEntries.size() == 0){
1002       _enfVertexList.erase(it);
1003       toNotify = true;
1004     }
1005     MESSAGE("Done");
1006   }
1007
1008   // update _faceEntryEnfVertexListMap
1009   TEnfVertexList& currentEnfVertexList = _faceEntryEnfVertexListMap[theFaceEntry];
1010   currentEnfVertexList.erase(oldEnfVertex);
1011
1012   if (currentEnfVertexList.size() == 0) {
1013     MESSAGE("Remove _faceEntryEnfVertexListMap[" << theFaceEntry <<"]");
1014     _faceEntryEnfVertexListMap.erase(theFaceEntry);
1015     MESSAGE("Done");
1016   }
1017
1018   if (toNotify)
1019     NotifySubMeshesHypothesisModification();
1020
1021   return toNotify;
1022 }
1023
1024 //=======================================================================
1025 //function : ClearEnforcedVertices
1026 //=======================================================================
1027
1028 bool BLSURFPlugin_Hypothesis::ClearEnforcedVertices(const TEntry& theFaceEntry) throw (std::invalid_argument) {
1029
1030   bool toNotify = false;
1031   TEnfVertex *oldEnfVertex;
1032
1033   TFaceEntryCoordsListMap::iterator it_entry_coords = _faceEntryCoordsListMap.find(theFaceEntry);
1034   if (it_entry_coords != _faceEntryCoordsListMap.end()) {
1035     toNotify = true;
1036     TEnfVertexCoordsList coordsList = it_entry_coords->second;
1037     TEnfVertexCoordsList::iterator it_coordsList = coordsList.begin();
1038     for (; it_coordsList != coordsList.end(); ++it_coordsList) {
1039       TEnfVertexCoords coords = (*it_coordsList);
1040       oldEnfVertex = _coordsEnfVertexMap[coords];
1041       _coordsEnfVertexMap.erase(coords);
1042       // update _enfVertexList
1043       TEnfVertexList::iterator it = _enfVertexList.find(oldEnfVertex);
1044       if (it != _enfVertexList.end()) {
1045         (*it)->faceEntries.erase(theFaceEntry);
1046         if ((*it)->faceEntries.size() == 0){
1047           _enfVertexList.erase(it);
1048           toNotify = true;
1049         }
1050         MESSAGE("Done");
1051       }
1052     }
1053     _faceEntryCoordsListMap.erase(it_entry_coords);
1054     _faceEntryEnfVertexListMap.erase(theFaceEntry);
1055   }
1056
1057   TFaceEntryEnfVertexEntryListMap::iterator it_entry_entry = _faceEntryEnfVertexEntryListMap.find(theFaceEntry);
1058   if (it_entry_entry != _faceEntryEnfVertexEntryListMap.end()) {
1059     toNotify = true;
1060     TEntryList enfVertexEntryList = it_entry_entry->second;
1061     TEntryList::iterator it_enfVertexEntryList = enfVertexEntryList.begin();
1062     for (; it_enfVertexEntryList != enfVertexEntryList.end(); ++it_enfVertexEntryList) {
1063       TEntry enfVertexEntry = (*it_enfVertexEntryList);
1064       oldEnfVertex = _enfVertexEntryEnfVertexMap[enfVertexEntry];
1065       _enfVertexEntryEnfVertexMap.erase(enfVertexEntry);
1066       // update _enfVertexList
1067       TEnfVertexList::iterator it = _enfVertexList.find(oldEnfVertex);
1068       if (it != _enfVertexList.end()) {
1069         (*it)->faceEntries.erase(theFaceEntry);
1070         if ((*it)->faceEntries.size() == 0){
1071           _enfVertexList.erase(it);
1072           toNotify = true;
1073         }
1074         MESSAGE("Done");
1075       }
1076     }
1077     _faceEntryEnfVertexEntryListMap.erase(it_entry_entry);
1078     _faceEntryEnfVertexListMap.erase(theFaceEntry);
1079   }
1080
1081   if (toNotify)
1082     NotifySubMeshesHypothesisModification();
1083
1084   return toNotify;
1085   //  std::ostringstream msg;
1086   //  msg << "No enforced vertex for " << theFaceEntry;
1087   //  throw std::invalid_argument(msg.str());
1088 }
1089
1090 //=======================================================================
1091 //function : ClearAllEnforcedVertices
1092 //=======================================================================
1093 void BLSURFPlugin_Hypothesis::ClearAllEnforcedVertices() {
1094   _faceEntryEnfVertexListMap.clear();
1095   _enfVertexList.clear();
1096   _faceEntryCoordsListMap.clear();
1097   _coordsEnfVertexMap.clear();
1098   _faceEntryEnfVertexEntryListMap.clear();
1099   _enfVertexEntryEnfVertexMap.clear();
1100 //  Enable internal enforced vertices on specific face if requested by user
1101 //  _faceEntryInternalVerticesList.clear();
1102   NotifySubMeshesHypothesisModification();
1103 }
1104
1105 //================================================================================
1106 /*!
1107  * \brief Return the enforced vertices
1108  */
1109 //================================================================================
1110
1111
1112 BLSURFPlugin_Hypothesis::TFaceEntryEnfVertexListMap BLSURFPlugin_Hypothesis::GetAllEnforcedVerticesByFace(
1113     const BLSURFPlugin_Hypothesis* hyp) {
1114   return hyp ? hyp->_GetAllEnforcedVerticesByFace() : GetDefaultFaceEntryEnfVertexListMap();
1115 }
1116
1117 //Enable internal enforced vertices on specific face if requested by user
1118 //BLSURFPlugin_Hypothesis::TFaceEntryInternalVerticesList BLSURFPlugin_Hypothesis::GetAllInternalEnforcedVerticesByFace(
1119 //    const BLSURFPlugin_Hypothesis* hyp) {
1120 //  return hyp ? hyp->_GetAllInternalEnforcedVerticesByFace() : GetDefaultFaceEntryInternalVerticesMap();
1121 //}
1122
1123 bool BLSURFPlugin_Hypothesis::GetInternalEnforcedVertexAllFaces(const BLSURFPlugin_Hypothesis* hyp)
1124 {
1125   return hyp ? hyp->_GetInternalEnforcedVertexAllFaces() : GetDefaultInternalEnforcedVertex();
1126 }
1127
1128 BLSURFPlugin_Hypothesis::TEnfGroupName BLSURFPlugin_Hypothesis::GetInternalEnforcedVertexAllFacesGroup(const BLSURFPlugin_Hypothesis* hyp)
1129 {
1130   return hyp ? hyp->_GetInternalEnforcedVertexAllFacesGroup() : BLSURFPlugin_Hypothesis::TEnfGroupName();
1131 }
1132
1133 BLSURFPlugin_Hypothesis::TEnfVertexList BLSURFPlugin_Hypothesis::GetAllEnforcedVertices(
1134     const BLSURFPlugin_Hypothesis* hyp) {
1135   return hyp ? hyp->_GetAllEnforcedVertices() : GetDefaultEnfVertexList();
1136 }
1137
1138 BLSURFPlugin_Hypothesis::TFaceEntryCoordsListMap BLSURFPlugin_Hypothesis::GetAllCoordsByFace(
1139     const BLSURFPlugin_Hypothesis* hyp) {
1140   return hyp ? hyp->_GetAllCoordsByFace() : GetDefaultFaceEntryCoordsListMap();
1141 }
1142
1143 BLSURFPlugin_Hypothesis::TCoordsEnfVertexMap BLSURFPlugin_Hypothesis::GetAllEnforcedVerticesByCoords(
1144     const BLSURFPlugin_Hypothesis* hyp) {
1145   return hyp ? hyp->_GetAllEnforcedVerticesByCoords() : GetDefaultCoordsEnfVertexMap();
1146 }
1147
1148 BLSURFPlugin_Hypothesis::TFaceEntryEnfVertexEntryListMap BLSURFPlugin_Hypothesis::GetAllEnfVertexEntriesByFace(
1149     const BLSURFPlugin_Hypothesis* hyp) {
1150   return hyp ? hyp->_GetAllEnfVertexEntriesByFace() : GetDefaultFaceEntryEnfVertexEntryListMap();
1151 }
1152
1153 BLSURFPlugin_Hypothesis::TEnfVertexEntryEnfVertexMap BLSURFPlugin_Hypothesis::GetAllEnforcedVerticesByEnfVertexEntry(
1154     const BLSURFPlugin_Hypothesis* hyp) {
1155   return hyp ? hyp->_GetAllEnforcedVerticesByEnfVertexEntry() : GetDefaultEnfVertexEntryEnfVertexMap();
1156 }
1157
1158 std::set<int> BLSURFPlugin_Hypothesis::GetEnfVertexNodeIDs(TEnfGroupName theGroupName) throw (std::invalid_argument)
1159 {
1160   TGroupNameNodeIDMap::const_iterator it = _groupNameNodeIDMap.find(theGroupName);
1161   if (it != _groupNameNodeIDMap.end()) {
1162     return it->second;
1163   }
1164   std::ostringstream msg;
1165   msg << "No group " << theGroupName;
1166   throw std::invalid_argument(msg.str());
1167 }
1168
1169 void BLSURFPlugin_Hypothesis::AddEnfVertexNodeID(TEnfGroupName theGroupName,int theNodeID)
1170 {
1171   _groupNameNodeIDMap[theGroupName].insert(theNodeID);
1172 }
1173
1174 void BLSURFPlugin_Hypothesis::RemoveEnfVertexNodeID(TEnfGroupName theGroupName,int theNodeID) throw (std::invalid_argument)
1175 {
1176   TGroupNameNodeIDMap::iterator it = _groupNameNodeIDMap.find(theGroupName);
1177   if (it != _groupNameNodeIDMap.end()) {
1178     std::set<int>::iterator IDit = it->second.find(theNodeID);
1179     if (IDit != it->second.end())
1180       it->second.erase(IDit);
1181     std::ostringstream msg;
1182     msg << "No node IDs " << theNodeID << " for group " << theGroupName;
1183     throw std::invalid_argument(msg.str());
1184   }
1185   std::ostringstream msg;
1186   msg << "No group " << theGroupName;
1187   throw std::invalid_argument(msg.str());
1188 }
1189
1190
1191 //=============================================================================
1192 void BLSURFPlugin_Hypothesis::SetInternalEnforcedVertexAllFaces(bool toEnforceInternalVertices) {
1193   if (toEnforceInternalVertices != _enforcedInternalVerticesAllFaces) {
1194     _enforcedInternalVerticesAllFaces = toEnforceInternalVertices;
1195     if (toEnforceInternalVertices)
1196       SetPhysicalMesh(PhysicalLocalSize);
1197     NotifySubMeshesHypothesisModification();
1198   }
1199 }
1200
1201
1202 //=============================================================================
1203 void BLSURFPlugin_Hypothesis::SetInternalEnforcedVertexAllFacesGroup(BLSURFPlugin_Hypothesis::TEnfGroupName theGroupName) {
1204   if (string(theGroupName) != string(_enforcedInternalVerticesAllFacesGroup)) {
1205     _enforcedInternalVerticesAllFacesGroup = theGroupName;
1206     NotifySubMeshesHypothesisModification();
1207   }
1208 }
1209
1210 //=============================================================================
1211 BLSURFPlugin_Hypothesis::TPreCadPeriodicityVector BLSURFPlugin_Hypothesis::GetPreCadFacesPeriodicityVector(
1212     const BLSURFPlugin_Hypothesis* hyp) {
1213   return hyp ? hyp->_GetPreCadFacesPeriodicityVector() : GetDefaultPreCadFacesPeriodicityVector();
1214 }
1215
1216 //=============================================================================
1217 BLSURFPlugin_Hypothesis::TPreCadPeriodicityVector BLSURFPlugin_Hypothesis::GetPreCadEdgesPeriodicityVector(
1218     const BLSURFPlugin_Hypothesis* hyp) {
1219   return hyp ? hyp->_GetPreCadEdgesPeriodicityVector() : GetDefaultPreCadEdgesPeriodicityVector();
1220 }
1221
1222 //=============================================================================
1223 BLSURFPlugin_Hypothesis::TFacesPeriodicityVector BLSURFPlugin_Hypothesis::GetFacesPeriodicityVector(
1224     const BLSURFPlugin_Hypothesis* hyp) {
1225   return hyp ? hyp->_GetFacesPeriodicityVector() : GetDefaultFacesPeriodicityVector();
1226 }
1227
1228 //=============================================================================
1229 BLSURFPlugin_Hypothesis::TEdgesPeriodicityVector BLSURFPlugin_Hypothesis::GetEdgesPeriodicityVector(
1230     const BLSURFPlugin_Hypothesis* hyp){
1231   return hyp ? hyp->_GetEdgesPeriodicityVector() : GetDefaultEdgesPeriodicityVector();
1232 }
1233
1234 //=============================================================================
1235 BLSURFPlugin_Hypothesis::TVerticesPeriodicityVector BLSURFPlugin_Hypothesis::GetVerticesPeriodicityVector(
1236     const BLSURFPlugin_Hypothesis* hyp){
1237   return hyp ? hyp->_GetVerticesPeriodicityVector() : GetDefaultVerticesPeriodicityVector();
1238 }
1239
1240 //=======================================================================
1241 //function : ClearAllEnforcedVertices
1242 //=======================================================================
1243 void BLSURFPlugin_Hypothesis::ClearPreCadPeriodicityVectors() {
1244   _preCadFacesPeriodicityVector.clear();
1245   _preCadEdgesPeriodicityVector.clear();
1246   NotifySubMeshesHypothesisModification();
1247 }
1248
1249 //=======================================================================
1250 //function : AddPreCadFacesPeriodicity
1251 //=======================================================================
1252 void BLSURFPlugin_Hypothesis::AddPreCadFacesPeriodicity(TEntry theFace1Entry, TEntry theFace2Entry,
1253     vector<string> &theSourceVerticesEntries, vector<string> &theTargetVerticesEntries) {
1254
1255   TPreCadPeriodicity preCadFacesPeriodicity;
1256   preCadFacesPeriodicity.shape1Entry = theFace1Entry;
1257   preCadFacesPeriodicity.shape2Entry = theFace2Entry;
1258   preCadFacesPeriodicity.theSourceVerticesEntries = theSourceVerticesEntries;
1259   preCadFacesPeriodicity.theTargetVerticesEntries = theTargetVerticesEntries;
1260
1261   _preCadFacesPeriodicityVector.push_back(preCadFacesPeriodicity);
1262
1263   NotifySubMeshesHypothesisModification();
1264 }
1265
1266 //=======================================================================
1267 //function : AddPreCadEdgesPeriodicity
1268 //=======================================================================
1269 void BLSURFPlugin_Hypothesis::AddPreCadEdgesPeriodicity(TEntry theEdge1Entry, TEntry theEdge2Entry,
1270     vector<string> &theSourceVerticesEntries, vector<string> &theTargetVerticesEntries) {
1271
1272   TPreCadPeriodicity preCadEdgesPeriodicity;
1273   preCadEdgesPeriodicity.shape1Entry = theEdge1Entry;
1274   preCadEdgesPeriodicity.shape2Entry = theEdge2Entry;
1275   preCadEdgesPeriodicity.theSourceVerticesEntries = theSourceVerticesEntries;
1276   preCadEdgesPeriodicity.theTargetVerticesEntries = theTargetVerticesEntries;
1277
1278   _preCadEdgesPeriodicityVector.push_back(preCadEdgesPeriodicity);
1279
1280   NotifySubMeshesHypothesisModification();
1281 }
1282
1283 //=======================================================================
1284 //function : AddFacePeriodicity
1285 //=======================================================================
1286 void BLSURFPlugin_Hypothesis::AddFacePeriodicity(TEntry theFace1Entry, TEntry theFace2Entry) {
1287
1288   std::pair< TEntry, TEntry > pairOfFacesEntries = std::make_pair(theFace1Entry, theFace2Entry);
1289
1290   _facesPeriodicityVector.push_back(pairOfFacesEntries);
1291
1292   NotifySubMeshesHypothesisModification();
1293 }
1294
1295
1296 //=======================================================================
1297 //function : AddEdgePeriodicity
1298 //=======================================================================
1299 void BLSURFPlugin_Hypothesis::AddEdgePeriodicity(TEntry theFace1Entry, TEntry theEdge1Entry, TEntry theFace2Entry, TEntry theEdge2Entry, int edge_orientation) {
1300
1301   TEdgePeriodicity edgePeriodicity;
1302   edgePeriodicity.theFace1Entry = theFace1Entry;
1303   edgePeriodicity.theEdge1Entry = theEdge1Entry;
1304   edgePeriodicity.theFace2Entry = theFace2Entry;
1305   edgePeriodicity.theEdge2Entry = theEdge2Entry;
1306   edgePeriodicity.edge_orientation = edge_orientation;
1307
1308   _edgesPeriodicityVector.push_back(edgePeriodicity);
1309
1310   NotifySubMeshesHypothesisModification();
1311 }
1312
1313 //=======================================================================
1314 //function : AddVertexPeriodicity
1315 //=======================================================================
1316 void BLSURFPlugin_Hypothesis::AddVertexPeriodicity(TEntry theEdge1Entry, TEntry theVertex1Entry, TEntry theEdge2Entry, TEntry theVertex2Entry) {
1317
1318   TVertexPeriodicity vertexPeriodicity;
1319   vertexPeriodicity.theEdge1Entry = theEdge1Entry;
1320   vertexPeriodicity.theVertex1Entry = theVertex1Entry;
1321   vertexPeriodicity.theEdge2Entry = theEdge2Entry;
1322   vertexPeriodicity.theVertex2Entry = theVertex2Entry;
1323
1324   _verticesPeriodicityVector.push_back(vertexPeriodicity);
1325
1326   NotifySubMeshesHypothesisModification();
1327 }
1328
1329 //=============================================================================
1330 std::ostream & BLSURFPlugin_Hypothesis::SaveTo(std::ostream & save) {
1331    // We must keep at least the same number of arguments when increasing the SALOME version
1332    // When BLSURF becomes CADMESH, some parameters were fused into a single one. Thus the same
1333    // parameter can be written several times to keep the old global number of parameters.
1334
1335    // Treat old options which are now in the advanced options
1336    TOptionValues::iterator op_val;
1337    int _decimesh = -1;
1338    int _preCADRemoveNanoEdges = -1;
1339    double _preCADEpsNano = -1.0;
1340    op_val = _option2value.find("respect_geometry");
1341    if (op_val != _option2value.end()) {
1342      std::string value = op_val->second;
1343      if (!value.empty())
1344        _decimesh = value.compare("1") == 0 ? 1 : 0;
1345    }
1346    op_val = _preCADoption2value.find("remove_tiny_edges");
1347    if (op_val != _preCADoption2value.end()) {
1348      std::string value = op_val->second;
1349      if (!value.empty())
1350        _preCADRemoveNanoEdges = value.compare("1") == 0 ? 1 : 0;
1351    }
1352    op_val = _preCADoption2value.find("tiny_edge_length");
1353    if (op_val != _preCADoption2value.end()) {
1354      std::string value = op_val->second;
1355      if (!value.empty())
1356        _preCADEpsNano = strtod(value.c_str(), NULL);
1357    }
1358    
1359   save << " " << (int) _topology << " " << (int) _physicalMesh << " " << (int) _geometricMesh << " " << _phySize << " "
1360       << _angleMesh << " " << _gradation << " " << (int) _quadAllowed << " " << _decimesh;
1361   save << " " << _minSize << " " << _maxSize << " " << _angleMesh << " " << _minSize << " " << _maxSize << " " << _verb;
1362   save << " " << (int) _preCADMergeEdges << " " << _preCADRemoveNanoEdges << " " << (int) _preCADDiscardInput << " " << _preCADEpsNano ;
1363   save << " " << (int) _enforcedInternalVerticesAllFaces;
1364   save << " " << (int) _phySizeRel << " " << (int) _minSizeRel << " " << (int) _maxSizeRel << " " << _chordalError ;
1365   save << " " << (int) _anisotropic << " " << _anisotropicRatio << " " << (int) _removeTinyEdges << " " << _tinyEdgeLength ;
1366   save << " " << (int) _badElementRemoval << " " << _badElementAspectRatio << " " << (int) _optimizeMesh << " " << (int) _quadraticMesh ;
1367   save << " " << (int) _preCADProcess3DTopology;
1368
1369   op_val = _option2value.begin();
1370   if (op_val != _option2value.end()) {
1371     save << " " << "__OPTIONS_BEGIN__";
1372     for (; op_val != _option2value.end(); ++op_val) {
1373       if (!op_val->second.empty())
1374         save << " " << op_val->first << " " << op_val->second << "%#"; // "%#" is a mark of value end
1375     }
1376     save << " " << "__OPTIONS_END__";
1377   }
1378   
1379   op_val = _preCADoption2value.begin();
1380   if (op_val != _preCADoption2value.end()) {
1381     save << " " << "__PRECAD_OPTIONS_BEGIN__";
1382     for (; op_val != _preCADoption2value.end(); ++op_val) {
1383       if (!op_val->second.empty())
1384         save << " " << op_val->first << " " << op_val->second << "%#"; // "%#" is a mark of value end
1385     }
1386     save << " " << "__PRECAD_OPTIONS_END__";
1387   }
1388
1389   TSizeMap::iterator it_sm = _sizeMap.begin();
1390   if (it_sm != _sizeMap.end()) {
1391     save << " " << "__SIZEMAP_BEGIN__";
1392     for (; it_sm != _sizeMap.end(); ++it_sm) {
1393       save << " " << it_sm->first << " " << it_sm->second << "%#"; // "%#" is a mark of value end
1394     }
1395     save << " " << "__SIZEMAP_END__";
1396   }
1397
1398   TSizeMap::iterator it_at = _attractors.begin();
1399   if (it_at != _attractors.end()) {
1400     save << " " << "__ATTRACTORS_BEGIN__";
1401     for (; it_at != _attractors.end(); ++it_at) {
1402       save << " " << it_at->first << " " << it_at->second << "%#"; // "%#" is a mark of value end
1403     }
1404     save << " " << "__ATTRACTORS_END__";
1405   }
1406   
1407   TAttractorMap::iterator it_At = _classAttractors.begin();
1408   if (it_At != _classAttractors.end()) {
1409     std::ostringstream test;
1410     save << " " << "__NEW_ATTRACTORS_BEGIN__";
1411     test << " " << "__NEW_ATTRACTORS_BEGIN__";
1412     for (; it_At != _classAttractors.end(); ++it_At) {
1413       std::vector<double> attParams;
1414       attParams   = it_At->second->GetParameters();
1415 //       double step = it_At->second->GetStep();
1416       save << " " << it_At->first;
1417       save << " " << it_At->second->GetAttractorEntry();
1418       save << " " << attParams[0]  << " " <<  attParams[1] << " " <<  attParams[2] << " " <<  attParams[3];
1419 //       save << " " << step;
1420       test << " " << it_At->first;
1421       test << " " << it_At->second->GetAttractorEntry();
1422       test << " " << attParams[0]  << " " <<  attParams[1] << " " <<  attParams[2] << " " <<  attParams[3];
1423 //       test << " " << step;
1424     }
1425     save << " " << "__NEW_ATTRACTORS_END__";
1426     test << " " << "__NEW_ATTRACTORS_END__";
1427     MESSAGE(" Attractor hypothesis saved as "<<test.str())
1428   }
1429
1430   TEnfVertexList::const_iterator it_enf = _enfVertexList.begin();
1431   if (it_enf != _enfVertexList.end()) {
1432     save << " " << "__ENFORCED_VERTICES_BEGIN__";
1433     for (; it_enf != _enfVertexList.end(); ++it_enf) {
1434       TEnfVertex *enfVertex = (*it_enf);
1435       save << " " << "__BEGIN_VERTEX__";
1436       if (!enfVertex->name.empty()) {
1437         save << " " << "__BEGIN_NAME__";
1438         save << " " << enfVertex->name;
1439         save << " " << "__END_NAME__";
1440       }
1441       if (!enfVertex->geomEntry.empty()) {
1442         save << " " << "__BEGIN_ENTRY__";
1443         save << " " << enfVertex->geomEntry;
1444         save << " " << "__END_ENTRY__";
1445       }
1446       if (!enfVertex->grpName.empty()) {
1447         save << " " << "__BEGIN_GROUP__";
1448         save << " " << enfVertex->grpName;
1449         save << " " << "__END_GROUP__";
1450       }
1451       if (enfVertex->coords.size()) {
1452         save << " " << "__BEGIN_COORDS__";
1453         for (int i=0;i<enfVertex->coords.size();i++)
1454           save << " " << enfVertex->coords[i];
1455         save << " " << "__END_COORDS__";
1456       }
1457       TEntryList::const_iterator faceEntriesIt = enfVertex->faceEntries.begin();
1458       bool hasFaces = false;
1459       if (faceEntriesIt != enfVertex->faceEntries.end()) {
1460         hasFaces = true;
1461         save << " " << "__BEGIN_FACELIST__";
1462       }
1463       for (; faceEntriesIt != enfVertex->faceEntries.end(); ++faceEntriesIt)
1464         save << " " << (*faceEntriesIt);
1465       if (hasFaces)
1466         save << " " << "__END_FACELIST__";
1467       save << " " << "__END_VERTEX__";
1468     }
1469     save << " " << "__ENFORCED_VERTICES_END__";
1470   }
1471
1472   //PERIODICITY
1473
1474   SavePreCADPeriodicity(save, "FACES");
1475   SavePreCADPeriodicity(save, "EDGES");
1476
1477   SaveFacesPeriodicity(save);
1478   SaveEdgesPeriodicity(save);
1479   SaveVerticesPeriodicity(save);
1480
1481   return save;
1482 }
1483
1484 void BLSURFPlugin_Hypothesis::SaveFacesPeriodicity(std::ostream & save){
1485
1486   TFacesPeriodicityVector::const_iterator it_faces_periodicity = _facesPeriodicityVector.begin();
1487   if (it_faces_periodicity != _facesPeriodicityVector.end()) {
1488     MESSAGE("__FACES_PERIODICITY_BEGIN__");
1489     save << " " << "__FACES_PERIODICITY_BEGIN__";
1490     for (; it_faces_periodicity != _facesPeriodicityVector.end(); ++it_faces_periodicity) {
1491       TFacesPeriodicity periodicity_i = (*it_faces_periodicity);
1492       save << " " << "__BEGIN_PERIODICITY_DESCRIPTION__";
1493       save << " " << "__BEGIN_ENTRY1__";
1494       save << " " << periodicity_i.first;
1495       save << " " << "__END_ENTRY1__";
1496       save << " " << "__BEGIN_ENTRY2__";
1497       save << " " << periodicity_i.second;
1498       save << " " << "__END_ENTRY2__";
1499       save << " " << "__END_PERIODICITY_DESCRIPTION__";
1500     }
1501     save << " " << "__FACES_PERIODICITY_END__";
1502     MESSAGE("__FACES_PERIODICITY_END__");
1503   }
1504 }
1505
1506 void BLSURFPlugin_Hypothesis::SaveEdgesPeriodicity(std::ostream & save){
1507
1508   TEdgesPeriodicityVector::const_iterator it_edges_periodicity = _edgesPeriodicityVector.begin();
1509   if (it_edges_periodicity != _edgesPeriodicityVector.end()) {
1510     save << " " << "__EDGES_PERIODICITY_BEGIN__";
1511     MESSAGE("__EDGES_PERIODICITY_BEGIN__");
1512     for (; it_edges_periodicity != _edgesPeriodicityVector.end(); ++it_edges_periodicity) {
1513       TEdgePeriodicity periodicity_i = (*it_edges_periodicity);
1514       save << " " << "__BEGIN_PERIODICITY_DESCRIPTION__";
1515       if (! periodicity_i.theFace1Entry.empty()){
1516         save << " " << "__BEGIN_FACE1__";
1517         save << " " << periodicity_i.theFace1Entry;
1518         save << " " << "__END_FACE1__";
1519       }
1520       save << " " << "__BEGIN_EDGE1__";
1521       save << " " << periodicity_i.theEdge1Entry;
1522       save << " " << "__END_EDGE1__";
1523       if (! periodicity_i.theFace2Entry.empty()){
1524         save << " " << "__BEGIN_FACE2__";
1525         save << " " << periodicity_i.theFace2Entry;
1526         save << " " << "__END_FACE2__";
1527       }
1528       save << " " << "__BEGIN_EDGE2__";
1529       save << " " << periodicity_i.theEdge2Entry;
1530       save << " " << "__END_EDGE2__";
1531       save << " " << "__BEGIN_EDGE_ORIENTATION__";
1532       save << " " << periodicity_i.edge_orientation;
1533       save << " " << "__END_EDGE_ORIENTATION__";
1534       save << " " << "__END_PERIODICITY_DESCRIPTION__";
1535     }
1536     save << " " << "__EDGES_PERIODICITY_END__";
1537     MESSAGE("__EDGES_PERIODICITY_END__");
1538   }
1539 }
1540
1541 void BLSURFPlugin_Hypothesis::SaveVerticesPeriodicity(std::ostream & save){
1542
1543   TVerticesPeriodicityVector::const_iterator it_vertices_periodicity = _verticesPeriodicityVector.begin();
1544   if (it_vertices_periodicity != _verticesPeriodicityVector.end()) {
1545     MESSAGE("__VERTICES_PERIODICITY_BEGIN__");
1546     save << " " << "__VERTICES_PERIODICITY_BEGIN__";
1547     for (; it_vertices_periodicity != _verticesPeriodicityVector.end(); ++it_vertices_periodicity) {
1548       TVertexPeriodicity periodicity_i = (*it_vertices_periodicity);
1549       save << " " << "__BEGIN_PERIODICITY_DESCRIPTION__";
1550       save << " " << "__BEGIN_EDGE1__";
1551       save << " " << periodicity_i.theEdge1Entry;
1552       save << " " << "__END_EDGE1__";
1553       save << " " << "__BEGIN_VERTEX1__";
1554       save << " " << periodicity_i.theVertex1Entry;
1555       save << " " << "__END_VERTEX1__";
1556       save << " " << "__BEGIN_EDGE2__";
1557       save << " " << periodicity_i.theEdge2Entry;
1558       save << " " << "__END_EDGE2__";
1559       save << " " << "__BEGIN_VERTEX2__";
1560       save << " " << periodicity_i.theVertex2Entry;
1561       save << " " << "__END_VERTEX2__";
1562       save << " " << "__END_PERIODICITY_DESCRIPTION__";
1563     }
1564     save << " " << "__VERTICES_PERIODICITY_END__";
1565     MESSAGE("__VERTICES_PERIODICITY_END__");
1566   }
1567 }
1568
1569 void BLSURFPlugin_Hypothesis::SavePreCADPeriodicity(std::ostream & save, const char* shapeType) {
1570   TPreCadPeriodicityVector precad_periodicity;
1571   if (shapeType == "FACES")
1572     precad_periodicity = _preCadFacesPeriodicityVector;
1573   else
1574     precad_periodicity = _preCadEdgesPeriodicityVector;
1575   TPreCadPeriodicityVector::const_iterator it_precad_periodicity = precad_periodicity.begin();
1576   if (it_precad_periodicity != precad_periodicity.end()) {
1577     save << " " << "__PRECAD_" << shapeType << "_PERIODICITY_BEGIN__";
1578     for (; it_precad_periodicity != precad_periodicity.end(); ++it_precad_periodicity) {
1579       TPreCadPeriodicity periodicity_i = (*it_precad_periodicity);
1580       save << " " << "__BEGIN_PERIODICITY_DESCRIPTION__";
1581       if (!periodicity_i.shape1Entry.empty()) {
1582         save << " " << "__BEGIN_ENTRY1__";
1583         save << " " << periodicity_i.shape1Entry;
1584         save << " " << "__END_ENTRY1__";
1585       }
1586       if (!periodicity_i.shape2Entry.empty()) {
1587         save << " " << "__BEGIN_ENTRY2__";
1588         save << " " << periodicity_i.shape2Entry;
1589         save << " " << "__END_ENTRY2__";
1590       }
1591
1592       std::vector<std::string>::const_iterator sourceVerticesEntriesIt = periodicity_i.theSourceVerticesEntries.begin();
1593       bool hasSourceVertices = false;
1594       if (sourceVerticesEntriesIt != periodicity_i.theSourceVerticesEntries.end()) {
1595         hasSourceVertices = true;
1596         save << " " << "__BEGIN_SOURCE_VERTICES_LIST__";
1597       }
1598       for (; sourceVerticesEntriesIt != periodicity_i.theSourceVerticesEntries.end(); ++sourceVerticesEntriesIt)
1599         save << " " << (*sourceVerticesEntriesIt);
1600       if (hasSourceVertices)
1601         save << " " << "__END_SOURCE_VERTICES_LIST__";
1602
1603       std::vector<std::string>::const_iterator targetVerticesEntriesIt = periodicity_i.theTargetVerticesEntries.begin();
1604       bool hasTargetVertices = false;
1605       if (targetVerticesEntriesIt != periodicity_i.theTargetVerticesEntries.end()) {
1606         hasTargetVertices = true;
1607         save << " " << "__BEGIN_TARGET_VERTICES_LIST__";
1608       }
1609       for (; targetVerticesEntriesIt != periodicity_i.theTargetVerticesEntries.end(); ++targetVerticesEntriesIt)
1610         save << " " << (*targetVerticesEntriesIt);
1611       if (hasTargetVertices)
1612         save << " " << "__END_TARGET_VERTICES_LIST__";
1613
1614       save << " " << "__END_PERIODICITY_DESCRIPTION__";
1615     }
1616     save << " " << "__PRECAD_" << shapeType << "_PERIODICITY_END__";
1617   }
1618
1619 }
1620
1621 //=============================================================================
1622 std::istream & BLSURFPlugin_Hypothesis::LoadFrom(std::istream & load) {
1623   bool isOK = true;
1624   int i;
1625   double val;
1626   std::string option_or_sm;
1627
1628   isOK = (load >> i);
1629   if (isOK)
1630     _topology = (Topology) i;
1631   else
1632     load.clear(std::ios::badbit | load.rdstate());
1633
1634   isOK = (load >> i);
1635   if (isOK)
1636     _physicalMesh = (PhysicalMesh) i;
1637   else
1638     load.clear(std::ios::badbit | load.rdstate());
1639
1640   isOK = (load >> i);
1641   if (isOK)
1642     _geometricMesh = (GeometricMesh) i;
1643   else
1644     load.clear(std::ios::badbit | load.rdstate());
1645
1646   isOK = (load >> val);
1647   if (isOK)
1648     _phySize = val;
1649   else
1650     load.clear(std::ios::badbit | load.rdstate());
1651
1652   isOK = (load >> val);
1653   if (isOK)
1654     _angleMesh = val;
1655   else
1656     load.clear(std::ios::badbit | load.rdstate());
1657
1658   isOK = (load >> val);
1659   if (isOK)
1660     _gradation = val;
1661   else
1662     load.clear(std::ios::badbit | load.rdstate());
1663
1664   isOK = (load >> i);
1665   if (isOK)
1666     _quadAllowed = (bool) i;
1667   else
1668     load.clear(std::ios::badbit | load.rdstate());
1669
1670   isOK = (load >> i);
1671   if (isOK) {
1672     if ( i != -1) { // if value is -1, then this is no longer a standard option
1673       std::string & value = _option2value["respect_geometry"];
1674       bool _decimesh = (bool) i;
1675       value = _decimesh ? "1" : "0";
1676     }
1677   }
1678   else
1679     load.clear(std::ios::badbit | load.rdstate());
1680
1681   isOK = (load >> val);
1682   if (isOK)
1683     _minSize = val;
1684   else
1685     load.clear(std::ios::badbit | load.rdstate());
1686
1687   isOK = (load >> val);
1688   if (isOK)
1689     _maxSize = val;
1690   else
1691     load.clear(std::ios::badbit | load.rdstate());
1692
1693   isOK = (load >> val);
1694   if (isOK)
1695     // former parameter: get min value
1696     _angleMesh = min(val,_angleMesh);
1697   else
1698     load.clear(std::ios::badbit | load.rdstate());
1699
1700   isOK = (load >> val);
1701   if (isOK)
1702     // former parameter: get min value
1703     _minSize = min(val,_minSize);
1704   else
1705     load.clear(std::ios::badbit | load.rdstate());
1706
1707   isOK = (load >> val);
1708   if (isOK)
1709     // former parameter: get max value
1710     _maxSize = max(val,_maxSize);
1711   else
1712     load.clear(std::ios::badbit | load.rdstate());
1713
1714   isOK = (load >> i);
1715   if (isOK)
1716     _verb = i;
1717   else
1718     load.clear(std::ios::badbit | load.rdstate());
1719
1720   isOK = (load >> i);
1721   if (isOK)
1722     _preCADMergeEdges = (bool) i;
1723   else
1724     load.clear(std::ios::badbit | load.rdstate());
1725
1726   isOK = (load >> i);
1727   if (isOK) {
1728     if ( i != -1) { // if value is -1, then this is no longer a standard option
1729       std::string & value = _preCADoption2value["remove_tiny_edges"];
1730       bool _preCADRemoveNanoEdges = (bool) i;
1731       value = _preCADRemoveNanoEdges ? "1" : "0";
1732     }
1733   }
1734   else
1735     load.clear(std::ios::badbit | load.rdstate());
1736
1737   isOK = (load >> i);
1738   if (isOK)
1739     _preCADDiscardInput = (bool) i;
1740   else
1741     load.clear(std::ios::badbit | load.rdstate());
1742
1743   isOK = (load >> val);
1744   if (isOK) { // _preCADEpsNano
1745     if ( (i + 1.0) < 1e-6 ) { // if value is -1, then this is no longer a standard option: get optional value "tiny_edge_length" instead
1746       std::string & value = _preCADoption2value["tiny_edge_length"];
1747       std::ostringstream oss;
1748       oss << i;
1749       value = oss.str();
1750     }
1751   }
1752   else
1753     load.clear(std::ios::badbit | load.rdstate());
1754
1755   isOK = (load >> i);
1756   if (isOK)
1757     _enforcedInternalVerticesAllFaces = (bool) i;
1758   else
1759     load.clear(std::ios::badbit | load.rdstate());
1760
1761   // New options with MeshGems-CADSurf
1762
1763   bool hasCADSurfOptions = false;
1764   bool hasOptions = false;
1765   bool hasPreCADOptions = false;
1766   bool hasSizeMap = false;
1767   bool hasAttractor = false;
1768   bool hasNewAttractor = false;
1769   bool hasEnforcedVertex = false;
1770   bool hasPreCADFacesPeriodicity = false;
1771   bool hasPreCADEdgesPeriodicity = false;
1772   bool hasFacesPeriodicity = false;
1773   bool hasEdgesPeriodicity = false;
1774   bool hasVerticesPeriodicity = false;
1775
1776   isOK = (load >> option_or_sm);
1777   if (isOK)
1778     if ( (option_or_sm == "1")||(option_or_sm == "0") ) {
1779       i = atoi(option_or_sm.c_str());
1780       hasCADSurfOptions = true;
1781       _phySizeRel = (bool) i;
1782     }
1783     if (option_or_sm == "__OPTIONS_BEGIN__")
1784       hasOptions = true;
1785     else if (option_or_sm == "__PRECAD_OPTIONS_BEGIN__")
1786       hasPreCADOptions = true;
1787     else if (option_or_sm == "__SIZEMAP_BEGIN__")
1788       hasSizeMap = true;
1789     else if (option_or_sm == "__ATTRACTORS_BEGIN__")
1790       hasAttractor = true;
1791     else if (option_or_sm == "__NEW_ATTRACTORS_BEGIN__")
1792       hasNewAttractor = true;
1793     else if (option_or_sm == "__ENFORCED_VERTICES_BEGIN__")
1794       hasEnforcedVertex = true;
1795     else if (option_or_sm == "__PRECAD_FACES_PERIODICITY_BEGIN__")
1796       hasPreCADFacesPeriodicity = true;
1797     else if (option_or_sm == "__PRECAD_EDGES_PERIODICITY_BEGIN__")
1798       hasPreCADEdgesPeriodicity = true;
1799     else if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
1800       hasFacesPeriodicity = true;
1801     else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
1802       hasEdgesPeriodicity = true;
1803     else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
1804       hasVerticesPeriodicity = true;
1805
1806   if (isOK && hasCADSurfOptions) {
1807     isOK = (load >> i);
1808     if (isOK)
1809       _minSizeRel = (bool) i;
1810     else
1811       load.clear(std::ios::badbit | load.rdstate());
1812
1813     isOK = (load >> i);
1814     if (isOK)
1815       _maxSizeRel = (bool) i;
1816     else
1817       load.clear(std::ios::badbit | load.rdstate());
1818
1819     isOK = (load >> val);
1820     if (isOK)
1821       _chordalError = val;
1822     else
1823       load.clear(std::ios::badbit | load.rdstate());
1824
1825     isOK = (load >> i);
1826     if (isOK)
1827       _anisotropic = (bool) i;
1828     else
1829       load.clear(std::ios::badbit | load.rdstate());
1830
1831     isOK = (load >> val);
1832     if (isOK)
1833       _anisotropicRatio = val;
1834     else
1835       load.clear(std::ios::badbit | load.rdstate());
1836
1837     isOK = (load >> i);
1838     if (isOK)
1839       _removeTinyEdges = (bool) i;
1840     else
1841       load.clear(std::ios::badbit | load.rdstate());
1842
1843     isOK = (load >> val);
1844     if (isOK)
1845       _tinyEdgeLength = val;
1846     else
1847       load.clear(std::ios::badbit | load.rdstate());
1848
1849     isOK = (load >> i);
1850     if (isOK)
1851       _badElementRemoval = (bool) i;
1852     else
1853       load.clear(std::ios::badbit | load.rdstate());
1854
1855     isOK = (load >> val);
1856     if (isOK)
1857       _badElementAspectRatio = val;
1858     else
1859       load.clear(std::ios::badbit | load.rdstate());
1860
1861     isOK = (load >> i);
1862     if (isOK)
1863       _optimizeMesh = (bool) i;
1864     else
1865       load.clear(std::ios::badbit | load.rdstate());
1866
1867     isOK = (load >> i);
1868     if (isOK)
1869       _quadraticMesh = (bool) i;
1870     else
1871       load.clear(std::ios::badbit | load.rdstate());
1872
1873     isOK = (load >> i);
1874     if (isOK)
1875       _preCADProcess3DTopology = (bool) i;
1876     else
1877       load.clear(std::ios::badbit | load.rdstate());
1878
1879   }
1880   
1881
1882   if (hasCADSurfOptions) {
1883     isOK = (load >> option_or_sm);
1884     if (isOK)
1885       if (option_or_sm == "__OPTIONS_BEGIN__")
1886         hasOptions = true;
1887       else if (option_or_sm == "__PRECAD_OPTIONS_BEGIN__")
1888         hasPreCADOptions = true;
1889       else if (option_or_sm == "__SIZEMAP_BEGIN__")
1890         hasSizeMap = true;
1891       else if (option_or_sm == "__ATTRACTORS_BEGIN__")
1892         hasAttractor = true;
1893       else if (option_or_sm == "__NEW_ATTRACTORS_BEGIN__")
1894         hasNewAttractor = true;
1895       else if (option_or_sm == "__ENFORCED_VERTICES_BEGIN__")
1896         hasEnforcedVertex = true;
1897       else if (option_or_sm == "__PRECAD_FACES_PERIODICITY_BEGIN__")
1898         hasPreCADFacesPeriodicity = true;
1899       else if (option_or_sm == "__PRECAD_EDGES_PERIODICITY_BEGIN__")
1900         hasPreCADEdgesPeriodicity = true;
1901       else if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
1902         hasFacesPeriodicity = true;
1903       else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
1904         hasEdgesPeriodicity = true;
1905       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
1906         hasVerticesPeriodicity = true;
1907   }
1908   
1909   std::string optName, optValue;
1910   while (isOK && hasOptions) {
1911     isOK = (load >> optName);
1912     if (isOK) {
1913       if (optName == "__OPTIONS_END__")
1914         break;
1915       isOK = (load >> optValue);
1916     }
1917     if (isOK) {
1918       std::string & value = _option2value[optName];
1919       value = optValue;
1920       int len = value.size();
1921       // continue reading until "%#" encountered
1922       while (value[len - 1] != '#' || value[len - 2] != '%') {
1923         isOK = (load >> optValue);
1924         if (isOK) {
1925           value += " ";
1926           value += optValue;
1927           len = value.size();
1928         } else {
1929           break;
1930         }
1931       }
1932       value[len - 2] = '\0'; //cut off "%#"
1933     }
1934   }
1935
1936   if (hasOptions) {
1937     isOK = (load >> option_or_sm);
1938     if (isOK)
1939       if (option_or_sm == "__PRECAD_OPTIONS_BEGIN__")
1940         hasPreCADOptions = true;
1941       else if (option_or_sm == "__SIZEMAP_BEGIN__")
1942         hasSizeMap = true;
1943       else if (option_or_sm == "__ATTRACTORS_BEGIN__")
1944         hasAttractor = true;
1945       else if (option_or_sm == "__NEW_ATTRACTORS_BEGIN__")
1946         hasNewAttractor = true;
1947       else if (option_or_sm == "__ENFORCED_VERTICES_BEGIN__")
1948         hasEnforcedVertex = true;
1949       else if (option_or_sm == "__PRECAD_FACES_PERIODICITY_BEGIN__")
1950         hasPreCADFacesPeriodicity = true;
1951       else if (option_or_sm == "__PRECAD_EDGES_PERIODICITY_BEGIN__")
1952         hasPreCADEdgesPeriodicity = true;
1953       else if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
1954         hasFacesPeriodicity = true;
1955       else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
1956         hasEdgesPeriodicity = true;
1957       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
1958         hasVerticesPeriodicity = true;
1959   }
1960
1961   while (isOK && hasPreCADOptions) {
1962     isOK = (load >> optName);
1963     if (isOK) {
1964       if (optName == "__PRECAD_OPTIONS_END__")
1965         break;
1966       isOK = (load >> optValue);
1967     }
1968     if (isOK) {
1969       std::string & value = _preCADoption2value[optName];
1970       value = optValue;
1971       int len = value.size();
1972       // continue reading until "%#" encountered
1973       while (value[len - 1] != '#' || value[len - 2] != '%') {
1974         isOK = (load >> optValue);
1975         if (isOK) {
1976           value += " ";
1977           value += optValue;
1978           len = value.size();
1979         } else {
1980           break;
1981         }
1982       }
1983       value[len - 2] = '\0'; //cut off "%#"
1984     }
1985   }
1986
1987   if (hasPreCADOptions) {
1988     isOK = (load >> option_or_sm);
1989     if (isOK)
1990       if (option_or_sm == "__SIZEMAP_BEGIN__")
1991         hasSizeMap = true;
1992       else if (option_or_sm == "__ATTRACTORS_BEGIN__")
1993         hasAttractor = true;
1994       else if (option_or_sm == "__NEW_ATTRACTORS_BEGIN__")
1995         hasNewAttractor = true;
1996       else if (option_or_sm == "__ENFORCED_VERTICES_BEGIN__")
1997         hasEnforcedVertex = true;
1998       else if (option_or_sm == "__PRECAD_FACES_PERIODICITY_BEGIN__")
1999         hasPreCADFacesPeriodicity = true;
2000       else if (option_or_sm == "__PRECAD_EDGES_PERIODICITY_BEGIN__")
2001         hasPreCADEdgesPeriodicity = true;
2002       else if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
2003         hasFacesPeriodicity = true;
2004       else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
2005         hasEdgesPeriodicity = true;
2006       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
2007         hasVerticesPeriodicity = true;
2008   }
2009   
2010   std::string smEntry, smValue;
2011   while (isOK && hasSizeMap) {
2012     isOK = (load >> smEntry);
2013     if (isOK) {
2014       if (smEntry == "__SIZEMAP_END__")
2015         break;
2016       isOK = (load >> smValue);
2017     }
2018     if (isOK) {
2019       std::string & value2 = _sizeMap[smEntry];
2020       value2 = smValue;
2021       int len2 = value2.size();
2022       // continue reading until "%#" encountered
2023       while (value2[len2 - 1] != '#' || value2[len2 - 2] != '%') {
2024         isOK = (load >> smValue);
2025         if (isOK) {
2026           value2 += " ";
2027           value2 += smValue;
2028           len2 = value2.size();
2029         } else {
2030           break;
2031         }
2032       }
2033       value2[len2 - 2] = '\0'; //cut off "%#"
2034     }
2035   }
2036
2037   if (hasSizeMap) {
2038     isOK = (load >> option_or_sm);
2039     if (isOK)
2040       if (option_or_sm == "__ATTRACTORS_BEGIN__")
2041         hasAttractor = true;
2042       if (option_or_sm == "__NEW_ATTRACTORS_BEGIN__")
2043         hasNewAttractor = true;
2044       else if (option_or_sm == "__ENFORCED_VERTICES_BEGIN__")
2045         hasEnforcedVertex = true;
2046       else if (option_or_sm == "__PRECAD_FACES_PERIODICITY_BEGIN__")
2047         hasPreCADFacesPeriodicity = true;
2048       else if (option_or_sm == "__PRECAD_EDGES_PERIODICITY_BEGIN__")
2049         hasPreCADEdgesPeriodicity = true;
2050       else if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
2051         hasFacesPeriodicity = true;
2052       else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
2053         hasEdgesPeriodicity = true;
2054       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
2055         hasVerticesPeriodicity = true;
2056   }
2057
2058   std::string atEntry, atValue;
2059   while (isOK && hasAttractor) {
2060     isOK = (load >> atEntry);
2061     if (isOK) {
2062       if (atEntry == "__ATTRACTORS_END__")
2063         break;
2064       isOK = (load >> atValue);
2065     }
2066     if (isOK) {
2067       std::string & value3 = _attractors[atEntry];
2068       value3 = atValue;
2069       int len3 = value3.size();
2070       // continue reading until "%#" encountered
2071       while (value3[len3 - 1] != '#' || value3[len3 - 2] != '%') {
2072         isOK = (load >> atValue);
2073         if (isOK) {
2074           value3 += " ";
2075           value3 += atValue;
2076           len3 = value3.size();
2077         } else {
2078           break;
2079         }
2080       }
2081       value3[len3 - 2] = '\0'; //cut off "%#"
2082     }
2083   }
2084
2085   if (hasAttractor) {
2086     isOK = (load >> option_or_sm);
2087     if (isOK)
2088       if (option_or_sm == "__NEW_ATTRACTORS_BEGIN__")
2089         hasNewAttractor = true;
2090       else if (option_or_sm == "__ENFORCED_VERTICES_BEGIN__")
2091         hasEnforcedVertex = true;
2092       else if (option_or_sm == "__PRECAD_FACES_PERIODICITY_BEGIN__")
2093         hasPreCADFacesPeriodicity = true;
2094       else if (option_or_sm == "__PRECAD_EDGES_PERIODICITY_BEGIN__")
2095         hasPreCADEdgesPeriodicity = true;
2096       else if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
2097         hasFacesPeriodicity = true;
2098       else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
2099         hasEdgesPeriodicity = true;
2100       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
2101         hasVerticesPeriodicity = true;
2102   }
2103
2104   std::string newAtFaceEntry, atTestString;
2105   std::string newAtShapeEntry;
2106   double attParams[4];
2107   double step;
2108   while (isOK && hasNewAttractor) {
2109     std::cout<<"Load new attractor"<<std::endl;
2110     isOK = (load >> newAtFaceEntry);
2111     if (isOK) {
2112       if (newAtFaceEntry == "__NEW_ATTRACTORS_END__")
2113         break;
2114       isOK = (load >> newAtShapeEntry);
2115       if (!isOK)
2116     break;
2117       isOK = (load >> attParams[0]>>attParams[1]>>attParams[2]>>attParams[3]); //>>step);
2118     }
2119     if (isOK) {
2120       MESSAGE(" LOADING ATTRACTOR HYPOTHESIS ")
2121       const TopoDS_Shape attractorShape = BLSURFPlugin_Hypothesis::entryToShape(newAtShapeEntry);
2122       const TopoDS_Face faceShape = TopoDS::Face(BLSURFPlugin_Hypothesis::entryToShape(newAtFaceEntry));
2123       BLSURFPlugin_Attractor* attractor = new BLSURFPlugin_Attractor(faceShape, attractorShape, newAtShapeEntry);//, step);
2124       attractor->SetParameters(attParams[0], attParams[1], attParams[2], attParams[3]);
2125       attractor->BuildMap();                     
2126       _classAttractors[newAtFaceEntry]=attractor;
2127     }
2128   }
2129   
2130   
2131   if (hasNewAttractor) {
2132     isOK = (load >> option_or_sm);
2133     if (isOK)
2134       if (option_or_sm == "__ENFORCED_VERTICES_BEGIN__")
2135         hasEnforcedVertex = true;
2136       else if (option_or_sm == "__PRECAD_FACES_PERIODICITY_BEGIN__")
2137         hasPreCADFacesPeriodicity = true;
2138       else if (option_or_sm == "__PRECAD_EDGES_PERIODICITY_BEGIN__")
2139         hasPreCADEdgesPeriodicity = true;
2140       else if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
2141         hasFacesPeriodicity = true;
2142       else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
2143         hasEdgesPeriodicity = true;
2144       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
2145         hasVerticesPeriodicity = true;
2146   }
2147
2148
2149 // 
2150 // Here is a example of the saved stream:
2151 // __ENFORCED_VERTICES_BEGIN__ 
2152 // __BEGIN_VERTEX__  => no name, no entry
2153 // __BEGIN_GROUP__ mon groupe __END_GROUP__
2154 // __BEGIN_COORDS__ 10 10 10 __END_COORDS__ 
2155 // __BEGIN_FACELIST__ 0:1:1:1:1 __END_FACELIST__ 
2156 // __END_VERTEX__ 
2157 // __BEGIN_VERTEX__ => no coords
2158 // __BEGIN_NAME__ mes points __END_NAME__ 
2159 // __BEGIN_ENTRY__ 0:1:1:4 __END_ENTRY__
2160 // __BEGIN_GROUP__ mon groupe __END_GROUP__
2161 // __BEGIN_FACELIST__ 0:1:1:1:3 __END_FACELIST__
2162 // __END_VERTEX__ 
2163 // __ENFORCED_VERTICES_END__
2164 // 
2165
2166   std::string enfSeparator;
2167   std::string enfName;
2168   std::string enfGeomEntry;
2169   std::string enfGroup;
2170   TEntryList enfFaceEntryList;
2171   double enfCoords[3];
2172   bool hasCoords = false;
2173   
2174   _faceEntryEnfVertexListMap.clear();
2175   _enfVertexList.clear();
2176   _faceEntryCoordsListMap.clear();
2177   _coordsEnfVertexMap.clear();
2178   _faceEntryEnfVertexEntryListMap.clear();
2179   _enfVertexEntryEnfVertexMap.clear();
2180   
2181   
2182   while (isOK && hasEnforcedVertex) {
2183     isOK = (load >> enfSeparator); // __BEGIN_VERTEX__
2184     TEnfVertex *enfVertex = new TEnfVertex();
2185 //     MESSAGE("enfSeparator: " <<enfSeparator);
2186     if (enfSeparator == "__ENFORCED_VERTICES_END__")
2187       break; // __ENFORCED_VERTICES_END__
2188     if (enfSeparator != "__BEGIN_VERTEX__")
2189       throw std::exception();
2190     
2191     while (isOK) {
2192       isOK = (load >> enfSeparator);
2193       MESSAGE("enfSeparator: " <<enfSeparator);
2194       if (enfSeparator == "__END_VERTEX__") {
2195         
2196         enfVertex->name = enfName;
2197         enfVertex->geomEntry = enfGeomEntry;
2198         enfVertex->grpName = enfGroup;
2199         enfVertex->coords.clear();
2200         if (hasCoords)
2201           enfVertex->coords.assign(enfCoords,enfCoords+3);
2202         enfVertex->faceEntries = enfFaceEntryList;
2203         
2204         _enfVertexList.insert(enfVertex);
2205         
2206         if (enfVertex->coords.size()) {
2207           _coordsEnfVertexMap[enfVertex->coords] = enfVertex;
2208           for (TEntryList::const_iterator it = enfVertex->faceEntries.begin() ; it != enfVertex->faceEntries.end(); ++it) {
2209             _faceEntryCoordsListMap[(*it)].insert(enfVertex->coords);
2210             _faceEntryEnfVertexListMap[(*it)].insert(enfVertex);
2211           }
2212         }
2213         if (!enfVertex->geomEntry.empty()) {
2214           _enfVertexEntryEnfVertexMap[enfVertex->geomEntry] = enfVertex;
2215           for (TEntryList::const_iterator it = enfVertex->faceEntries.begin() ; it != enfVertex->faceEntries.end(); ++it) {
2216             _faceEntryEnfVertexEntryListMap[(*it)].insert(enfVertex->geomEntry);
2217             _faceEntryEnfVertexListMap[(*it)].insert(enfVertex);
2218           }
2219         }
2220         
2221         enfName.clear();
2222         enfGeomEntry.clear();
2223         enfGroup.clear();
2224         enfFaceEntryList.clear();
2225         hasCoords = false;
2226         break; // __END_VERTEX__
2227       }
2228         
2229       if (enfSeparator == "__BEGIN_NAME__") {  // __BEGIN_NAME__
2230         while (isOK && (enfSeparator != "__END_NAME__")) {
2231           isOK = (load >> enfSeparator);
2232           if (enfSeparator != "__END_NAME__") {
2233             if (!enfName.empty())
2234               enfName += " ";
2235             enfName += enfSeparator;
2236           }
2237         }
2238         MESSAGE("enfName: " <<enfName);
2239       }
2240         
2241       if (enfSeparator == "__BEGIN_ENTRY__") {  // __BEGIN_ENTRY__
2242         isOK = (load >> enfGeomEntry);
2243         isOK = (load >> enfSeparator); // __END_ENTRY__
2244         if (enfSeparator != "__END_ENTRY__")
2245           throw std::exception();
2246         MESSAGE("enfGeomEntry: " <<enfGeomEntry);
2247       }
2248         
2249       if (enfSeparator == "__BEGIN_GROUP__") {  // __BEGIN_GROUP__
2250         while (isOK && (enfSeparator != "__END_GROUP__")) {
2251           isOK = (load >> enfSeparator);
2252           if (enfSeparator != "__END_GROUP__") {
2253             if (!enfGroup.empty())
2254               enfGroup += " ";
2255             enfGroup += enfSeparator;
2256           }
2257         }
2258         MESSAGE("enfGroup: " <<enfGroup);
2259       }
2260         
2261       if (enfSeparator == "__BEGIN_COORDS__") {  // __BEGIN_COORDS__
2262         hasCoords = true;
2263         isOK = (load >> enfCoords[0] >> enfCoords[1] >> enfCoords[2]);
2264         isOK = (load >> enfSeparator); // __END_COORDS__
2265         if (enfSeparator != "__END_COORDS__")
2266           throw std::exception();
2267         MESSAGE("enfCoords: " << enfCoords[0] <<","<< enfCoords[1] <<","<< enfCoords[2]);
2268       } 
2269         
2270       if (enfSeparator == "__BEGIN_FACELIST__") {  // __BEGIN_FACELIST__
2271         while (isOK && (enfSeparator != "__END_FACELIST__")) {
2272           isOK = (load >> enfSeparator);
2273           if (enfSeparator != "__END_FACELIST__") {
2274             enfFaceEntryList.insert(enfSeparator);
2275             MESSAGE(enfSeparator << " was inserted into enfFaceEntryList");
2276           }
2277         }
2278       } 
2279     }
2280   }
2281
2282   // PERIODICITY
2283
2284   if (hasPreCADFacesPeriodicity){
2285     LoadPreCADPeriodicity(load, "FACES");
2286
2287     isOK = (load >> option_or_sm);
2288     if (isOK)
2289       if (option_or_sm == "__PRECAD_EDGES_PERIODICITY_BEGIN__")
2290         hasPreCADEdgesPeriodicity = true;
2291       else if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
2292         hasFacesPeriodicity = true;
2293       else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
2294         hasEdgesPeriodicity = true;
2295       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
2296         hasVerticesPeriodicity = true;
2297   }
2298
2299   if (hasPreCADEdgesPeriodicity){
2300     LoadPreCADPeriodicity(load, "EDGES");
2301
2302     isOK = (load >> option_or_sm);
2303     if (isOK)
2304       if (option_or_sm == "__FACES_PERIODICITY_BEGIN__")
2305         hasFacesPeriodicity = true;
2306       else if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
2307         hasEdgesPeriodicity = true;
2308       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
2309         hasVerticesPeriodicity = true;
2310   }
2311
2312   if (hasFacesPeriodicity){
2313       LoadFacesPeriodicity(load);
2314
2315     isOK = (load >> option_or_sm);
2316     if (isOK)
2317       if (option_or_sm == "__EDGES_PERIODICITY_BEGIN__")
2318         hasEdgesPeriodicity = true;
2319       else if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
2320         hasVerticesPeriodicity = true;
2321   }
2322
2323   if (hasEdgesPeriodicity){
2324       LoadEdgesPeriodicity(load);
2325
2326     isOK = (load >> option_or_sm);
2327     if (isOK)
2328       if (option_or_sm == "__VERTICES_PERIODICITY_BEGIN__")
2329         hasVerticesPeriodicity = true;
2330   }
2331
2332   if (hasVerticesPeriodicity)
2333       LoadVerticesPeriodicity(load);
2334
2335   return load;
2336 }
2337
2338 void BLSURFPlugin_Hypothesis::LoadFacesPeriodicity(std::istream & load){
2339
2340   bool isOK = true;
2341
2342   std::string periodicitySeparator;
2343   TEntry shape1Entry;
2344   TEntry shape2Entry;
2345
2346   _facesPeriodicityVector.clear();
2347
2348   while (isOK) {
2349     isOK = (load >> periodicitySeparator); // __BEGIN_PERIODICITY_DESCRIPTION__
2350     MESSAGE("periodicitySeparator 1: " <<periodicitySeparator);
2351     TFacesPeriodicity *periodicity_i = new TFacesPeriodicity();
2352     if (periodicitySeparator == "__FACES_PERIODICITY_END__")
2353       break; // __FACES_PERIODICITY_END__
2354     if (periodicitySeparator != "__BEGIN_PERIODICITY_DESCRIPTION__"){
2355       MESSAGE("//" << periodicitySeparator << "//");
2356       throw std::exception();
2357     }
2358
2359     while (isOK) {
2360       isOK = (load >> periodicitySeparator);
2361       MESSAGE("periodicitySeparator 2: " <<periodicitySeparator);
2362       if (periodicitySeparator == "__END_PERIODICITY_DESCRIPTION__") {
2363
2364         periodicity_i->first = shape1Entry;
2365         periodicity_i->second = shape2Entry;
2366
2367         _facesPeriodicityVector.push_back(*periodicity_i);
2368
2369         break; // __END_PERIODICITY_DESCRIPTION__
2370       }
2371
2372       if (periodicitySeparator == "__BEGIN_ENTRY1__") {  // __BEGIN_ENTRY1__
2373         isOK = (load >> shape1Entry);
2374         isOK = (load >> periodicitySeparator); // __END_ENTRY1__
2375         if (periodicitySeparator != "__END_ENTRY1__")
2376           throw std::exception();
2377         MESSAGE("shape1Entry: " <<shape1Entry);
2378       }
2379
2380       if (periodicitySeparator == "__BEGIN_ENTRY2__") {  // __BEGIN_ENTRY2__
2381         isOK = (load >> shape2Entry);
2382         isOK = (load >> periodicitySeparator); // __END_ENTRY2__
2383         if (periodicitySeparator != "__END_ENTRY2__")
2384           throw std::exception();
2385         MESSAGE("shape2Entry: " <<shape2Entry);
2386       }
2387     }
2388   }
2389 }
2390
2391
2392 void BLSURFPlugin_Hypothesis::LoadEdgesPeriodicity(std::istream & load){
2393
2394   bool isOK = true;
2395
2396   std::string periodicitySeparator;
2397   TEntry theFace1Entry;
2398   TEntry theEdge1Entry;
2399   TEntry theFace2Entry;
2400   TEntry theEdge2Entry;
2401   int edge_orientation = 0;
2402
2403   _edgesPeriodicityVector.clear();
2404
2405   while (isOK) {
2406     isOK = (load >> periodicitySeparator); // __BEGIN_PERIODICITY_DESCRIPTION__
2407     MESSAGE("periodicitySeparator 1: " <<periodicitySeparator);
2408     TEdgePeriodicity *periodicity_i = new TEdgePeriodicity();
2409     if (periodicitySeparator == "__EDGES_PERIODICITY_END__")
2410       break; // __EDGES_PERIODICITY_END__
2411     if (periodicitySeparator != "__BEGIN_PERIODICITY_DESCRIPTION__"){
2412       MESSAGE("//" << periodicitySeparator << "//");
2413       throw std::exception();
2414     }
2415
2416     while (isOK) {
2417       isOK = (load >> periodicitySeparator);
2418       MESSAGE("periodicitySeparator 2: " <<periodicitySeparator);
2419       if (periodicitySeparator == "__END_PERIODICITY_DESCRIPTION__") {
2420
2421         periodicity_i->theFace1Entry = theFace1Entry;
2422         periodicity_i->theEdge1Entry = theEdge1Entry;
2423         periodicity_i->theFace2Entry = theFace2Entry;
2424         periodicity_i->theEdge2Entry = theEdge2Entry;
2425         periodicity_i->edge_orientation = edge_orientation;
2426
2427         _edgesPeriodicityVector.push_back(*periodicity_i);
2428
2429         break; // __END_PERIODICITY_DESCRIPTION__
2430       }
2431
2432       if (periodicitySeparator == "__BEGIN_FACE1__") {  // __BEGIN_FACE1__
2433         isOK = (load >> theFace1Entry);
2434         MESSAGE("//" << theFace1Entry << "//");
2435         isOK = (load >> periodicitySeparator); // __END_FACE1__
2436         if (periodicitySeparator != "__END_FACE1__"){
2437           MESSAGE("//" << periodicitySeparator << "//");
2438           throw std::exception();
2439         }
2440         MESSAGE("theFace1Entry: " <<theFace1Entry);
2441       }
2442
2443       if (periodicitySeparator == "__BEGIN_EDGE1__") {  // __BEGIN_EDGE1__
2444         isOK = (load >> theEdge1Entry);
2445         isOK = (load >> periodicitySeparator); // __END_EDGE1__
2446         if (periodicitySeparator != "__END_EDGE1__")
2447           throw std::exception();
2448         MESSAGE("theEdge1Entry: " <<theEdge1Entry);
2449       }
2450
2451       if (periodicitySeparator == "__BEGIN_FACE2__") {  // __BEGIN_FACE2__
2452         isOK = (load >> theFace2Entry);
2453         isOK = (load >> periodicitySeparator); // __END_FACE2__
2454         if (periodicitySeparator != "__END_FACE2__")
2455           throw std::exception();
2456         MESSAGE("theFace2Entry: " <<theFace2Entry);
2457       }
2458
2459       if (periodicitySeparator == "__BEGIN_EDGE2__") {  // __BEGIN_EDGE2__
2460         isOK = (load >> theEdge2Entry);
2461         isOK = (load >> periodicitySeparator); // __END_EDGE2__
2462         if (periodicitySeparator != "__END_EDGE2__")
2463           throw std::exception();
2464         MESSAGE("theEdge2Entry: " <<theEdge2Entry);
2465       }
2466
2467       if (periodicitySeparator == "__BEGIN_EDGE_ORIENTATION__") {  // __BEGIN_EDGE_ORIENTATION__
2468         isOK = (load >> edge_orientation);
2469         isOK = (load >> periodicitySeparator); // __END_EDGE_ORIENTATION__
2470         if (periodicitySeparator != "__END_EDGE_ORIENTATION__")
2471           throw std::exception();
2472         MESSAGE("edge_orientation: " <<edge_orientation);
2473       }
2474     }
2475   }
2476 }
2477
2478 void BLSURFPlugin_Hypothesis::LoadVerticesPeriodicity(std::istream & load){
2479
2480   bool isOK = true;
2481
2482   std::string periodicitySeparator;
2483   TEntry theEdge1Entry;
2484   TEntry theVertex1Entry;
2485   TEntry theEdge2Entry;
2486   TEntry theVertex2Entry;
2487
2488   _verticesPeriodicityVector.clear();
2489
2490   while (isOK) {
2491     isOK = (load >> periodicitySeparator); // __BEGIN_PERIODICITY_DESCRIPTION__
2492     MESSAGE("periodicitySeparator 1: " <<periodicitySeparator);
2493     TVertexPeriodicity *periodicity_i = new TVertexPeriodicity();
2494     if (periodicitySeparator == "__VERTICES_PERIODICITY_END__")
2495       break; // __VERTICES_PERIODICITY_END__
2496     if (periodicitySeparator != "__BEGIN_PERIODICITY_DESCRIPTION__"){
2497       MESSAGE("//" << periodicitySeparator << "//");
2498       throw std::exception();
2499     }
2500
2501     while (isOK) {
2502       isOK = (load >> periodicitySeparator);
2503       MESSAGE("periodicitySeparator 2: " <<periodicitySeparator);
2504       if (periodicitySeparator == "__END_PERIODICITY_DESCRIPTION__") {
2505
2506         periodicity_i->theEdge1Entry = theEdge1Entry;
2507         periodicity_i->theVertex1Entry = theVertex1Entry;
2508         periodicity_i->theEdge2Entry = theEdge2Entry;
2509         periodicity_i->theVertex2Entry = theVertex2Entry;
2510
2511         _verticesPeriodicityVector.push_back(*periodicity_i);
2512
2513         break; // __END_PERIODICITY_DESCRIPTION__
2514       }
2515
2516       if (periodicitySeparator == "__BEGIN_EDGE1__") {  // __BEGIN_EDGE1__
2517         isOK = (load >> theEdge1Entry);
2518         isOK = (load >> periodicitySeparator); // __END_EDGE1__
2519         if (periodicitySeparator != "__END_EDGE1__")
2520           throw std::exception();
2521         MESSAGE("theEdge1Entry: " <<theEdge1Entry);
2522       }
2523
2524       if (periodicitySeparator == "__BEGIN_VERTEX1__") {  // __BEGIN_VERTEX1__
2525         isOK = (load >> theVertex1Entry);
2526         isOK = (load >> periodicitySeparator); // __END_VERTEX1__
2527         if (periodicitySeparator != "__END_VERTEX1__")
2528           throw std::exception();
2529         MESSAGE("theVertex1Entry: " <<theVertex1Entry);
2530       }
2531
2532       if (periodicitySeparator == "__BEGIN_EDGE2__") {  // __BEGIN_EDGE2__
2533         isOK = (load >> theEdge2Entry);
2534         isOK = (load >> periodicitySeparator); // __END_EDGE2__
2535         if (periodicitySeparator != "__END_EDGE2__")
2536           throw std::exception();
2537         MESSAGE("theEdge2Entry: " <<theEdge2Entry);
2538       }
2539
2540       if (periodicitySeparator == "__BEGIN_VERTEX2__") {  // __BEGIN_VERTEX2__
2541         isOK = (load >> theVertex2Entry);
2542         isOK = (load >> periodicitySeparator); // __END_VERTEX2__
2543         if (periodicitySeparator != "__END_VERTEX2__")
2544           throw std::exception();
2545         MESSAGE("theVertex2Entry: " <<theVertex2Entry);
2546       }
2547     }
2548   }
2549 }
2550
2551 void BLSURFPlugin_Hypothesis::LoadPreCADPeriodicity(std::istream & load, const char* shapeType) {
2552
2553   bool isOK = true;
2554
2555   std::string periodicitySeparator;
2556   TEntry shape1Entry;
2557   TEntry shape2Entry;
2558   std::vector<std::string> theSourceVerticesEntries;
2559   std::vector<std::string> theTargetVerticesEntries;
2560
2561   bool hasSourceVertices = false;
2562   bool hasTargetVertices = false;
2563
2564   if (shapeType == "FACES")
2565     _preCadFacesPeriodicityVector.clear();
2566   else
2567     _preCadEdgesPeriodicityVector.clear();
2568
2569
2570   while (isOK) {
2571     isOK = (load >> periodicitySeparator); // __BEGIN_PERIODICITY_DESCRIPTION__
2572     MESSAGE("periodicitySeparator 1: " <<periodicitySeparator);
2573     TPreCadPeriodicity *periodicity_i = new TPreCadPeriodicity();
2574 //     MESSAGE("periodicitySeparator: " <<periodicitySeparator);
2575     std::string endSeparator = "__PRECAD_" + std::string(shapeType) + "_PERIODICITY_END__";
2576     if (periodicitySeparator == endSeparator)
2577       break; // __PRECAD_FACES_PERIODICITY_END__
2578     if (periodicitySeparator != "__BEGIN_PERIODICITY_DESCRIPTION__"){
2579       MESSAGE("//" << endSeparator << "//");
2580       MESSAGE("//" << periodicitySeparator << "//");
2581       throw std::exception();
2582     }
2583
2584     while (isOK) {
2585       isOK = (load >> periodicitySeparator);
2586       MESSAGE("periodicitySeparator 2: " <<periodicitySeparator);
2587       if (periodicitySeparator == "__END_PERIODICITY_DESCRIPTION__") {
2588
2589         periodicity_i->shape1Entry = shape1Entry;
2590         periodicity_i->shape2Entry = shape2Entry;
2591
2592         MESSAGE("theSourceVerticesEntries.size(): " << theSourceVerticesEntries.size());
2593         MESSAGE("theTargetVerticesEntries.size(): " << theTargetVerticesEntries.size());
2594
2595         if (hasSourceVertices)
2596           periodicity_i->theSourceVerticesEntries = theSourceVerticesEntries;
2597         if (hasTargetVertices)
2598           periodicity_i->theTargetVerticesEntries = theTargetVerticesEntries;
2599
2600         if (shapeType == "FACES")
2601           _preCadFacesPeriodicityVector.push_back(*periodicity_i);
2602         else
2603           _preCadEdgesPeriodicityVector.push_back(*periodicity_i);
2604
2605         theSourceVerticesEntries.clear();
2606         theTargetVerticesEntries.clear();
2607         hasSourceVertices = false;
2608         hasTargetVertices = false;
2609         break; // __END_PERIODICITY_DESCRIPTION__
2610       }
2611
2612       if (periodicitySeparator == "__BEGIN_ENTRY1__") {  // __BEGIN_ENTRY1__
2613         isOK = (load >> shape1Entry);
2614         isOK = (load >> periodicitySeparator); // __END_ENTRY1__
2615         if (periodicitySeparator != "__END_ENTRY1__")
2616           throw std::exception();
2617         MESSAGE("shape1Entry: " <<shape1Entry);
2618       }
2619
2620       if (periodicitySeparator == "__BEGIN_ENTRY2__") {  // __BEGIN_ENTRY2__
2621         isOK = (load >> shape2Entry);
2622         isOK = (load >> periodicitySeparator); // __END_ENTRY2__
2623         if (periodicitySeparator != "__END_ENTRY2__")
2624           throw std::exception();
2625         MESSAGE("shape2Entry: " <<shape2Entry);
2626       }
2627
2628       if (periodicitySeparator == "__BEGIN_SOURCE_VERTICES_LIST__") {  // __BEGIN_SOURCE_VERTICES_LIST__
2629         hasSourceVertices = true;
2630         while (isOK && (periodicitySeparator != "__END_SOURCE_VERTICES_LIST__")) {
2631           isOK = (load >> periodicitySeparator);
2632           if (periodicitySeparator != "__END_SOURCE_VERTICES_LIST__") {
2633             theSourceVerticesEntries.push_back(periodicitySeparator);
2634             MESSAGE("theSourceVerticesEntries: " <<periodicitySeparator);
2635           }
2636         }
2637       }
2638
2639       if (periodicitySeparator == "__BEGIN_TARGET_VERTICES_LIST__") {  // __BEGIN_TARGET_VERTICES_LIST__
2640         hasTargetVertices = true;
2641         while (isOK && (periodicitySeparator != "__END_TARGET_VERTICES_LIST__")) {
2642           isOK = (load >> periodicitySeparator);
2643           if (periodicitySeparator != "__END_TARGET_VERTICES_LIST__") {
2644             theTargetVerticesEntries.push_back(periodicitySeparator);
2645             MESSAGE("theTargetVerticesEntries: " <<periodicitySeparator);
2646           }
2647         }
2648       }
2649     }
2650   }
2651 }
2652
2653 //=============================================================================
2654 std::ostream & operator <<(std::ostream & save, BLSURFPlugin_Hypothesis & hyp) {
2655   return hyp.SaveTo(save);
2656 }
2657
2658 //=============================================================================
2659 std::istream & operator >>(std::istream & load, BLSURFPlugin_Hypothesis & hyp) {
2660   return hyp.LoadFrom(load);
2661 }
2662
2663 //================================================================================
2664 /*!
2665  * \brief Does nothing
2666  */
2667 //================================================================================
2668
2669 bool BLSURFPlugin_Hypothesis::SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape) {
2670   return false;
2671 }
2672
2673 //================================================================================
2674 /*!
2675  * \brief Returns default global constant physical size given a default value of element length ratio
2676  */
2677 //================================================================================
2678
2679 double BLSURFPlugin_Hypothesis::GetDefaultPhySize(double diagonal, double bbSegmentation) {
2680   if (bbSegmentation != 0 && diagonal != 0)
2681     return diagonal / bbSegmentation ;
2682   return 10;
2683 }
2684
2685 //================================================================================
2686 /*!
2687  * \brief Returns default min size given a default value of element length ratio
2688  */
2689 //================================================================================
2690
2691 double BLSURFPlugin_Hypothesis::GetDefaultMinSize(double diagonal) {
2692   if (diagonal != 0)
2693     return diagonal / 1000.0 ;
2694   return undefinedDouble();
2695 }
2696
2697 //================================================================================
2698 /*!
2699  * \brief Returns default max size given a default value of element length ratio
2700  */
2701 //================================================================================
2702
2703 double BLSURFPlugin_Hypothesis::GetDefaultMaxSize(double diagonal) {
2704   if (diagonal != 0)
2705     return diagonal / 5.0 ;
2706   return undefinedDouble();
2707 }
2708
2709 //================================================================================
2710 /*!
2711  * \brief Returns default chordal error given a default value of element length ratio
2712  */
2713 //================================================================================
2714
2715 double BLSURFPlugin_Hypothesis::GetDefaultChordalError(double diagonal) {
2716   if (diagonal != 0)
2717     return diagonal;
2718   return undefinedDouble();
2719 }
2720
2721 //================================================================================
2722 /*!
2723  * \brief Returns default tiny edge length given a default value of element length ratio
2724  */
2725 //================================================================================
2726
2727 double BLSURFPlugin_Hypothesis::GetDefaultTinyEdgeLength(double diagonal) {
2728   if (diagonal != 0)
2729     return diagonal * 1e-6 ;
2730   return undefinedDouble();
2731 }
2732
2733 //=============================================================================
2734 /*!
2735  * \brief Initialize my parameter values by default parameters.
2736  *  \retval bool - true if parameter values have been successfully defined
2737  */
2738 //=============================================================================
2739
2740 bool BLSURFPlugin_Hypothesis::SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh) {
2741   double diagonal = dflts._elemLength*_gen->GetBoundaryBoxSegmentation();
2742   _phySize = GetDefaultPhySize(diagonal, _gen->GetBoundaryBoxSegmentation());
2743   _minSize = GetDefaultMinSize(diagonal);
2744   _maxSize = GetDefaultMaxSize(diagonal);
2745   _chordalError = GetDefaultChordalError(diagonal);
2746   _tinyEdgeLength = GetDefaultTinyEdgeLength(diagonal);
2747
2748   return true;
2749 //   return bool(_phySize = dflts._elemLength);
2750 }