Changeset 20537
- Timestamp:
- Nov 4, 2008, 4:31:52 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/relphot/src/relphot.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/relphot/src/relphot.c
r20364 r20537 1 1 # include "relphot.h" 2 # define USE_DIRECT 0 2 3 3 4 int main (int argc, char **argv) { … … 74 75 int star_toofew; 75 76 77 # if (USE_DIRECT) 78 // until we finish the grid analysis, do not reject stars out-of-hand based on ID_STAR_FEW 79 // XXX this is kind of poor: need to have a better distinctions about STAR_BAD in setMrel vs getMrel 80 star_toofew = STAR_TOOFEW; 81 STAR_TOOFEW = 0; 82 STAR_BAD = ID_STAR_POOR; 83 76 84 showGridCount (); 85 setMgridDirect (catalog, Ncatalog); 86 87 STAR_BAD = ID_STAR_POOR | ID_STAR_FEW; 88 STAR_TOOFEW = star_toofew; 89 90 dump_grid (); 91 exit (0); 92 93 # else 77 94 78 95 // until we finish the grid analysis, do not reject stars out-of-hand based on ID_STAR_FEW … … 88 105 STAR_BAD = ID_STAR_POOR | ID_STAR_FEW; 89 106 STAR_TOOFEW = star_toofew; 107 # endif 90 108 } 91 109
Note:
See TracChangeset
for help on using the changeset viewer.
