Data about each stopwatch - for timing routines
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| integer, | public | :: | ncalls |
Number of times stopwatch has been called |
|||
| real(kind=DP), | public | :: | ctime |
Total time on stopwatch |
|||
| real(kind=DP), | public | :: | ptime |
Temporary record of time when watch is started |
|||
| character(len=60), | public | :: | label |
What is this stopwatch timing |
type timing_data_type !! Data about each stopwatch - for timing routines integer :: ncalls !! Number of times stopwatch has been called real(kind=DP) :: ctime !! Total time on stopwatch real(kind=DP) :: ptime !! Temporary record of time when watch is started character(len=60) :: label !! What is this stopwatch timing end type timing_data_type