Ignore:
Timestamp:
07/18/11 17:19:17 (13 years ago)
Author:
tbretz
Message:
Added some comments about FITS basic types.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mbase/MFits.h

    r11436 r11450  
    244244                    // We could use negative values to mark floats
    245245                    // otheriwse we could just cast them to int64_t?
     246                case 'L': size = 1; break; // logical
     247                // case 'X': size = n; break; // bits (n=number of bytes needed to contain all bits)
    246248                case 'B': size = 1; break; // byte
    247249                case 'I': size = 2; break; // short
     
    250252                case 'E': size = 4; break; // float
    251253                case 'D': size = 8; break; // double
     254                // case 'C': size =  8; break; // complex float
     255                // case 'M': size = 16; break; // complex double
     256                // case 'P': size =  8; break; // array descriptor (32bit)
     257                // case 'Q': size = 16; break; // array descriptor (64bit)
    252258                default:
    253259                    gLog << err << "FITS format '" << fmt << "' not yet supported." << endl;
Note: See TracChangeset for help on using the changeset viewer.