next up previous contents index
Next: HFEP format Up: Data formats Previous: Data formats   Contents   Index

RCS format

RCS2.1 uses standard IEEE 32 bits integer binary and floating representation and is defined for 1D problem.

The format defines one function of an angular variation.

It's made of two real arrays: theta and rcs.

An example:
C
C ntheta     : number of angles
      parameter(ntmax=10*361)
C ntmax: max number of angles
      real theta(ntmax)
      real rcs(ntmax)
C theta      : backscattered angles 
C rcs        : function f(theta)
C iunitr     : unit number chosen by the participant
      open(iunitr,file='RCSTE.dat',form='unformatted')
      read(iunitr) ntheta
      if (ntheta .gt. ntmax) ntheta = ntmax
      read(iunitr) (theta(i),rcs(i),i=1,ntheta)
      close(iunitr)
C



Robert Fournier 2002-09-13