Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #!/usr/bin/env python
0002 
0003 import os, numpy as np, matplotlib.pyplot as plt
0004 SIZE = np.array([1280, 720])
0005 
0006 s = np.load("simtrace.npy")
0007 lpos = s[:,1,:3]
0008 
0009 title = os.getcwd()
0010 
0011 fig,ax = plt.subplots(figsize=SIZE/100)
0012 ax.set_aspect('equal')
0013 fig.suptitle(title)
0014 
0015 ax.scatter( lpos[:,0], lpos[:,2] )
0016 fig.show() 
0017 
0018