Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #!/usr/bin/env python
0002 """
0003 
0004 
0005 """
0006 import os, numpy as np
0007 from opticks.ana.fold import Fold
0008 
0009 #import matplotlib.pyplot as mp  
0010 #SIZE = np.array([1280, 720])
0011 
0012 np.set_printoptions(precision=5, linewidth=200, suppress=True )
0013 
0014 
0015 if __name__ == '__main__':
0016     f = Fold.Load(symbol="f")
0017     print(repr(f))
0018 
0019     #a = np.load(os.path.expandvars("$FOLD/curand_uniform_test.npy"))
0020     #print("a.shape\n",a.shape)
0021     #print("a[:10]\n",a[:10])
0022     #print("a[-10:]\n",a[-10:])
0023