public static class AbstractTarget.Aim extends Object implements Serializable
SimpleStar and stars in
this object's vicinity, the field-of-view. The field-of-view is a list of
SimpleStars.| Modifier and Type | Field and Description |
|---|---|
private List<Star> |
fov
The list of field stars.
|
private Star |
main
The star description of the main target.
|
private int |
rec
The record number in the database.
|
private static long |
serialVersionUID |
| Constructor and Description |
|---|
Aim(Star main2,
int record,
List<Star> field)
Constructs a new celestial target.
|
| Modifier and Type | Method and Description |
|---|---|
List<Star> |
getFieldOfView()
Returns the list of field stars.
|
Star |
getMain()
Returns the main star, total data.
|
int |
getRecordNumber()
Returns the record number or -1 if it is unknown.
|
private static final long serialVersionUID
private int rec
private final Star main
private final List<Star> fov
SimpleStar.public Aim(Star main2, int record, List<Star> field)
main2 - The main star. Name is catalog name.record - The database record number or -1 if unknown.field - The stars in the field-of-view around the main star.public int getRecordNumber()
public Star getMain()
public List<Star> getFieldOfView()
SimpleStars.