Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | u | |||
character(len=*), | intent(in) | :: | title |
Nodes of different colours represent the following:
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.
subroutine writeHeaderVTK(u,title)
integer,intent(in)::u
character(*),intent(in)::title
write(u,"(A)") "# vtk DataFile Version 2.0"
write(u,"(A)") title
write(u,"(A)") "ASCII"
write(u,"(A)") ""
end subroutine writeHeaderVTK