Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Sherwood
athena
Commits
95ce5655
Commit
95ce5655
authored
7 years ago
by
Dan Andrei Ciubotaru
Browse files
Options
Downloads
Patches
Plain Diff
fixed error with clidgen and added meta-reader to PATH environment
Former-commit-id:
662a7cef
parent
0d58f068
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Tools/PyUtils/CMakeLists.txt
+2
-1
2 additions, 1 deletion
Tools/PyUtils/CMakeLists.txt
Tools/PyUtils/python/MetaReader.py
+1
-1
1 addition, 1 deletion
Tools/PyUtils/python/MetaReader.py
with
3 additions
and
2 deletions
Tools/PyUtils/CMakeLists.txt
+
2
−
1
View file @
95ce5655
...
@@ -17,7 +17,7 @@ find_package( ROOT COMPONENTS Core PyROOT Tree MathCore Hist RIO pthread )
...
@@ -17,7 +17,7 @@ find_package( ROOT COMPONENTS Core PyROOT Tree MathCore Hist RIO pthread )
# Install files from the package:
# Install files from the package:
atlas_install_python_modules
(
python/*.py python/AthFile python/scripts
)
atlas_install_python_modules
(
python/*.py python/AthFile python/scripts
)
atlas_install_scripts
(
bin/acmd.py bin/atl-gen-athena-d3pd-reader bin/checkFile.py bin/checkPlugins.py bin/checkSG.py bin/checkMetaSG.py bin/checkTP.py bin/checkTag.py bin/checkxAOD.py bin/diff-athfile bin/diff-jobo-cfg.py bin/diffConfigs.py bin/diffPoolFiles.py bin/diffTAGTree.py bin/dlldep.py bin/dso-stats.py bin/dump-athfile.py bin/dumpAthfilelite.py bin/filter-and-merge-d3pd.py bin/getMetadata.py bin/gen_klass.py bin/get-tag-diff.py bin/gprof2dot bin/issues bin/magnifyPoolFile.py bin/merge-poolfiles.py bin/pep8.py bin/pool_extractFileIdentifier.py bin/pool_insertFileToCatalog.py bin/print_auditor_callgraph.py bin/pyroot.py bin/vmem-sz.py
)
atlas_install_scripts
(
bin/acmd.py bin/atl-gen-athena-d3pd-reader bin/checkFile.py bin/checkPlugins.py bin/checkSG.py bin/checkMetaSG.py bin/checkTP.py bin/checkTag.py bin/checkxAOD.py bin/diff-athfile bin/diff-jobo-cfg.py bin/diffConfigs.py bin/diffPoolFiles.py bin/diffTAGTree.py bin/dlldep.py bin/dso-stats.py bin/dump-athfile.py bin/dumpAthfilelite.py bin/filter-and-merge-d3pd.py bin/getMetadata.py bin/gen_klass.py bin/get-tag-diff.py bin/gprof2dot bin/issues bin/magnifyPoolFile.py bin/merge-poolfiles.py bin/pep8.py bin/pool_extractFileIdentifier.py bin/pool_insertFileToCatalog.py bin/print_auditor_callgraph.py bin/pyroot.py bin/vmem-sz.py
bin/meta-reader.py
)
# Aliases:
# Aliases:
atlas_add_alias
(
checkFile
"checkFile.py"
)
atlas_add_alias
(
checkFile
"checkFile.py"
)
...
@@ -41,3 +41,4 @@ atlas_add_alias( diff-jobo-cfg "diff-jobo-cfg.py" )
...
@@ -41,3 +41,4 @@ atlas_add_alias( diff-jobo-cfg "diff-jobo-cfg.py" )
atlas_add_alias
(
acmd
"acmd.py"
)
atlas_add_alias
(
acmd
"acmd.py"
)
atlas_add_alias
(
vmem-sz
"vmem-sz.py"
)
atlas_add_alias
(
vmem-sz
"vmem-sz.py"
)
atlas_add_alias
(
getMetadata
"getMetadata.py"
)
atlas_add_alias
(
getMetadata
"getMetadata.py"
)
atlas_add_alias
(
meta-reader
"meta-reader.py"
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Tools/PyUtils/python/MetaReader.py
+
1
−
1
View file @
95ce5655
...
@@ -53,8 +53,8 @@ def read_metadata(filenames, file_type=None, full=False):
...
@@ -53,8 +53,8 @@ def read_metadata(filenames, file_type=None, full=False):
# ----------------------------------------------------------------------------------------------------------------#
# ----------------------------------------------------------------------------------------------------------------#
# retrieves metadata from POOL files.
# retrieves metadata from POOL files.
if
current_file_type
==
'
POOL
'
:
if
current_file_type
==
'
POOL
'
:
from
CLIDComps.clidGenerator
import
clidGenerator
from
CLIDComps.clidGenerator
import
clidGenerator
global
clidgen
clidgen
=
clidGenerator
(
db
=
None
)
clidgen
=
clidGenerator
(
db
=
None
)
evt
=
ROOT
.
POOL
.
TEvent
()
evt
=
ROOT
.
POOL
.
TEvent
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment