remove test file

This commit is contained in:
liuyihui 2022-07-28 14:30:17 +08:00
parent 98b652fec7
commit 3452bcbf83
2 changed files with 1 additions and 19 deletions

1
.gitignore vendored
View File

@ -21,5 +21,6 @@ __pycache__
# dev
*.ipynb
test*
*.code-workspace

19
main.py
View File

@ -1,19 +0,0 @@
import numpy as np
from qdx import Process
p1 = Process()
p2 = Process()
# Mg25 + d -> Mg26* + p
angles = [i for i in np.arange(8, 64, 4)] + [10]
for angle in angles:
task = "result/Mg25(dp)Mg26/angle-{:d}.csv".format(angle)
print("Processing Task :", task)
p1("coef1.csv", task, n=5)
p1.energy_filter(12, 30)
p1.draw_result("result/Mg25(dp)Mg26/figure/angle-{:d}.png".format(angle))
p2("coef2.csv", task, n=5)
p2.energy_filter(12, 30)
p2.draw_result("result/Mg25(dp)Mg26/figure/angle-{:d}-o.png".format(angle))