timer_list_type Derived Type

type, public :: timer_list_type


Inherits

type~~timer_list_type~~InheritsGraph type~timer_list_type timer_list_type type~timing_data_type timing_data_type type~timer_list_type->type~timing_data_type clocks

Inherited by

type~~timer_list_type~~InheritedByGraph type~timer_list_type timer_list_type type~lib_common_type lib_common_type type~lib_common_type->type~timer_list_type timer

Components

Type Visibility Attributes Name Initial
type(timing_data_type), public :: clocks(nmax)

Data for the stopwatches

integer, public :: nnames = 0

Number of active stopwatches

logical, public :: overflow = .false.

Source Code

  type timer_list_type
    type(timing_data_type) :: clocks(nmax)                         !! Data for the stopwatches
    integer :: nnames = 0                                          !! Number of active stopwatches
    logical :: overflow = .false.
  end type timer_list_type