A quick CIA Starter for tracked Solar-System Objects 1. Retrieve the products from the ISO Archive into your working directory 2. Start the CIA (IDL) session from the command line "cia" 3. Have a quick look at the Auto-Analysis Products "sad_display" 4. Slice your products "spdtoscd,'cisp33401755.fits',raw_sscd, /nowrite" 5. Have a look at all ISOCAM configurations in your data set "sscd_info, raw_sscd, /deg" 6. Split your SSCD into configurations "cleaned_sscd = sscd_clean(raw_sscd)" 7. Freeze the SSCD containing the first configuration into an IDL data-structure "pds = get_sscdstruct(cleaned_sscd)" 8. Fast calibration: a. Correct for the dark-current "corr_dark, pds" b. Deglitching (Suppression of cosmic rays) "deglitch, pds" c. Suppression of un-stabilized read-outs "stabilize, pds" 9. Convert the raw images into an exposure "reduce, pds" "pds.image[*,*,0] = reduce_cube(pds.cube, mask = pds.mask)" 10. Flat-Field the exposure "corr_flat, pds" 11. Convert the raw exposure into mJansky "conv_flux, pds" 12. Display the final image "tviso, pds.image[*,*,0]" 13. Save the raster-structure as FITS file "imagette2fits, pds, name='kopff.fits'" 14. You need online help? "cia_help" and "ciainfo"