ATLAS Offline Software
Loading...
Searching...
No Matches
python.scripts.diff_pool_files Namespace Reference

Functions

 main (args)

Variables

str __doc__ = "diff two POOL files (containers and sizes)"
str __author__ = "Sebastien Binet"

Function Documentation

◆ main()

python.scripts.diff_pool_files.main ( args)
diff two POOL files (containers and sizes)

Definition at line 24 of file diff_pool_files.py.

24def main(args):
25 """diff two POOL files (containers and sizes)"""
26
27 import os.path as osp
28 old = osp.expandvars(osp.expanduser(args.old))
29 new = osp.expandvars(osp.expanduser(args.new))
30
31 import PyUtils.PoolFile as PF
32 diff = PF.DiffFiles(refFileName = old,
33 chkFileName = new,
34 verbose = args.verbose)
35 diff.printSummary()
36 return diff.status()
int main()
Definition hello.cxx:18

Variable Documentation

◆ __author__

str python.scripts.diff_pool_files.__author__ = "Sebastien Binet"
private

Definition at line 9 of file diff_pool_files.py.

◆ __doc__

str python.scripts.diff_pool_files.__doc__ = "diff two POOL files (containers and sizes)"
private

Definition at line 8 of file diff_pool_files.py.