IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 15740 for trunk/psModules


Ignore:
Timestamp:
Dec 5, 2007, 3:01:03 PM (19 years ago)
Author:
eugene
Message:

adding new fields to rawExp, rawImfile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/concepts/pmConcepts.c

    r15141 r15740  
    622622            pmConceptRegister(fpaTemp, NULL, NULL, false, PM_FPA_LEVEL_FPA);
    623623            psFree(fpaTemp);
     624        }
     625
     626        // FPA.M1X,Y,Z,TIP,TILT
     627        {
     628            psMetadataItem *item = psMetadataItemAllocF32("FPA.M1X", "Primary Mirror X Position", NAN);
     629            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     630            psFree(item);
     631        }
     632        {
     633            psMetadataItem *item = psMetadataItemAllocF32("FPA.M1Y", "Primary Mirror Y Position", NAN);
     634            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     635            psFree(item);
     636        }
     637        {
     638            psMetadataItem *item = psMetadataItemAllocF32("FPA.M1Z", "Primary Mirror Z Position", NAN);
     639            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     640            psFree(item);
     641        }
     642        {
     643            psMetadataItem *item = psMetadataItemAllocF32("FPA.M1TIP", "Primary Mirror TIP", NAN);
     644            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     645            psFree(item);
     646        }
     647        {
     648            psMetadataItem *item = psMetadataItemAllocF32("FPA.M1TILT", "Primary Mirror TILT", NAN);
     649            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     650            psFree(item);
     651        }
     652
     653        // FPA.M2X,Y,Z,TIP,TILT
     654        {
     655            psMetadataItem *item = psMetadataItemAllocF32("FPA.M2X", "Primary Mirror X Position", NAN);
     656            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     657            psFree(item);
     658        }
     659        {
     660            psMetadataItem *item = psMetadataItemAllocF32("FPA.M2Y", "Primary Mirror Y Position", NAN);
     661            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     662            psFree(item);
     663        }
     664        {
     665            psMetadataItem *item = psMetadataItemAllocF32("FPA.M2Z", "Primary Mirror Z Position", NAN);
     666            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     667            psFree(item);
     668        }
     669        {
     670            psMetadataItem *item = psMetadataItemAllocF32("FPA.M2TIP", "Primary Mirror TIP", NAN);
     671            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     672            psFree(item);
     673        }
     674        {
     675            psMetadataItem *item = psMetadataItemAllocF32("FPA.M2TILT", "Primary Mirror TILT", NAN);
     676            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     677            psFree(item);
     678        }
     679
     680        // FPA.ENV.*
     681        {
     682            psMetadataItem *item = psMetadataItemAllocF32("FPA.ENV.TEMP", "Environment: Temperature", NAN);
     683            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     684            psFree(item);
     685        }
     686        {
     687            psMetadataItem *item = psMetadataItemAllocF32("FPA.ENV.HUMID", "Environment: Humidity", NAN);
     688            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     689            psFree(item);
     690        }
     691        {
     692            psMetadataItem *item = psMetadataItemAllocF32("FPA.ENV.WIND", "Environment: Wind Speed", NAN);
     693            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     694            psFree(item);
     695        }
     696        {
     697            psMetadataItem *item = psMetadataItemAllocF32("FPA.ENV.DIR", "Environment: Wind Direction", NAN);
     698            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     699            psFree(item);
     700        }
     701
     702        // FPA.PON.TIME
     703        {
     704            psMetadataItem *item = psMetadataItemAllocF32("FPA.PON.TIME", "Power On Time", NAN);
     705            pmConceptRegister(item, NULL, NULL, false, PM_FPA_LEVEL_FPA);
     706            psFree(item);
    624707        }
    625708
Note: See TracChangeset for help on using the changeset viewer.