Salome HOME
Changed parameter name entry in detCaseEntry
authorRenaud Barate <renaud.barate@edf.fr>
Tue, 31 Aug 2010 13:17:46 +0000 (13:17 +0000)
committerRenaud Barate <renaud.barate@edf.fr>
Tue, 31 Aug 2010 13:17:46 +0000 (13:17 +0000)
idl/DEVIATION_Gen.idl
resources/GENERICSOLVERCatalog.xml.in
src/GENERICSOLVER/DEVIATION.py

index 78cac6cedec8bcbf028b99fcdb8cae8b356427b6..bdeaeddfe4c0f350178e50e31219bf5f510b9a4d 100644 (file)
@@ -52,9 +52,9 @@ module GENERICSOLVER_ORB
      * identify them in future calls to Exec.
      *
      * @param studyID        the identifier of the study containing the deterministic data
-     * @param entry          the identifier of the deterministic case within the study
+     * @param detCaseEntry   the identifier of the deterministic case within the study
      */
-    void Init(in long studyID, in SALOMEDS::ID entry)
+    void Init(in long studyID, in SALOMEDS::ID detCaseEntry)
       raises (SALOME::SALOME_Exception);
 
     /**
index d4ef765c2a439b600ca1af0343c58027557d9a10..27b3f0b941c6c5980ef0dddba01c20d6d58fcbdd 100644 (file)
                                                                <inParameter-type>long</inParameter-type>
                                                        </inParameter>
                                                        <inParameter>
-                                                               <inParameter-name>entry</inParameter-name>
+                                                               <inParameter-name>detCaseEntry</inParameter-name>
                                                                <inParameter-type>string</inParameter-type>
                                                        </inParameter>
                                                </inParameter-list>
index 8d1a37c91ec69cdcebf31bcf60955304aa30fca8..1034a24c8b7df1af089588a277e6bcec79d54985 100644 (file)
@@ -126,7 +126,7 @@ class DEVIATION(GENERICSOLVER_ORB__POA.DEVIATION_Gen,
                                      inspect.stack()[1][1], inspect.stack()[1][2])
         raise SALOME.SALOME_Exception(exc)
 
-    def Init(self, studyId, caseEntry):
+    def Init(self, studyId, detCaseEntry):
         """
         This method is an example for the initialization of a computation component for
         use with OpenTURNS in SALOME 5.1.5 and later (for YACS integration)
@@ -137,7 +137,7 @@ class DEVIATION(GENERICSOLVER_ORB__POA.DEVIATION_Gen,
             salome.salome_init()
             DEVIATION.lock.release()
 
-            self.deterministicValues = GetDataFromCase(studyId, caseEntry)
+            self.deterministicValues = GetDataFromCase(studyId, detCaseEntry)
             logger.debug("deterministic values: %s" % self.deterministicValues)
         except:
             self._raiseSalomeError()