A TimeSeriesProperty is a specialised mantid.kernel.Property class that holds time/value pairs. It offers a selection of statistics through it’s Python interface which you can use in your scripts.
To get hold of a time series property, you need to get the handle to the object from the mantid.api.Run object.
To get the mantid.kernel.TimeSeriesPropertyStatistics object, you then call getStatistics() on the property.
This allows you to access the following attributes:
Handling boundary condition
Definition: log_t0, log_tf, filter_t0, filter_tf
It is to say that the first entry of a log starts from the first occurrence of TRUE value.
Return the nth interval
Return the value of nth interval.