IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 24, 2009, 2:17:42 PM (17 years ago)
Author:
Paul Price
Message:

Add pmModelClassSetLimits to set limits for all model types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap/psModules/src/objects/pmModelClass.c

    r25521 r25548  
    168168    return (models[type].name);
    169169}
     170
     171
     172void pmModelClassSetLimits(pmModelLimitsType type)
     173{
     174    if (!models) {
     175        pmModelClassInit();
     176    }
     177
     178    for (int i = 0; i < Nmodels; i++) {
     179        models[i].modelSetLimits(type);
     180    }
     181
     182}
     183
Note: See TracChangeset for help on using the changeset viewer.