| 43 |
|
int imm_irrad = 0; /* compute immediate irradiance? */ |
| 44 |
|
int lim_dist = 0; /* limit distance? */ |
| 45 |
|
|
| 46 |
+ |
int report_intvl = 0; /* reporting interval (seconds) */ |
| 47 |
+ |
|
| 48 |
|
const char *modname[MAXMODLIST]; /* ordered modifier name list */ |
| 49 |
|
int nmods = 0; /* number of modifiers */ |
| 50 |
|
|
| 296 |
|
case 'M': /* modifier file */ |
| 297 |
|
check(2,"s"); |
| 298 |
|
addmodfile(argv[++i], curout, prms, binval, bincnt); |
| 299 |
+ |
break; |
| 300 |
+ |
case 't': /* reporting interval */ |
| 301 |
+ |
check(2,"i"); |
| 302 |
+ |
report_intvl = atoi(argv[++i]); |
| 303 |
|
break; |
| 304 |
|
default: |
| 305 |
|
goto badopt; |