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);