splotP_RR Subroutine

subroutine splotP_RR(pname, X, Y1, Y2, Y3, Y4, Y5, Y6, Y7, Y8, append)

Arguments

Type IntentOptional Attributes Name
character(len=*) :: pname
real(kind=8) :: X
real(kind=8) :: Y1
real(kind=8), optional :: Y2
real(kind=8), optional :: Y3
real(kind=8), optional :: Y4
real(kind=8), optional :: Y5
real(kind=8), optional :: Y6
real(kind=8), optional :: Y7
real(kind=8), optional :: Y8
logical, optional :: append

Calls

proc~~splotp_rr~~CallsGraph proc~splotp_rr splotP_RR reg reg proc~splotp_rr->reg

Source Code

subroutine splotP_RR(pname,X,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8,append)
  character(len=*) :: pname
  real(8)          :: X
  real(8)          :: Y1
  real(8),optional :: Y2,Y3,Y4,Y5,Y6,Y7,Y8
  logical,optional :: append
  logical          :: rw
  rw=.false.;if(present(append))rw=append
  if(rw)then

     open(719,file=reg((pname)),position="append")
  else
     open(719,file=reg((pname)))
  endif
  if(present(Y8))then
     write(719,"(9F21.12)")X,Y1,Y2,Y3,Y4,Y5,Y6,Y7,Y8
  elseif(present(Y7))then
     write(719,"(8F21.12)")X,Y1,Y2,Y3,Y4,Y5,Y6,Y7
  elseif(present(Y6))then
     write(719,"(7F21.12)")X,Y1,Y2,Y3,Y4,Y5,Y6
  elseif(present(Y5))then
     write(719,"(6F21.12)")X,Y1,Y2,Y3,Y4,Y5
  elseif(present(Y4))then
     write(719,"(5F21.12)")X,Y1,Y2,Y3,Y4
  elseif(present(Y3))then
     write(719,"(4F21.12)")X,Y1,Y2,Y3
  elseif(present(Y2))then
     write(719,*)X,Y1,Y2
  else
     write(719,*)X,Y1
  endif
  close(719)
end subroutine splotP_RR