1
C @(#)ainfo.for 19.1 (ES0-DMD) 02/25/03 13:18:59
2
C===========================================================================
3
C Copyright (C) 1995 European Southern Observatory (ESO)
5
C This program is free software; you can redistribute it and/or
6
C modify it under the terms of the GNU General Public License as
7
C published by the Free Software Foundation; either version 2 of
8
C the License, or (at your option) any later version.
10
C This program is distributed in the hope that it will be useful,
11
C but WITHOUT ANY WARRANTY; without even the implied warranty of
12
C MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
C GNU General Public License for more details.
15
C You should have received a copy of the GNU General Public
16
C License along with this program; if not, write to the Free
17
C Software Foundation, Inc., 675 Massachusetss Ave, Cambridge,
20
C Corresponding concerning ESO-MIDAS should be addressed as follows:
21
C Internet e-mail: midas@eso.org
22
C Postal address: European Southern Observatory
23
C Data Management Division
24
C Karl-Schwarzschild-Strasse 2
25
C D 85748 Garching bei Muenchen
27
C===========================================================================
30
C++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
32
C writes information on the noise statistics and filter performance
35
C EG : exspectation value by noise of gradients at the given order
36
C SG : standard deviation of gradients
37
C ES : exspectation value of Laplace-terms
38
C EL : standard deviation of Laplace-terms
39
C NSG : number of pixels wich became significant by the gradient
40
C NSL : number of pixels wich became significant by Laplace
41
C NREST : number of pixels wich did not become significant at
42
C any order. They are set by the maximal filter size.
43
C---------------------------------------------------------------------
46
INTEGER NSG,NSL,NREST,ORD,I,ST
50
COMMON /TEST/EG(16),SG(16),EL(16),SL(16),NSG(16),
52
100 FORMAT(' ',1X,'ORD',7X,'EG',11X,'SG',11X,'EL',11X,
53
> 'SL',11X,'NSG',7X,'NSL')
54
200 FORMAT (' ',1X,I3,4(1X,G12.3),2(I10))
55
300 FORMAT (' ',60X,'NREST:',I10)
61
WRITE (A,200) I,EG(I),SG(I),EL(I),SL(I),NSG(I),NSL(I)