Changeset 36453
- Timestamp:
- Jan 17, 2014, 1:49:00 PM (12 years ago)
- Location:
- trunk/psphot
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
src (modified) (1 prop)
-
src/psphotChooseAnalysisOptions.c (modified) (2 diffs)
-
src/psphotStackImageLoop.c (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psphot
- Property svn:mergeinfo changed
/tags/ipp-20140114/psphot (added) merged: 36445
- Property svn:mergeinfo changed
-
trunk/psphot/src
- Property svn:mergeinfo changed
/tags/ipp-20140114/psphot/src (added) merged: 36445
- Property svn:mergeinfo changed
-
trunk/psphot/src/psphotChooseAnalysisOptions.c
r36441 r36453 250 250 psSphere ptGal, ptSky; 251 251 GetGalacticCoords (&ptGal, &ptSky, toGal, chip, source->peak->xf, source->peak->yf); 252 float b= ptGal.r;253 float limit = GAL_LIMIT + GAL_LIMIT_BULGE * exp(-0.5*(b*b/GAL_LIMIT_SIGMA2));254 if (fabs(ptGal.d) < limit) continue;252 float l = ptGal.r; 253 float b_min = GAL_LIMIT + GAL_LIMIT_BULGE * exp(-0.5*(l*l/GAL_LIMIT_SIGMA2)); 254 if (fabs(ptGal.d) < b_min) continue; 255 255 // include an exception for low density skycells below the limit? 256 256 } … … 533 533 psSphere ptGal, ptSky; 534 534 GetGalacticCoords (&ptGal, &ptSky, toGal, chips->data[imageID], source->peak->xf, source->peak->yf); 535 float b= ptGal.r;536 float limit = GAL_LIMIT + GAL_LIMIT_BULGE * exp(-0.5*(b*b/GAL_LIMIT_SIGMA2));537 if (fabs(ptGal.d) < limit) continue;535 float l = ptGal.r; 536 float b_min = GAL_LIMIT + GAL_LIMIT_BULGE * exp(-0.5*(l*l/GAL_LIMIT_SIGMA2)); 537 if (fabs(ptGal.d) < b_min) continue; 538 538 } 539 539 -
trunk/psphot/src/psphotStackImageLoop.c
- Property svn:mergeinfo changed (with no actual effect on merging)
Note:
See TracChangeset
for help on using the changeset viewer.
