IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 8, 2006, 4:37:08 PM (20 years ago)
Author:
jhoblitt
Message:

normalize psTrace() facility names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/detrend/pmFlatNormalize.c

    r7860 r8246  
    7171        for (int i = 0; i < numSources; i++) {
    7272            if (sourceMask->data.U8[i]) {
    73                 psTrace(__func__, 7, "Flux for exposure %d is masked.\n", i);
     73                psTrace("psModules.detrend", 7, "Flux for exposure %d is masked.\n", i);
    7474                continue;
    7575            }
     
    8989                sourceFlux->data.F32[i] = NAN;
    9090            }
    91             psTrace(__func__, 7, "Flux for exposure %d is %lf\n", i, exp(sourceFlux->data.F32[i]));
     91            psTrace("psModules.detrend", 7, "Flux for exposure %d is %lf\n", i, exp(sourceFlux->data.F32[i]));
    9292        }
    9393
     
    117117                chipGains->data.F32[i] = NAN;
    118118            }
    119             psTrace(__func__, 7, "Gain for chip %d is %lf\n", i, exp(-chipGains->data.F32[i]));
     119            psTrace("psModules.detrend", 7, "Gain for chip %d is %lf\n", i, exp(-chipGains->data.F32[i]));
    120120        }
    121121
    122         psTrace(__func__, 2, "Iteration %d: difference is %e\n", iter, diff);
     122        psTrace("psModules.detrend", 2, "Iteration %d: difference is %e\n", iter, diff);
    123123
    124124        // Switch the old and new
Note: See TracChangeset for help on using the changeset viewer.