Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Commit

Permalink
allvariances and variances
Browse files Browse the repository at this point in the history
  • Loading branch information
kratsg committed Sep 19, 2018
1 parent 95df5d1 commit ee773ce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion uproot_methods/classes/TH1.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ def allvalues(self):

@property
def variances(self):
return self._fSumw2
return self._fSumw2[1:-1]

@property
def allvariances(self):
return self._fSumw2[:]

@property
def numpy(self):
Expand Down

0 comments on commit ee773ce

Please sign in to comment.