Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hist/hist/inc/TH1.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class TH1 : public TNamed, public TAttLine, public TAttFill, public TAttMarker {
friend class TH1Merger;

protected:
Int_t fNcells; ///< Number of bins(1D), cells (2D) +U/Overflows
Int_t fNcells; ///< Number of bins (1D) / total of cells (2D) / voxels (3D) +Under/Overflows
TAxis fXaxis; ///< X axis descriptor
TAxis fYaxis; ///< Y axis descriptor
TAxis fZaxis; ///< Z axis descriptor
Expand Down Expand Up @@ -323,6 +323,7 @@ class TH1 : public TNamed, public TAttLine, public TAttFill, public TAttMarker {

virtual Int_t GetQuantiles(Int_t n, Double_t *xp, const Double_t *p = nullptr);
virtual Double_t GetRandom(TRandom * rng = nullptr) const;
void GetRangeOfFilledWeights(const Int_t, Int_t, Int_t, bool) const {};
Comment thread
ferdymercury marked this conversation as resolved.
virtual void GetStats(Double_t *stats) const;
virtual Double_t GetStdDev(Int_t axis=1) const;
virtual Double_t GetStdDevError(Int_t axis=1) const;
Expand Down
Loading