Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #!/usr/bin/env python
0002 
0003 import numpy as np
0004 from opticks.ana.fold import Fold
0005 
0006 if __name__ == '__main__':
0007     a = Fold.Load("$A_FOLD", symbol="a")
0008     b = Fold.Load("$B_FOLD", symbol="b")
0009 
0010     print(a)
0011     print(b)
0012 
0013     assert np.all( a.gs == b.gs )
0014     assert np.all( a.se == b.se )
0015     assert np.all( a.ph == b.ph )
0016