Blame view

src/osp/Detector.java 378 Bytes
fe0fb87e   Elodie Bourrec   First push to cre...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
	}