Skip to content
Snippets Groups Projects
Commit e5b4630c authored by Danilo Piparo's avatar Danilo Piparo
Browse files

[TDF] Fix bug linked to Z and Y limits of profiles

parent 1bb3a527
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ TH3DModel::~TH3DModel()
TProfile1DModel::TProfile1DModel(const ::TProfile &h)
: fName(h.GetName()), fTitle(h.GetTitle()), fNbinsX(h.GetNbinsX()), fXLow(h.GetXaxis()->GetXmin()),
fXUp(h.GetXaxis()->GetXmax()), fYLow(h.GetYaxis()->GetXmin()), fYUp(h.GetYaxis()->GetXmax()),
fXUp(h.GetXaxis()->GetXmax()), fYLow(h.GetYmin()), fYUp(h.GetYmax()),
fOption(h.GetErrorOption())
{
}
......@@ -115,7 +115,7 @@ TProfile1DModel::~TProfile1DModel()
TProfile2DModel::TProfile2DModel(const ::TProfile2D &h)
: fName(h.GetName()), fTitle(h.GetTitle()), fNbinsX(h.GetNbinsX()), fXLow(h.GetXaxis()->GetXmin()),
fXUp(h.GetXaxis()->GetXmax()), fNbinsY(h.GetNbinsY()), fYLow(h.GetYaxis()->GetXmin()),
fYUp(h.GetYaxis()->GetXmax()), fZLow(h.GetZaxis()->GetXmin()), fZUp(h.GetZaxis()->GetXmax()),
fYUp(h.GetYaxis()->GetXmax()), fZLow(h.GetZmin()), fZUp(h.GetZmax()),
fOption(h.GetErrorOption())
{
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment