ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/hd/rhinfo.c
Revision: 3.11
Committed: Thu Sep 9 01:06:19 2004 UTC (19 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R7P2, rad3R7P1, rad4R0, rad3R6, rad3R6P1, rad3R8, rad3R9
Changes since 3.10: +2 -2 lines
Log Message:
Got rid of silly cost-cutting (and corner-cutting) in hdfiluse()

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: rhinfo.c,v 3.10 2004/01/01 11:21:55 schorsch Exp $";
3 #endif
4 /*
5 * Get general information on holodeck file
6 */
7
8 #include <stdio.h>
9
10 #include "platform.h"
11 #include "resolu.h"
12 #include "holo.h"
13
14 #ifndef NHBINS
15 #define NHBINS 12 /* number of histogram bins to use for stats */
16 #endif
17
18 char *progname; /* global argv[0] */
19
20 long beamtot, samptot; /* total beams and samples */
21
22 static void gethdinfo(char *fname, FILE *fout);
23 static void psectstats(HOLO *hp, FILE *fp);
24
25
26 int
27 main(
28 int argc,
29 char *argv[]
30 )
31 {
32 progname = argv[0];
33 if (argc != 2)
34 goto userr;
35 gethdinfo(argv[1], stdout);
36 quit(0);
37 userr:
38 fprintf(stderr, "Usage: %s input.hdk\n", progname);
39 exit(1);
40 }
41
42
43 static void
44 gethdinfo( /* get information on holodeck */
45 char *fname,
46 FILE *fout
47 )
48 {
49 FILE *fp;
50 HOLO *hdsect;
51 int fd;
52 int32 nextloc;
53 int n;
54 /* open holodeck file */
55 if ((fp = fopen(fname, "r")) == NULL) {
56 sprintf(errmsg, "cannot open \"%s\"", fname);
57 error(SYSTEM, errmsg);
58 }
59 /* check header and magic number */
60 if (checkheader(fp, HOLOFMT, fout) < 0 || getw(fp) != HOLOMAGIC) {
61 sprintf(errmsg, "file \"%s\" not in holodeck format", fname);
62 error(USER, errmsg);
63 }
64 fd = dup(fileno(fp)); /* dup file handle */
65 nextloc = ftell(fp); /* get stdio position */
66 fclose(fp); /* done with stdio */
67 for (n = 0; nextloc > 0L; n++) { /* get the section(s) */
68 lseek(fd, (off_t)nextloc, SEEK_SET);
69 read(fd, (char *)&nextloc, sizeof(nextloc));
70 fprintf(fout, "Section %d:\n", n);
71 hdsect = hdinit(fd, NULL); /* load section directory */
72 psectstats(hdsect, fout); /* print section statistics */
73 }
74 nextloc = hdfilen(fd); /* print global statistics */
75 fputs("=====================================================\n", fout);
76 fprintf(fout, "Total samples/beams: %ld/%ld (%.2f samples/beam)\n",
77 samptot, beamtot, (double)samptot/beamtot);
78 fprintf(fout, "%.1f Mbyte file, %.1f%% fragmentation\n",
79 nextloc/(1024.*1024.),
80 100.*(nextloc-hdfiluse(fd))/nextloc);
81 /* don't bother with cleanup */
82 #if 0
83 hddone(NULL); /* free sections */
84 close(fd); /* done with the holodeck */
85 #endif
86 }
87
88
89 static void
90 psectstats( /* print statistical information for section */
91 register HOLO *hp,
92 FILE *fp
93 )
94 {
95 int scount[NHBINS];
96 int minsamp = 10000, maxsamp = 0;
97 FVECT vt;
98 double sqrtmaxp;
99 int bmin, bmax, cnt;
100 register int i;
101
102 fcross(vt, hp->xv[0], hp->xv[1]);
103 fprintf(fp, "\tWorld volume: %g\n", fabs(DOT(vt,hp->xv[2])));
104 fprintf(fp, "\tGrid resolution: %d x %d x %d\n",
105 hp->grid[0], hp->grid[1], hp->grid[2]);
106 fprintf(fp, "\tNumber of beams: %ld\n", (long)nbeams(hp));
107 beamtot += nbeams(hp);
108 fprintf(fp, "\tNumber of ray samples: %ld\n", (long)biglob(hp)->nrd);
109 samptot += biglob(hp)->nrd;
110 if (biglob(hp)->nrd <= 0)
111 return; /* no samples to stat! */
112 for (i = nbeams(hp); i > 0; i--) {
113 if (hp->bi[i].nrd < minsamp)
114 minsamp = hp->bi[i].nrd;
115 if (hp->bi[i].nrd > maxsamp)
116 maxsamp = hp->bi[i].nrd;
117 }
118 sqrtmaxp = sqrt(maxsamp+1.0);
119 for (i = NHBINS; i--; )
120 scount[i] = 0;
121 for (i = nbeams(hp); i > 0; i--)
122 scount[(int)(NHBINS*sqrt((double)hp->bi[i].nrd)/sqrtmaxp)]++;
123 for (cnt = 0, i = 0; i < NHBINS && cnt<<1 < nbeams(hp); i++)
124 cnt += scount[i];
125 fprintf(fp, "\tSamples per beam: [min,med,max]= [%d,%.0f,%d]\n",
126 minsamp,
127 (i-.5)*(i-.5)*(maxsamp+1)/(NHBINS*NHBINS),
128 maxsamp);
129 fprintf(fp, "\tHistogram: [minsamp,maxsamp)= #beams\n");
130 bmax = 0;
131 for (i = 0; i < NHBINS; i++) {
132 bmin = bmax;
133 bmax = (i+1)*(i+1)*(maxsamp+1)/(NHBINS*NHBINS);
134 fprintf(fp, "\t\t[%d,%d)= %d\n", bmin, bmax, scount[i]);
135 }
136 }