Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Verbytskyi committed Jan 6, 2025
1 parent 26153be commit e320ac5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DDCore/python/dd4hepFactories.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def scanPath(self):
if os.getenv("LD_LIBRARY_PATH") is not None:
ldp = os.environ['LD_LIBRARY_PATH'].split(':')
else:
ldp = [ '/usr/lib64', '/usr/lib/', '/usr/local/lib', '/usr/lib64/root', '/usr/lib/root', '/usr/local/lib/root' ]
ldp = ['/usr/lib64', '/usr/lib/', '/usr/local/lib', '/usr/lib64/root', '/usr/lib/root', '/usr/local/lib/root']
for p in ldp:
if len(p):
logger.info('+== Search component directory: ' + p)
Expand Down
6 changes: 3 additions & 3 deletions DDCore/python/dd4hep_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def compileAClick(dictionary, g4=True):
rootsys = "/usr"

inc = ' -I' + rootsys + '/include -I' + dd4hep + '/include '
lib = ' -L' + dd4hep + '/lib64 '+ ' -L' + dd4hep + '/lib -lDDCore -lDDG4 -lDDSegmentation '
lib = ' -L' + dd4hep + '/lib64 ' + ' -L' + dd4hep + '/lib -lDDCore -lDDG4 -lDDSegmentation '
if g4:
if os.getenv("G4INSTALL") is not None:
geant4 = os.environ['G4INSTALL']
Expand Down Expand Up @@ -67,8 +67,8 @@ def loaddd4hep():
rootsys = "/usr"
sys.path.append(rootsys + os.sep + 'lib')
sys.path.append(rootsys + os.sep + 'lib64')
sys.path.append(rootsys + os.sep + 'lib' + os.sep +'root')
sys.path.append(rootsys + os.sep + 'lib64' + os.sep +'root')
sys.path.append(rootsys + os.sep + 'lib' + os.sep + 'root')
sys.path.append(rootsys + os.sep + 'lib64' + os.sep + 'root')
from ROOT import gSystem

import platform
Expand Down

0 comments on commit e320ac5

Please sign in to comment.