FortranTimerGauge Derived Type

type, public, extends(AbstractGauge) :: FortranTimerGauge


Inherits

type~~fortrantimergauge~~InheritsGraph type~fortrantimergauge FortranTimerGauge type~abstractgauge AbstractGauge type~fortrantimergauge->type~abstractgauge

Constructor

public interface FortranTimerGauge

  • private function new_FortranTimerGauge() result(gauge)

    Arguments

    None

    Return Value type(FortranTimerGauge)


Type-Bound Procedures

procedure, public :: get_measurement

  • private function get_measurement(this) result(measurement)

    Arguments

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

    Return Value real(kind=REAL64)

Source Code

   type, extends(AbstractGauge) :: FortranTimerGauge
      private
      real(kind=REAL64) :: denominator
   contains
      procedure :: get_measurement
   end type FortranTimerGauge