blob: f2381fb7c05243d64f7b04fd2abc3a8f01625440 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
.help grpselect May00 noao.digiphot.daophot
.ih
NAME
grpselect -- select groups from a group file by group size
.ih
USAGE
grpselect ingroupfile outgroupfile min_group max_group
.ih
PARAMETERS
.ls ingroupfile
The list of input group files. Ingroupfile must have been written by the
DAOPHOT PSF, GROUP, or NSTAR tasks. Ingroupfile may be an APPHOT/DAOPHOT text
database or an STSDAS table.
.le
.ls outgroupfile
The list of output group files. There must be one output group file for every
input group file. Outgroupfile has the same file type as \fIingroupfile\fR.
.le
.ls min_group
The minimum group size to select from the input group file(s).
.le
.ls max_group
The maximum group size to select from the input group file(s).
.le
.ls verbose = ")_.verbose"
Print messages about the progress of the task? Verbose may be set to the value
of the daophot package parameter (the default), "yes", or "no".
.le
.ih
DESCRIPTION
GRPSELECT creates a new GROUP file \fIoutgroupfile\fR by selecting groups from
the input GROUP file \fIingroupfile\fR within a range of group sizes specified
by \fImin_group\fR and \fImax_group\fR. If \fIingroupfile\fR is a DAOPHOT text
database, \fIoutgroupfile\fR is a text database. Conversely if \fIingroupfile\fR
is a DAOPHOT STSDAS table database, \fIoutgroupfile\fR is an STSDAS table
database.
A typical use for GRPSELECT is to create a new database containing only groups
which are less than the value of the \fImaxgroup\fR parameter in the DAOPARS
task for direct input into the NSTAR task. The remaining stars in the larger
groups are reduced by running GRPSELECT once more, selecting only groups
greater than \fImaxgroup\fR, rerunning GROUP on the output with a less
stringent value of the DAOPARS parameter task \fIcritovlap\fR to reduce the
group sizes and inputting the result into NSTAR.
.ih
EXAMPLES
1. Select groups with between 1 and 70 stars from the GROUP task output file
ypix.grp.1 and write them into a new file named ypixsmall.grp.
.nf
da> grpselect ypix.grp.1 ypixsmall.grp 1 70
.fi
2. Select groups larger than 70 from the same input group file and rerun
group with a new value of the critoverlap parameter on the results.
.nf
da> grpselect ypix.grp.1 ypixlarge.grp 71 400
da> group dev$ypix ypixlarge.grp ypix.psf.1 default crit=5.0
.fi
.ih
TIME REQUIREMENTS
.ih
BUGS
.ih
SEE ALSO
group
.endhelp
|