IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Opened 21 years ago

Closed 21 years ago

Last modified 21 years ago

#491 closed defect (fixed)

psScalar changes

Reported by: David.Robbins@… Owned by: Paul Price
Priority: high Milestone:
Component: PSLib SDRS Version: unspecified
Severity: normal Keywords:
Cc:

Description

psScalar has removed the following elements in the new SDRS,

psU32, U64,
psS32, S64

This is a problem for us as these types are used quite a bit in the code. It
also seems strange to remove these types. please advise if this change is
correct and necessary.

Change History (1)

comment:1 by Paul Price, 21 years ago

Resolution: fixed
Status: newclosed

No idea where these disappeared. I put them back in:

typedef struct {

psMathType type; /< data type information
union {

psS8 S8; /< bye value entry
psS16 S16;
/< short int value entry
psS32 S32; /< int value entry
psS64 S64;
/< long int value entry
psU8 U8; /< unsigned byte value entry
psU16 U16;
/< unsigned short int value entry
psU32 U32; /< unsigned int value entry
psU64 U64;
/< unsigned long int value entry
psF32 F32; /< float value entry
psF64 F64;
/< double value entry
psC32 C32; /< complex value entry
psC64 C64;
/< double complex value entry

} data;

} psScalar;

Note: See TracTickets for help on using tickets.