ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
printcpoargs.f90
Go to the documentation of this file.
1 !*********************************************
2 ! Copyright: Edmondo Giovannozzi (2009)
3 ! ENEA
4 ! This software is released under the ITM License
5 !*********************************************
6 subroutine printcpoargs(shot, run, treename, pscreen, xmloutput)
7 implicit none
8 integer :: shot, run
9 character(len=*) :: treename
10 logical :: pscreen
11 logical :: xmloutput
12 
13 character(len=80) :: arg
14 integer :: n
15 integer :: iargc
16 external iargc
17 
18 integer :: i, k
19 
20 shot = 1
21 run = 1
22 treename = 'euitm'
23 pscreen = .false.
24 xmloutput = .false.
25 
26 n = iargc()
27 if (n == 0) then
28  call printhelp
29  call exit(1)
30 end if
31 k = 0
32 do i=1, n
33  call getarg(i, arg)
34  if (arg(1:1) == '-') then
35  if (arg(2:2) == 'p') then
36  pscreen = .true.
37  elseif (arg(2:2) == 'x') then
38  xmloutput = .true.
39  elseif (arg(2:2) == 'h') then
40  call printhelp
41  call exit(0)
42  else
43  print *,'Unrecognized options: ',trim(arg)
44  call printhelp
45  call exit(1)
46  endif
47  else
48  k = k + 1
49  if (k==1) then
50  read(arg,*) shot
51  elseif (k==2) then
52  read(arg,*) run
53  elseif (k==3) then
54  treename = arg
55  else
56  print *,'Too many parameters:', trim(arg)
57  call printhelp
58  call exit(1)
59  endif
60  endif
61 enddo
62 contains
63  subroutine printhelp
64  print *,'PRINTCPO print the fields different from zero of CPOs stored in a MDSPLUS file'
65  print *
66  print *,' Usage: '
67  print *,''
68  print *,' printcpo [options] [shot [run [treename]]]'
69  print *
70  print *,' Parameters:'
71  print *,' shot: the shot number. Defaults to 1'
72  print *,' run: the run number. Defaults to 1'
73  print *,' treename: the name of the tree. Defaults to "euitm"'
74  print *,''
75  print *,' Options:'
76  print *,' -p print some data for vector fields (not yet implemented)'
77  print *,' -x the output is in XML format'
78  print *,' -h print this help'
79  print *
80  print *,'Copyright: Edmondo Giovannozzi (2009)'
81  print *,' ENEA'
82  print *,'This software is released under the ITM License'
83  end subroutine printhelp
84 end subroutine printcpoargs
subroutine printhelp
subroutine printcpoargs(shot, run, treename, pscreen, xmloutput)
Definition: printcpoargs.f90:6