#--------------------------------------------------------------------------- .help darkstats_params.com May92 hrs .ih NAME darkstats_params -- Parameters for the dst_darkstats task .endhelp #--------------------------------------------------------------------------- double dnsig # Number of sigma above average that # constitutes a noisy diode. Used if # dthresh is undefined. double dthresh # Value above average that constitutes a # noisy diode. double pnsig # Number of sigma above average that # constitutes a particle hit. Used if # pthresh is undefined. double pthresh # Value above average that constitutes a # a particle hit. int dnum # Isolated diode to examine. bool verbose # Write summaries to standard output. char dark[SZ_LINE] # Name of dark frame image to produce. char events[SZ_LINE] # Event list table. char input[SZ_LINE] # Observations to get statistics from. char noisy[SZ_LINE] # Table to place noisy diodes stats. char obs_stats[SZ_LINE] # Statistics of observations. char grp_stats[SZ_LINE] # Statistics of individual groups. char total_stats[SZ_LINE] # Statistics of related observations. # groups. common /darkstats_params/ dnsig, dthresh, pnsig, pthresh, dnum, verbose, dark, events, input, noisy, obs_stats, grp_stats, total_stats #--------------------------------------------------------------------------- # End of darkstats_params.com #---------------------------------------------------------------------------