Change Eclipse configuration
[jabaws.git] / website / archive / binaries / mac / src / disembl / Tisean_3.0.1 / source_f / intervals.f
1 c===========================================================================
2 c
3 c   This file is part of TISEAN
4
5 c   Copyright (c) 1998-2007 Rainer Hegger, Holger Kantz, Thomas Schreiber
6
7 c   TISEAN is free software; you can redistribute it and/or modify
8 c   it under the terms of the GNU General Public License as published by
9 c   the Free Software Foundation; either version 2 of the License, or
10 c   (at your option) any later version.
11 c
12 c   TISEAN is distributed in the hope that it will be useful,
13 c   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 c   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 c   GNU General Public License for more details.
16 c
17 c   You should have received a copy of the GNU General Public License
18 c   along with TISEAN; if not, write to the Free Software
19 c   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 c
21 c===========================================================================
22 c   intervals.f
23 c   convert event times to inter-event intervals
24 c   author T. Schreiber (1999)
25 c===========================================================================
26       parameter(nx=1000000)
27       dimension x(nx)
28       character*72 file, fout
29       data iverb/1/
30
31       call whatido("event time to interval conversion",iverb)
32       nmaxx=ican("l",nx)
33       nexcl=ican("x",0)
34       jcol=ican("c",0)
35       isout=igetout(fout,iverb)
36
37       do 10 ifi=1,nstrings()
38          call nthstring(ifi,file)
39          nmax=nmaxx
40          call readfile(nmax,x,nexcl,jcol,file,iverb)
41          nmax=nmax-1
42          do 20 n=1,nmax
43  20         x(n)=x(n+1)-x(n)
44          if(file.eq."-") file="stdin"
45          if(isout.eq.1) call addsuff(fout,file,"_ss")
46  10      call writefile(nmax,x,fout,iverb)
47       end
48
49       subroutine usage()
50 c usage message
51
52       call whatineed(
53      .   "[-o outfile -l# -x# -c# -V# -h] file(s)")
54       call popt("l","number of values to be read (all)")
55       call popt("x","number of values to be skipped (0)")
56       call popt("c","column to be read (1 or file,#)")
57       call pout("file_ss")
58       call pall()
59       stop
60       end
61
62