Skip to content

Commit

Permalink
name
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Apr 12, 2021
1 parent 3907971 commit 9919786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_bh.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def test_one():
variances = np.array([0.25, 0.49, 0.16])
range = (0, 1)
bins = 3
h1 = pgbh.f1d(counts=counts, bins=bins, range=range, variances=variances)
h1 = pgbh.f1d_to_boost(counts=counts, bins=bins, range=range, variances=variances)
h2 = bh.Histogram(bh.axis.Regular(3, 0, 1), storage=bh.storage.Weight())
h2.fill([0.2, 0.5, 0.8], weight=[0.5, 0.7, 0.4])
print(h1)
Expand Down

0 comments on commit 9919786

Please sign in to comment.