Format issue in getSumWeight histogram title
The title is:
if (maxAbsValue > 0) title = Form("w < %d", maxAbsValue);
This formats maxAbsValue
as an int
. It should be:
if (maxAbsValue > 0) title = Form("w < %f", maxAbsValue);
The title is:
if (maxAbsValue > 0) title = Form("w < %d", maxAbsValue);
This formats maxAbsValue
as an int
. It should be:
if (maxAbsValue > 0) title = Form("w < %f", maxAbsValue);
added changenone statusto do typesoftware labels
mentioned in merge request gitlab-profile!54 (merged)
mentioned in commit gitlab-profile@39a483b5
closed with merge request gitlab-profile!54 (merged)