Shift histogram

Is there any predefined method to shift a histogram (e.g. TH1F) along it’s x-axis? I’ve been going through the Reference Guide (for v5.14) and the discussion forums and can’t find anything like this. I could do it manually, but if there’s already a method to do this then there’s no reason to reinvent the wheel.

Thanks!
Matt

PS - I meant to put this in “ROOT Discussion,” but now I can’t move it, sorry.

hist->GetXaxis()->SetLimits(xmin,xmax);
and make sure that the bin-width remains the same

Rene