Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmookler committed Jul 16, 2024
1 parent bd279b3 commit 23746de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions benchmarks/zdc_lyso/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ rule zdc_analysis:
input:
expand("sim_output/zdc_lyso/{{DETECTOR_CONFIG}}_{particle}_{beam_energy}GeV_theta_{theta_min}deg_thru_{theta_max}deg.eicrecon.tree.edm4eic.root",
particle=["gamma"],
beam_energy=["0.005", "0.01", "0.05", "0.1", "0.5", "1."],
beam_energy=["0.005", "0.01", "0.05", "0.1", "0.5", "1.0"],
theta_min=["0"],
theta_max=["0.3"]),
script="benchmarks/zdc_lyso/analysis/analysis.py",
Expand All @@ -81,7 +81,7 @@ rule create_all_hepmc:
input:
expand("data/{particle}_{beam_energy}GeV_theta_{theta_min}deg_thru_{theta_max}deg.hepmc",
particle=["gamma"],
beam_energy=["0.005", "0.01", "0.05", "0.1", "0.5", "1."],
beam_energy=["0.005", "0.01", "0.05", "0.1", "0.5", "1.0"],
theta_min=["0"],
theta_max=["0.3"])

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/zdc_lyso/analysis/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
def gaussian(x, amp, mean, sigma):
return amp * np.exp( -(x - mean)**2 / (2*sigma**2) )

Energy = [0.005, 0.01, 0.05, 0.1, 0.5, 1]
Energy = [0.005, 0.01, 0.05, 0.1, 0.5, 1.0]

df = pd.DataFrame({})
for eng in Energy:
Expand Down

0 comments on commit 23746de

Please sign in to comment.