Changeset 26306
- Timestamp:
- Dec 2, 2009, 3:51:38 AM (16 years ago)
- Location:
- branches/pap/ppStack/src
- Files:
-
- 2 edited
-
ppStackMatch.c (modified) (1 diff)
-
ppStackSources.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap/ppStack/src/ppStackMatch.c
r26305 r26306 73 73 psString name = NULL; // Output name 74 74 psStringAppend(&name, "%s_%d.sources", root, number); 75 FILE file = fopen(name, "w");// File to write75 FILE *file = fopen(name, "w"); // File to write 76 76 psFree(name); 77 77 for (int i = 0; i < sources->n; i++) { -
branches/pap/ppStack/src/ppStackSources.c
r26303 r26306 272 272 // Double check: all transparencies should be zero 273 273 { 274 psArray *matches = pmSourceMatchSources(sourceLists, radius ); // List of matches274 psArray *matches = pmSourceMatchSources(sourceLists, radius, true); // List of matches 275 275 if (!matches) { 276 276 psError(PS_ERR_UNKNOWN, false, "Unable to match sources"); … … 278 278 return false; 279 279 } 280 psVector *trans = pmSourceMatchRelphot(matches, zp, iter, tol, starLimit, transIter, transRej, 281 transThresh, starRej, starSys); 280 psVector *trans = pmSourceMatchRelphot(matches, zp, tol, iter1, starRej1, starSys1, 281 iter2, starRej2, starSys2, starLimit, 282 transIter, transRej, transThresh); 282 283 for (int i = 0; i < num; i++) { 283 284 fprintf(stderr, "Transparency of image %d: %f\n", i, trans->data.F32[i]);
Note:
See TracChangeset
for help on using the changeset viewer.
