package osp; /** * Class representing the size of the Emir detector in arcsec. * Detector size in pixel : 2048x2048 * the emir field of view is 6.64 x 6 arc mn */ public class Detector { /** Width of the detector converted to arc sec*/ public static double _WIDTH_ = 6.64 * 60.0; /** Height of the detector */ public static double _HEIGHT_ = 6.0 * 60.0; }