* @return
* @throws SalsaDeviceException
*/
public static DimensionType getDimensionType(IDevice device) throws SalsaDeviceException {
DimensionType dimensionType;
AttributeInfo info = getAttributeInfo(device);
switch (info.data_format.value()) {
case AttrDataFormat._SCALAR:
dimensionType = DimensionType.SCALAR;
break;
case AttrDataFormat._SPECTRUM: