Skip to content

[doNOTmerge] check if filesize increase depends on comment title #18487

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
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
@@ -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
@@ -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 {};
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;
Loading