Returns number of steps.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(h5hut_obj), | intent(inout) | :: | this |
A H5hut object |
Number of steps
impure function h5hut_obj_StepCount(this) result (val) !> Returns number of steps. implicit none class(h5hut_obj), intent(inout) :: this !! A H5hut object integer :: val !! Number of steps ! Return number of steps val=this%GetNSteps() return end function h5hut_obj_StepCount