IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 17, 2010, 5:49:51 PM (16 years ago)
Author:
Paul Price
Message:

Removing the 'FPA.OBS' concept (once called 'FPA.NAME'). The original idea was to provide a bit of protection against user error --- not reading a flat into an FPA containing an image, etc. However, that's not really necessary, and there's not always a nice keyword that we can use that is the exposure number or something like that, and so we end up with a lot of unneccessary warnings. Better to do away with it completely. It's not used for anything except that check.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackCamera.c

    r27417 r27989  
    252252    output->save = true;
    253253
    254     if (!pmFPAAddSourceFromFormat(outFPA, "Stack", output->format)) {
     254    if (!pmFPAAddSourceFromFormat(outFPA, output->format)) {
    255255        psError(psErrorCodeLast(), false, "Unable to generate output FPA.");
    256256        return false;
     
    302302    exp->save = true;
    303303
    304     if (!pmFPAAddSourceFromFormat(expFPA, "Stack", exp->format)) {
     304    if (!pmFPAAddSourceFromFormat(expFPA, exp->format)) {
    305305        psError(psErrorCodeLast(), false, "Unable to generate output FPA.");
    306306        return false;
     
    369369    unConv->save = true;
    370370
    371     if (!pmFPAAddSourceFromFormat(unconvFPA, "Stack", unConv->format)) {
     371    if (!pmFPAAddSourceFromFormat(unconvFPA, unConv->format)) {
    372372        psError(psErrorCodeLast(), false, "Unable to generate output FPA.");
    373373        return false;
     
    419419    unconvExp->save = true;
    420420
    421     if (!pmFPAAddSourceFromFormat(unconvExpFPA, "Stack", unconvExp->format)) {
     421    if (!pmFPAAddSourceFromFormat(unconvExpFPA, unconvExp->format)) {
    422422        psError(psErrorCodeLast(), false, "Unable to generate output FPA.");
    423423        return false;
Note: See TracChangeset for help on using the changeset viewer.