ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
VariableArrayUtils.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file VariableArrayUtils.cc
1 #include "VariableArrayUtils.h"
2 
3 #include <half/half.h>
4 
5 short VariableArrayUtils::FloatToShortBits(const float rval)
6 {
7  half ftoi(rval);
8  return ftoi.bits();
9 }
10 
11 float VariableArrayUtils::ShortBitsToFloat(const short ival)
12 {
13  half halfvar;
14  halfvar.setBits(ival);
15  return halfvar;
16 }