Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-01-09 09:26:45

0001 #!/usr/bin/env python3
0002 """Standalone script for HepMC3 file normalization.
0003 
0004 This is a convenience wrapper that calls the hepmc3 module's CLI.
0005 It's equivalent to running: python -m acts.examples.hepmc3
0006 """
0007 
0008 import sys
0009 import os
0010 
0011 # Import and run the CLI from the hepmc3 package
0012 from acts.examples.hepmc3.__main__ import main
0013 
0014 if __name__ == "__main__":
0015     sys.exit(main(prog=os.path.basename(sys.argv[0])))