Skip to content

[doNOTmerge] Investigate if adding empty functions changes file size #18486

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 1 commit 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
5 changes: 4 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 @@ -209,6 +209,8 @@ class TH1 : public TNamed, public TAttLine, public TAttFill, public TAttMarker {
virtual void AddBinContent(Int_t bin, Double_t w) = 0;
static void AddDirectory(Bool_t add=kTRUE);
static Bool_t AddDirectoryStatus();
virtual void AutoZoom() {}; // *MENU*
virtual void UnZoom() {}; // *MENU*
void Browse(TBrowser *b) override;
virtual Bool_t CanExtendAllAxes() const;
virtual Double_t Chi2Test(const TH1* h2, Option_t *option = "UU", Double_t *res = nullptr) const;
Expand Down Expand Up @@ -323,6 +325,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;
Expand Down
Loading