setenv FITS_EXTNAME "NEWEV"will allow you to call FunOpen() on files without specifying NEWEV in the Funtools bracket specification. If no FITS_EXTNAME variable is defined and the extension name also is not passed in the bracket specification, then the default will be to look for standard X-ray event table extension names "EVENTS" or "STDEVT" (we are, after all, and X-ray astronomy group at heart!).
setenv FITS_EXTNUM 7will allow you to call FunOpen() on files to open the seventh extension without specifying the number in the Funtools bracket specification.
setenv FITS_BINCOLS "(detx,dety)"in preference to adding a bincols specification to each filename:
foo.fits[bincols=(detx,dety)]
setenv FITS_BITPIX -32in preference to adding a bitpix specification to each filename:
foo.fits[bitpix=-32]
setenv ARRAY "s100.150" foo.arr[ARRAY()]This can be defined in preference to adding the specification to each filename:
foo.arr[ARRAY(s100.150)]
setenv EVENTS "x:J:1024,y:J:1024,pi:I,pha:I,time:D,dx:E:1024,dx:E:1024" foo.ev[EVENTS()]This can be defined in preference to adding the specification to each filename:
foo.ev[EVENTS(x:J:1024,y:J:1024,pi:I,pha:I,time:D,dx:E:1024,dx:E:1024)]