# # parameters to control the photometric calibration portion of the # pipeline # # this directory holds the output from previous steps, # which serves as the input for this step; # and this step puts its output here, too output_dir ../output # this is the name of the command to run a photometric solution/calibration # for all the images taken on a night (or in a block during a night) photom_exe photom # we send debugging output from the photom_exe program to this file # in the output directory. It can be so verbose that it hangs # a TCL process if we don't redirect the output into a file. debug_file photom.debug # columns in the reference catalog containing RA and Dec # (zero-indexed, so the first column is "0" and second column is "1") ref_ra_col 0 ref_dec_col 1 # columns in the reference catalog containing magnitudes ref_V_col 3 ref_I_col 4 # radius (in arcseconds) to use in matching reference catalog entries # to detected stars ref_matchrad 1.5 # # Information about the "collate" output files, full in raw instrumental # magnitudes. Again, zero-indexed # col_ra_col 1 col_dec_col 2 col_jd_col 3 col_air_col 4 col_triplet_col 5 col_quality_col 11 # # Information on which filters go together in calibrations. # Each entry below gives a primary filter, followed by its secondary # filter. # filt_pairs { V I } { I V } # # If you want to remove differential extinction across each frame, # place values for the first-order extinction coefficients here. # Typical values are B 0.40, V 0.20, R 0.10, I 0.08 # You must specify a filter,value pair for each filter, like so: # fixk { V 0.20 } { I 0.08 } # If you do not wish to correct for differential extinction, # use values of 0.0 for all filters # fixk { V 0.20 } { I 0.06 } #fixk { V 0.00 } { I 0.00 } # if set to 0, then the photom program will set to BAD_MAG # the calibrated mag of any star detected # in only a single passband (or ignore it # completely, so it doesn't appear in output). # if set to 1, then the photom program accepts stars detected # in a single passband, applying the photometric # solution to them with no color term. # If you set this to 1, be sure to set the corresponding # parameter to 1 in the "collate.param" file, too. photom_orphans 1