]> SALOME platform Git repositories - tools/eficas.git/blobdiff - Noyau/__init__.py
Salome HOME
gestion des listes et label sur 2
[tools/eficas.git] / Noyau / __init__.py
index e956f6ca600335a663bac95071664f89ef0a3fc1..aaf6d59a74c02577aac8e755ea1dc06a38f4ba7e 100644 (file)
@@ -1,8 +1,6 @@
-#@ MODIF __init__ Noyau  DATE 12/10/2011   AUTEUR COURTOIS M.COURTOIS 
-# -*- coding: iso-8859-1 -*-
-#            CONFIGURATION MANAGEMENT OF EDF VERSION
+# coding=utf-8
 # ======================================================================
-# COPYRIGHT (C) 1991 - 2011  EDF R&D                  WWW.CODE-ASTER.ORG
+# COPYRIGHT (C) 1991 - 2015  EDF R&D                  WWW.CODE-ASTER.ORG
 # THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
 # IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
 # THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
 
 """
     Ce package fournit les classes de base d'EFICAS.
-    Ces classes permettent d'effectuer quelques opérations basiques :
+    Ces classes permettent d'effectuer quelques opérations basiques :
 
-      - la création
+      - la création
 
-      - la vérification des définitions
+      - la vérification des définitions
 
-      - la création d'objets de type OBJECT à partir d'une définition de type ENTITE
+      - la création d'objets de type OBJECT à partir d'une définition de type ENTITE
 """
 # Avant toutes choses, on met le module context dans le global de l'interpreteur (__builtin__)
-# sous le nom CONTEXT afin d'avoir accès aux fonctions
-# get_current_step, set_current_step et unset_current_step de n'importe où
+# sous le nom CONTEXT afin d'avoir accès aux fonctions
+# get_current_step, set_current_step et unset_current_step de n'importe où
 import context
 import __builtin__
-__builtin__.CONTEXT=context
+__builtin__.CONTEXT = context
+
 
 def _(msg):
     """Differs translation."""
@@ -48,6 +47,14 @@ __builtin__._ = _
 from N_SIMP import SIMP
 from N_FACT import FACT
 
-# structures de données
+# structures de données
 import asojb
 from asojb import AsBase
+
+# Only the first MAXSIZE objects will be checked
+# This is used for the number of MCFACT, the number of MCSIMP and the number of
+# values in a MCSIMP.
+MAXSIZE = 500
+
+MAXSIZE_MSGCHK = ' <I> Only the first {0} occurrences (total: {1}) have been checked.'
+MAXSIZE_MSGKEEP = ' <I> Only the first {0} occurrences (total: {1}) have been printed.'