HOOPS | HOOPS (HF) type |
'HC_KEY' | INTEGER*4 |
'integer' | INTEGER |
'Boolean' | LOGICAL |
'short' | INTEGER*2 |
'float' | REAL |
'string' | CHARACTER*(*) |
'single point' | REAL point(3) |
'point vector' | REAL pvec(3,n) |
'array of 4 floats' | REAL array(4) |
'4 x 4 array of floats' | REAL array(4,4) |
'vector of short integers' | INTEGER*2 vec(n) |
'vector of long integers' | INTEGER*4 vec(n) |
'2-D array of short integers' | INTEGER*2 array(c,r) |
'vector of integers' | INTEGER vec(n) |