h5hut_obj_StepCount Function

private impure function h5hut_obj_StepCount(this) result(val)

Returns number of steps.

Type Bound

h5hut_obj

Arguments

Type IntentOptional Attributes Name
class(h5hut_obj), intent(inout) :: this

A H5hut object

Return Value integer

Number of steps


Calls

proc~~h5hut_obj_stepcount~~CallsGraph proc~h5hut_obj_stepcount h5hut_obj%h5hut_obj_StepCount proc~h5hut_obj_getnsteps h5hut_obj%h5hut_obj_GetNSteps proc~h5hut_obj_stepcount->proc~h5hut_obj_getnsteps proc~hdf5_obj_readgroupnames hdf5_obj%hdf5_obj_ReadGroupNames proc~h5hut_obj_getnsteps->proc~hdf5_obj_readgroupnames h5gn_members_f h5gn_members_f proc~hdf5_obj_readgroupnames->h5gn_members_f h5iget_name_f h5iget_name_f proc~hdf5_obj_readgroupnames->h5iget_name_f h5oclose_f h5oclose_f proc~hdf5_obj_readgroupnames->h5oclose_f h5oget_info_f h5oget_info_f proc~hdf5_obj_readgroupnames->h5oget_info_f h5oopen_by_idx_f h5oopen_by_idx_f proc~hdf5_obj_readgroupnames->h5oopen_by_idx_f proc~hdf5_obj_fixgroupname hdf5_obj%hdf5_obj_FixGroupName proc~hdf5_obj_readgroupnames->proc~hdf5_obj_fixgroupname

Source Code

    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