1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
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.
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
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #include <GDMLPlugin_ConeSegment.h>
23 #include <ModelAPI_Data.h>
24 #include <ModelAPI_ResultBody.h>
25 #include <ModelAPI_AttributeDouble.h>
27 //=================================================================================================
28 GDMLPlugin_ConeSegment::GDMLPlugin_ConeSegment() // Nothing to do during instantiation
32 //=================================================================================================
33 void GDMLPlugin_ConeSegment::initAttributes()
35 data()->addAttribute(GDMLPlugin_ConeSegment::RMIN1_ID(), ModelAPI_AttributeDouble::typeId());
36 data()->addAttribute(GDMLPlugin_ConeSegment::RMAX1_ID(), ModelAPI_AttributeDouble::typeId());
37 data()->addAttribute(GDMLPlugin_ConeSegment::RMIN2_ID(), ModelAPI_AttributeDouble::typeId());
38 data()->addAttribute(GDMLPlugin_ConeSegment::RMAX2_ID(), ModelAPI_AttributeDouble::typeId());
39 data()->addAttribute(GDMLPlugin_ConeSegment::Z_ID(), ModelAPI_AttributeDouble::typeId());
40 data()->addAttribute(GDMLPlugin_ConeSegment::STARTPHI_ID(), ModelAPI_AttributeDouble::typeId());
41 data()->addAttribute(GDMLPlugin_ConeSegment::DELTAPHI_ID(), ModelAPI_AttributeDouble::typeId());
44 //=================================================================================================
45 void GDMLPlugin_ConeSegment::execute()
47 double aRMin1 = real(GDMLPlugin_ConeSegment::RMIN1_ID())->value();
48 double aRMax1 = real(GDMLPlugin_ConeSegment::RMAX1_ID())->value();
49 double aRMin2 = real(GDMLPlugin_ConeSegment::RMIN2_ID())->value();
50 double aRMax2 = real(GDMLPlugin_ConeSegment::RMAX2_ID())->value();
51 double aZ = real(GDMLPlugin_ConeSegment::Z_ID())->value();
52 double aStartPhi = real(GDMLPlugin_ConeSegment::STARTPHI_ID())->value();
53 double aDeltaPhi = real(GDMLPlugin_ConeSegment::DELTAPHI_ID())->value();
55 std::shared_ptr<GeomAlgoAPI_ConeSegment> aConeSegmentAlgo =
56 std::shared_ptr<GeomAlgoAPI_ConeSegment>(new GeomAlgoAPI_ConeSegment(aRMin1, aRMax1,
59 aStartPhi, aDeltaPhi));
61 // Check with that the arguments for aConeSegmentAlgo are correct
62 if (!aConeSegmentAlgo->check()){
63 setError(aConeSegmentAlgo->getError());
67 aConeSegmentAlgo->build();
69 // Check if the creation of the cone segment went well
70 if(!aConeSegmentAlgo->isDone()) {
71 setError(aConeSegmentAlgo->getError());
74 if (!aConeSegmentAlgo->checkValid("Cone Segment builder")) {
75 setError(aConeSegmentAlgo->getError());
80 ResultBodyPtr aResultConeSegment = document()->createBody(data(), aResultIndex);
81 loadNamingDS(aConeSegmentAlgo, aResultConeSegment);
82 setResult(aResultConeSegment, aResultIndex);
85 //=================================================================================================
86 void GDMLPlugin_ConeSegment::loadNamingDS(
87 std::shared_ptr<GeomAlgoAPI_ConeSegment> theConeSegmentAlgo,
88 std::shared_ptr<ModelAPI_ResultBody> theResultConeSegment)
91 theResultConeSegment->store(theConeSegmentAlgo->shape());
94 theConeSegmentAlgo->prepareNamingFaces();
98 std::map< std::string, std::shared_ptr<GeomAPI_Shape> > listOfFaces =
99 theConeSegmentAlgo->getCreatedFaces();
100 for (std::map< std::string, std::shared_ptr<GeomAPI_Shape> >::iterator
101 it=listOfFaces.begin(); it!=listOfFaces.end(); ++it) {
102 std::shared_ptr<GeomAPI_Shape> aFace = (*it).second;
103 theResultConeSegment->generated(aFace, (*it).first, num++);