PR: comment debug print

This commit is contained in:
prascle 2013-02-25 10:43:20 +00:00
parent bd8239d683
commit 4e093d8c63
2 changed files with 12 additions and 12 deletions

View File

@ -52,7 +52,7 @@ except:
from salome.smesh.smeshBuilder import Mesh, algoCreator from salome.smesh.smeshBuilder import Mesh, algoCreator
for pluginName in os.environ[ "SMESH_MeshersList" ].split( ":" ): for pluginName in os.environ[ "SMESH_MeshersList" ].split( ":" ):
# #
print "pluginName: ", pluginName #print "pluginName: ", pluginName
pluginBuilderName = pluginName + "Builder" pluginBuilderName = pluginName + "Builder"
try: try:
exec( "from salome.%s.%s import *" % (pluginName, pluginBuilderName)) exec( "from salome.%s.%s import *" % (pluginName, pluginBuilderName))

View File

@ -309,7 +309,7 @@ class smeshBuilder(object, SMESH._objref_SMESH_Gen):
global engine global engine
global smeshInst global smeshInst
global doLcc global doLcc
print "__new__", engine, smeshInst, doLcc #print "__new__", engine, smeshInst, doLcc
if smeshInst is None: if smeshInst is None:
# smesh engine is either retrieved from engine, or created # smesh engine is either retrieved from engine, or created
@ -324,17 +324,17 @@ class smeshBuilder(object, SMESH._objref_SMESH_Gen):
# FindOrLoadComponent called: # FindOrLoadComponent called:
# 1. CORBA resolution of server # 1. CORBA resolution of server
# 2. the __new__ method is called again # 2. the __new__ method is called again
print "smeshInst = lcc.FindOrLoadComponent ", engine, smeshInst, doLcc #print "smeshInst = lcc.FindOrLoadComponent ", engine, smeshInst, doLcc
smeshInst = salome.lcc.FindOrLoadComponent( "FactoryServer", "SMESH" ) smeshInst = salome.lcc.FindOrLoadComponent( "FactoryServer", "SMESH" )
else: else:
# FindOrLoadComponent not called # FindOrLoadComponent not called
if smeshInst is None: if smeshInst is None:
# smeshBuilder instance is created from lcc.FindOrLoadComponent # smeshBuilder instance is created from lcc.FindOrLoadComponent
print "smeshInst = super(smeshBuilder,cls).__new__(cls) ", engine, smeshInst, doLcc #print "smeshInst = super(smeshBuilder,cls).__new__(cls) ", engine, smeshInst, doLcc
smeshInst = super(smeshBuilder,cls).__new__(cls) smeshInst = super(smeshBuilder,cls).__new__(cls)
else: else:
# smesh engine not created: existing engine found # smesh engine not created: existing engine found
print "existing ", engine, smeshInst, doLcc #print "existing ", engine, smeshInst, doLcc
pass pass
return smeshInst return smeshInst
@ -342,7 +342,7 @@ class smeshBuilder(object, SMESH._objref_SMESH_Gen):
return smeshInst return smeshInst
def __init__(self): def __init__(self):
print "__init__" #print "__init__"
SMESH._objref_SMESH_Gen.__init__(self) SMESH._objref_SMESH_Gen.__init__(self)
## Dump component to the Python script ## Dump component to the Python script
@ -363,7 +363,7 @@ class smeshBuilder(object, SMESH._objref_SMESH_Gen):
## Sets the current study and Geometry component ## Sets the current study and Geometry component
# @ingroup l1_auxiliary # @ingroup l1_auxiliary
def init_smesh(self,theStudy,geompyD = None): def init_smesh(self,theStudy,geompyD = None):
print "init_smesh" #print "init_smesh"
self.SetCurrentStudy(theStudy,geompyD) self.SetCurrentStudy(theStudy,geompyD)
## Creates an empty Mesh. This mesh can have an underlying geometry. ## Creates an empty Mesh. This mesh can have an underlying geometry.
@ -1083,7 +1083,7 @@ class Mesh:
for attrName in dir(self): for attrName in dir(self):
attr = getattr( self, attrName ) attr = getattr( self, attrName )
if isinstance( attr, algoCreator ): if isinstance( attr, algoCreator ):
print "algoCreator ", attrName #print "algoCreator ", attrName
setattr( self, attrName, attr.copy( self )) setattr( self, attrName, attr.copy( self ))
## Initializes the Mesh object from an instance of SMESH_Mesh interface ## Initializes the Mesh object from an instance of SMESH_Mesh interface
@ -4377,7 +4377,7 @@ class hypMethodWrapper:
for pluginName in os.environ[ "SMESH_MeshersList" ].split( ":" ): for pluginName in os.environ[ "SMESH_MeshersList" ].split( ":" ):
# #
print "pluginName: ", pluginName #print "pluginName: ", pluginName
pluginBuilderName = pluginName + "Builder" pluginBuilderName = pluginName + "Builder"
try: try:
exec( "from salome.%s.%s import *" % (pluginName, pluginBuilderName)) exec( "from salome.%s.%s import *" % (pluginName, pluginBuilderName))
@ -4386,15 +4386,15 @@ for pluginName in os.environ[ "SMESH_MeshersList" ].split( ":" ):
continue continue
exec( "from salome.%s import %s" % (pluginName, pluginBuilderName)) exec( "from salome.%s import %s" % (pluginName, pluginBuilderName))
plugin = eval( pluginBuilderName ) plugin = eval( pluginBuilderName )
print " plugin:" , str(plugin) #print " plugin:" , str(plugin)
# add methods creating algorithms to Mesh # add methods creating algorithms to Mesh
for k in dir( plugin ): for k in dir( plugin ):
if k[0] == '_': continue if k[0] == '_': continue
algo = getattr( plugin, k ) algo = getattr( plugin, k )
print " algo:", str(algo) #print " algo:", str(algo)
if type( algo ).__name__ == 'classobj' and hasattr( algo, "meshMethod" ): if type( algo ).__name__ == 'classobj' and hasattr( algo, "meshMethod" ):
print " meshMethod:" , str(algo.meshMethod) #print " meshMethod:" , str(algo.meshMethod)
if not hasattr( Mesh, algo.meshMethod ): if not hasattr( Mesh, algo.meshMethod ):
setattr( Mesh, algo.meshMethod, algoCreator() ) setattr( Mesh, algo.meshMethod, algoCreator() )
pass pass