Class Reference for E1039 Core & Analysis Software
VariableArrayUtils.cc
Go to the documentation of this file.
1 #include "VariableArrayUtils.h"
2 #include <half/half.h>
3 
4 short
6 {
7  half ftoi(rval);
8  return ftoi.bits();
9 }
10 
11 float
13 {
14  half halfvar;
15  halfvar.setBits(ival);
16  return halfvar;
17 }
static short FloatToShortBits(const float rval)
static float ShortBitsToFloat(const short ival)
Definition: half.h:103
void setBits(unsigned short bits)
Definition: half.h:761
unsigned short bits() const
Definition: half.h:754