Step function is available?

I look through functions in TMath, but I didn’t find the step function. There is a step function available?

You can use TMath::Floor or TMath::Ceil functions. eg
TF1 f1(“f1”,“TMath::Floor(x)”,-5,5);
f1.SetNpx(1000);
f1.Draw();

Rene