1
2
3
4
5
6 package org.astrogrid.intensity;
7
8
9 /***
10 * (taken from http://www.astro.utoronto.ca/~patton/astro/mags.html)
11 *<p>
12 This magnitude system is defined such that an object with constant flux per unit wavelength interval has zero color. It is used by the Hubble Space Telescope photometry packages.
13
14 *
15 * @author M Hill
16 */
17
18 public class StMagnitude extends Magnitude
19 {
20 public StMagnitude(double magnitude, double error, boolean apparent)
21 {
22 super(magnitude, error, apparent);
23 }
24
25 /***
26 * Defaults to apparent magnitude
27 */
28 public StMagnitude(double magnitude, double error)
29 {
30 super(magnitude, error, true);
31 }
32
33 public Flux toFlux()
34 {
35 throw new UnsupportedOperationException("Not yet implemented");
36 }
37 }
38
39
40
41
42
43
44
45
46
47