Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:05

0001 #!/usr/bin/env python
0002 
0003 import os, sys, numpy as np
0004 np.set_printoptions(suppress=True, linewidth=200)
0005 
0006 from opticks.ana.fold import Fold
0007 from opticks.ana.eprint import eprint 
0008 
0009 if __name__ == '__main__':
0010     t = Fold.Load(globals=True)
0011     print("\n\n")
0012     eprint("np.all( t.lookup_all == t.lookup_all_src )", globals(), locals() ) 
0013 
0014     print(sys.argv[0])
0015