Nodes of different colours represent the following:
Module Graph
Solid arrows point from a parent (sub)module to the submodule which is
descended from it. Dashed arrows point from a module being used to the
module using it.
Type Graph
Solid arrows point from one derived type to another which extends
(inherits from) it. Dashed arrows point from a derived type to another
type containing it as a components, with a label listing the name(s) of
said component(s).
Call Graph
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Variables
Type
Visibility
Attributes
Name
Initial
real(kind=pp),
public,
dimension(:), allocatable
::
yl
real(kind=pp),
public,
dimension(:), allocatable
::
x1l
real(kind=pp),
public,
dimension(:), allocatable
::
x0l
integer,
public
::
N
Source Code
subroutine fillBetweenx(y,x1,x0,fillColor,fillPattern,lineWidth)!! Fill space between two linesreal(wp),dimension(:),intent(in)::yreal(wp),dimension(:),intent(in)::x1real(wp),dimension(:),intent(in),optional::x0character(*),intent(in),optional::fillColorcharacter(*),intent(in),optional::fillPatternreal(wp),intent(in),optional::lineWidthreal(pp),dimension(:),allocatable::yl,x1l,x0linteger::NN=size(y)yl=localize(y)x1l=localize(x1)if(present(x0))thenx0l=localize(x0)else allocate(x0l(N))x0l=0.0_ppend if if(present(fillColor))call setColor(fillColor)if(present(fillPattern))call setFillPattern(fillPattern)if(present(lineWidth))call setLineWidth(lineWidth)call plfill([x1l(1:N:1),x0l(N:1:-1)],[yl(1:N:1),yl(N:1:-1)])call resetPen()end subroutine fillBetweenx