Skip to content
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

ROOT Macros need to compile in ROOT6 (Sim) #8709

Merged
merged 1 commit into from
Apr 15, 2015
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ struct weightEntryType
}
TString name_;
const TH1* lut_;
TAxis* xAxis_;
const TAxis* xAxis_;
Int_t numBinsX_;
TAxis* yAxis_;
const TAxis* yAxis_;
Int_t numBinsY_;
int variableX_;
int variableY_;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ TGraphAsymmErrors* getEfficiency(const TH1* histogram_numerator, const TH1* hist
return 0;
}

TAxis* xAxis = histogram_numerator->GetXaxis();
const TAxis* xAxis = histogram_numerator->GetXaxis();

Int_t nBins = xAxis->GetNbins();
TArrayF x(nBins);
Expand Down