X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESH%2FSMESH_Hypothesis.cxx;h=038e5538f847b32025daf5c2c16d42c8484684ed;hp=c4107fb3892bed30a88f0b640277375422e4640c;hb=1fb3ff621ac19da15742a5e8b9253b594977d14a;hpb=e8173b4ff130ddb26d165c92403ef847fdfb8be2 diff --git a/src/SMESH/SMESH_Hypothesis.cxx b/src/SMESH/SMESH_Hypothesis.cxx index c4107fb38..038e5538f 100644 --- a/src/SMESH/SMESH_Hypothesis.cxx +++ b/src/SMESH/SMESH_Hypothesis.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2019 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -20,7 +20,7 @@ // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -// SMESH SMESH : implementaion of SMESH idl descriptions +// SMESH SMESH : implementation of SMESH idl descriptions // File : SMESH_Hypothesis.cxx // Author : Paul RASCLE, EDF // Module : SMESH @@ -41,15 +41,13 @@ using namespace std; //============================================================================= SMESH_Hypothesis::SMESH_Hypothesis(int hypId, - int studyId, SMESH_Gen* gen) : SMESHDS_Hypothesis(hypId) { _gen = gen; - _studyId = studyId; _type = PARAM_ALGO; _shapeType = 0; // to be set by algo with TopAbs_Enum _param_algo_dim = -1; // to be set by algo parameter - StudyContextStruct* myStudyContext = gen->GetStudyContext(_studyId); + StudyContextStruct* myStudyContext = gen->GetStudyContext(); myStudyContext->mapHypothesis[hypId] = this; } @@ -63,7 +61,7 @@ SMESH_Hypothesis::~SMESH_Hypothesis() { if ( _gen ) { - StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId); + StudyContextStruct* myStudyContext = _gen->GetStudyContext(); myStudyContext->mapHypothesis[_hypId] = 0; } } @@ -106,22 +104,11 @@ int SMESH_Hypothesis::GetShapeType() const */ //============================================================================= -int SMESH_Hypothesis::GetStudyId() const -{ - return _studyId; -} - -//============================================================================= -/*! - * - */ -//============================================================================= - void SMESH_Hypothesis::NotifySubMeshesHypothesisModification() { // for all meshes in study - StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId); + StudyContextStruct* myStudyContext = _gen->GetStudyContext(); map::iterator itm; for (itm = myStudyContext->mapMesh.begin(); itm != myStudyContext->mapMesh.end(); @@ -161,7 +148,7 @@ void SMESH_Hypothesis::SetLibName(const char* theLibName) SMESH_Mesh* SMESH_Hypothesis::GetMeshByPersistentID(int id) { - StudyContextStruct* myStudyContext = _gen->GetStudyContext(_studyId); + StudyContextStruct* myStudyContext = _gen->GetStudyContext(); map::iterator itm = myStudyContext->mapMesh.begin(); for ( ; itm != myStudyContext->mapMesh.end(); itm++) {