]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
ajout catalogue
authorpascale.noyret <pascale.noyret@edf.fr>
Mon, 31 Aug 2020 13:11:45 +0000 (15:11 +0200)
committerpascale.noyret <pascale.noyret@edf.fr>
Mon, 31 Aug 2020 13:11:45 +0000 (15:11 +0200)
Tests/MappingAccasXsd/cata_ASSD.py [new file with mode: 0644]

diff --git a/Tests/MappingAccasXsd/cata_ASSD.py b/Tests/MappingAccasXsd/cata_ASSD.py
new file mode 100644 (file)
index 0000000..5bb15be
--- /dev/null
@@ -0,0 +1,57 @@
+# Copyright (C) 2008-2018 EDF R&D
+#
+# This file is part of SALOME ADAO module
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+import os, re
+import Accas
+from Accas import *
+monFichier=os.path.abspath(__file__)
+class maillage(ASSD):pass
+class champ(ASSD):pass
+
+JdC = JDC_CATA (
+    code='Essai'
+    )
+VERSION_CATALOGUE='V_0'
+
+
+Maillage = OPER ( nom='Maillage', sd_prod=maillage,
+    fichier = SIMP( statut='o', typ = ('Fichier','All Files (*)')),
+) 
+Champ = OPER ( nom='Champ', sd_prod=champ,
+    SurLeMaillage = SIMP( statut='o', typ = maillage),
+) 
+
+#MaFonction = PROC( nom='MaFonction',
+#    monArgument1 = SIMP( statut='o', typ = 'TXM'),
+#    monArgument2 = SIMP( statut='f', typ = 'I'),
+#)
+#DefinitionListe = PROC( nom='DefinitionListe', 
+#        creeListe = SIMP( statut='f', typ = 'TXM',max='**'),
+#        creeListe2 = SIMP( statut='f', typ = 'I',homo="SansOrdreNiDoublon",max='**', into=(1,2,3,4)),
+#        creeListe3 = SIMP( statut='f', typ = 'I',max='**', into=(1,2,3,4)),
+#)
+#DefinitionFact = PROC (nom='DefinitionFact',
+#        leFactRepetable = FACT ( max= '**',
+#         unEntier = SIMP (statut='o', typ='I', defaut =1),
+#        ),
+#        leFactCompose = FACT (statut ='o',max='**',
+#         unFactPart1 = SIMP (statut='o', typ='I', defaut =1),
+#         unFactPart2 = SIMP (statut='o', typ='I', defaut =1),
+#        )
+#)