Variables | |
argc = len(sys.argv) | |
deg = math.radians(1) | |
float | meter = 1.0 |
theta = float(sys.argv[1])*deg | |
tanth = math.tan(theta) | |
float | Ltpc = 3.6 |
float | Htpc = 6.0 |
float | Wtpc = 2.3 |
list | p1 = [-Ltpc, 0.5*Htpc, 0] |
list | p2 = [ 0, 0.5*Htpc, Ltpc/tanth] |
int | Nreplica = int(3.*Wtpc / (Ltpc/tanth))+1 |
test_gen_rays_pdsp.argc = len(sys.argv) |
Definition at line 6 of file test_gen_rays_pdsp.py.
test_gen_rays_pdsp.deg = math.radians(1) |
Definition at line 11 of file test_gen_rays_pdsp.py.
float test_gen_rays_pdsp.Htpc = 6.0 |
Definition at line 18 of file test_gen_rays_pdsp.py.
float test_gen_rays_pdsp.Ltpc = 3.6 |
Definition at line 17 of file test_gen_rays_pdsp.py.
float test_gen_rays_pdsp.meter = 1.0 |
Definition at line 12 of file test_gen_rays_pdsp.py.
Definition at line 23 of file test_gen_rays_pdsp.py.
Definition at line 21 of file test_gen_rays_pdsp.py.
Definition at line 22 of file test_gen_rays_pdsp.py.
test_gen_rays_pdsp.tanth = math.tan(theta) |
Definition at line 15 of file test_gen_rays_pdsp.py.
test_gen_rays_pdsp.theta = float(sys.argv[1])*deg |
Definition at line 14 of file test_gen_rays_pdsp.py.
float test_gen_rays_pdsp.Wtpc = 2.3 |
Definition at line 19 of file test_gen_rays_pdsp.py.