ATLAS Offline Software
Classes | Functions | Variables
python.Include Namespace Reference

Classes

class  Include
 
class  IncludeError
 

Functions

def basename2 (fn)
 files inclusion -------------------------------------------------------— More...
 

Variables

string __version__ = '1.3.0'
 data ------------------------------------------------------------------— More...
 
string __author__ = 'Wim Lavrijsen (WLavrijsen@lbl.gov)'
 
list __all__
 
string marker = ' -+-'
 
string __marker__ = ' -+-'
 
string silentMarker = ' '
 
string activeMarker = 'A'
 
string tracedMarker = 'T'
 
string callMarker = 'C'
 
string returnMarker = 'R'
 
string lineMarker = '%3d'
 
string fidMarker = '%2d'
 
list excludeTracePattern
 
list includeTracePattern
 
 log = Logging.logging.getLogger( 'Athena' )
 
 optionsPathEnv = os.curdir
 
 optionsPath = re.split( ',|' + os.pathsep, optionsPathEnv )
 
dictionary _filecache = {}
 
dictionary _linecache = {}
 
dictionary _notrcache = {}
 
 include = Include(show = False)
 

Function Documentation

◆ basename2()

def python.Include.basename2 (   fn)

files inclusion -------------------------------------------------------—

Definition at line 69 of file Include.py.

69 def basename2( fn ):
70  return os.path.join( os.path.basename( os.path.dirname( fn ) ), os.path.basename( fn ) )
71 

Variable Documentation

◆ __all__

list python.Include.__all__
private
Initial value:
1 = [ 'include', 'marker', 'lineMarker', 'fidMarker',
2  'callMarker', 'returnMarker', 'activeMarker', 'silentMarker',
3  'tracedMarker' ]

Definition at line 17 of file Include.py.

◆ __author__

string python.Include.__author__ = 'Wim Lavrijsen (WLavrijsen@lbl.gov)'
private

Definition at line 15 of file Include.py.

◆ __marker__

string python.Include.__marker__ = ' -+-'
private

Definition at line 22 of file Include.py.

◆ __version__

string python.Include.__version__ = '1.3.0'
private

data ------------------------------------------------------------------—

Definition at line 14 of file Include.py.

◆ _filecache

dictionary python.Include._filecache = {}
private

Definition at line 72 of file Include.py.

◆ _linecache

dictionary python.Include._linecache = {}
private

Definition at line 73 of file Include.py.

◆ _notrcache

dictionary python.Include._notrcache = {}
private

Definition at line 74 of file Include.py.

◆ activeMarker

string python.Include.activeMarker = 'A'

Definition at line 24 of file Include.py.

◆ callMarker

string python.Include.callMarker = 'C'

Definition at line 26 of file Include.py.

◆ excludeTracePattern

list python.Include.excludeTracePattern
Initial value:
1 = [
2  '*/GaudiPython/*', '*/GaudiKernel/*', # Gaudi framework files
3  '*/AthenaCommon/*', # Athena framework files
4  '*/python%d.%d/*' % sys.version_info[:2], # python system
5  '*/python/*/*Conf.py', # generated conf files
6  '*/PyUtils/decorator.py', # very verbose
7  '*/PyUtils/Decorators.py', # ditto
8  '*/PyUtils/Helper*.py', # ditto
9  '*/lib/ROOT.py', # ROOT import hook gets executed very many times
10  '*importlib._bootstrap*',
11  ]

Definition at line 32 of file Include.py.

◆ fidMarker

string python.Include.fidMarker = '%2d'

Definition at line 29 of file Include.py.

◆ include

python.Include.include = Include(show = False)

Definition at line 319 of file Include.py.

◆ includeTracePattern

list python.Include.includeTracePattern
Initial value:
1 = [ '*/AthenaCommon/Bootstrap.py',
2  '*/AthenaCommon/Atlas.UnixStandardJob.py' ]

Definition at line 45 of file Include.py.

◆ lineMarker

string python.Include.lineMarker = '%3d'

Definition at line 28 of file Include.py.

◆ log

python.Include.log = Logging.logging.getLogger( 'Athena' )

Definition at line 51 of file Include.py.

◆ marker

string python.Include.marker = ' -+-'

Definition at line 21 of file Include.py.

◆ optionsPath

python.Include.optionsPath = re.split( ',|' + os.pathsep, optionsPathEnv )

Definition at line 63 of file Include.py.

◆ optionsPathEnv

python.Include.optionsPathEnv = os.curdir

Definition at line 61 of file Include.py.

◆ returnMarker

string python.Include.returnMarker = 'R'

Definition at line 27 of file Include.py.

◆ silentMarker

string python.Include.silentMarker = ' '

Definition at line 23 of file Include.py.

◆ tracedMarker

string python.Include.tracedMarker = 'T'

Definition at line 25 of file Include.py.

python.Include.basename2
def basename2(fn)
files inclusion -------------------------------------------------------—
Definition: Include.py:69