]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
ajout de ang
authorPascale Noyret <pascale.noyret@edf.fr>
Wed, 26 Nov 2014 08:21:54 +0000 (08:21 +0000)
committerPascale Noyret <pascale.noyret@edf.fr>
Wed, 26 Nov 2014 08:21:54 +0000 (08:21 +0000)
Noyau/N_BLOC.py
Noyau/N_FACT.py
Noyau/N_MACRO.py
Noyau/N_OPER.py
Noyau/N_PROC.py

index a491c33aaab5f49356460bb9f46905a5d4ae83eb..58d1844e7d377dba7cf1dabaad0c0523cf16e501 100644 (file)
@@ -51,7 +51,7 @@ class BLOC(N_ENTITE.ENTITE):
     class_instance = N_MCBLOC.MCBLOC
     label = 'BLOC'
 
-    def __init__(self, fr="", docu="", regles=(), statut='f', condition=None,
+    def __init__(self, fr="", docu="", regles=(), statut='f', condition=None,ang=""
                  **args):
         """
             Un bloc est caractérisé par les attributs suivants :
@@ -68,8 +68,7 @@ class BLOC(N_ENTITE.ENTITE):
         """
         # Initialisation des attributs
         self.fr = fr
-        assert args.get(
-            'ang') is None, '"ang" attribute does not exist anymore'
+        self.ang = ang
         self.docu = docu
         if type(regles) == types.TupleType:
             self.regles = regles
index df3f07835d45b4195eca6a1d258626badb90536b..04bcf4aeda737fad4ca90a7301394382633733ea 100644 (file)
@@ -53,7 +53,7 @@ class FACT(N_ENTITE.ENTITE):
     list_instance = N_MCLIST.MCList
     label = 'FACT'
 
-    def __init__(self, fr="", docu="", regles=(), statut='f', defaut=None,
+    def __init__(self, fr="", docu="", regles=(), statut='f', defaut=None,ang=""
                  min=0, max=1, validators=None, **args):
         """
             Un mot-clé facteur est caractérisé par les attributs suivants :
@@ -70,8 +70,7 @@ class FACT(N_ENTITE.ENTITE):
         N_ENTITE.ENTITE.__init__(self, validators)
         # Initialisation des attributs
         self.fr = fr
-        assert args.get(
-            'ang') is None, '"ang" attribute does not exist anymore'
+        self.ang=ang
         self.docu = docu
         if type(regles) == types.TupleType:
             self.regles = regles
index f2350ddcc44985a65c1faffc7bf6460cb9a896f5..58d743e01bf6e2cb6af15eef49da53fb35694301 100644 (file)
@@ -88,7 +88,7 @@ class MACRO(N_ENTITE.ENTITE):
     nommage = nommage
 
     def __init__(
-        self, nom, op, sd_prod=None, reentrant='n', repetable='o', fr="",
+        self, nom, op, sd_prod=None, reentrant='n', repetable='o', fr="",ang="",
             docu="", regles=(), op_init=None, niveau = None, fichier_ini=0, UIinfo=None, **args):
         """
            Méthode d'initialisation de l'objet MACRO. Les arguments sont utilisés pour initialiser
@@ -111,8 +111,7 @@ class MACRO(N_ENTITE.ENTITE):
         self.sd_prod = sd_prod
         self.reentrant = reentrant
         self.fr = fr
-        assert args.get(
-            'ang') is None, '"ang" attribute does not exist anymore'
+        self.ang=ang
         self.repetable = repetable
         self.docu = docu
         if type(regles) == types.TupleType:
index a98c964462bf1ab9fd0cab8fa611de825c9e9657..3c14e09a83342895b175d42879ea841c17ebb4c8 100644 (file)
@@ -87,7 +87,7 @@ class OPER(N_ENTITE.ENTITE):
     label = 'OPER'
     nommage = nommage
 
-    def __init__(self, nom, op, sd_prod, reentrant='n', repetable='o', fr="",
+    def __init__(self, nom, op, sd_prod, reentrant='n', repetable='o', fr="",ang="",
                  docu="", regles=(), op_init=None, niveau = None, UIinfo=None, **args):
         """
            Méthode d'initialisation de l'objet OPER. Les arguments sont utilisés pour initialiser
@@ -98,8 +98,7 @@ class OPER(N_ENTITE.ENTITE):
         self.sd_prod = sd_prod
         self.reentrant = reentrant
         self.fr = fr
-        assert args.get(
-            'ang') is None, '"ang" attribute does not exist anymore'
+        self.ang = ang
         self.repetable = repetable
         self.docu = docu
         if type(regles) == types.TupleType:
index dc735a2b6304005f8591b6a5a141abcf199ef35e..ab3f03782f0403f7174592decbce20f9f5965511 100644 (file)
@@ -81,7 +81,7 @@ class PROC(N_ENTITE.ENTITE):
     class_instance = N_PROC_ETAPE.PROC_ETAPE
     label = 'PROC'
 
-    def __init__(self, nom, op, reentrant='n', repetable='o', fr="",
+    def __init__(self, nom, op, reentrant='n', repetable='o', fr="",ang="",
                  docu="", regles=(), op_init=None, niveau = None, UIinfo=None, **args):
         """
            Méthode d'initialisation de l'objet PROC. Les arguments sont utilisés pour initialiser
@@ -92,8 +92,7 @@ class PROC(N_ENTITE.ENTITE):
         self.reentrant = reentrant
         self.repetable = repetable
         self.fr = fr
-        assert args.get(
-            'ang') is None, '"ang" attribute does not exist anymore'
+        self.ang=""
         self.docu = docu
         if type(regles) == types.TupleType:
             self.regles = regles