Let's assume you have an ideal open at the reference plane. So your S-Parameters are 1.0+0.0i.
The the Low Pass Step will go from 0 to 1. The value which you will have at T0 depends on your applied window function and if you provided the DC point or if it was extrapolated. It will depend as well on the used integral function. The last value of the integral of the time domain data will be exactly 1.0 independent of the used window function.
If I take a look at your -10dB data then I've the following comments:
1. Take a look at the Low Pass Impulse response with a rectangular window function. Only the value at T0 is 0.31623 all other are 0. That's what you and I would expect. Right?
2. In the Impedance world the T0 point is 92.248 Ohm and all other 50 Ohm.
3. The Low Pass Step response is not a simple sum up of the impulse response. I'm using cumulative trapezoidal numerical integration, e.g.:
>> d = [0 0 0.31623 0 0];
>> cumtrapz(d)
ans =
0 0 0.1581 0.3162 0.3162
Hope this helps.
Regards
Michael