use 64 bit floats

This commit is contained in:
Jeff Hill
2001-01-18 23:23:43 +00:00
parent c2aa43750f
commit bf2e145ed1
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ const char *exScanTimer::name() const
//
aitEnum exPV::bestExternalType() const
{
return aitEnumFloat32;
return aitEnumFloat64;
}
//
+1 -1
View File
@@ -42,7 +42,7 @@ void exScalarPV::scan()
//
this->currentTime = osiTime::getCurrent();
pDD = new gddScalar (gddAppType_value, aitEnumFloat32);
pDD = new gddScalar (gddAppType_value, aitEnumFloat64);
if ( ! pDD.valid () ) {
return;
}
+2 -2
View File
@@ -69,7 +69,7 @@ void exVectorPV::scan()
//
this->currentTime = osiTime::getCurrent();
pDD = new gddAtomic (gddAppType_value, aitEnumFloat32,
pDD = new gddAtomic (gddAppType_value, aitEnumFloat64,
1u, this->info.getElementCount());
if ( ! pDD.valid () ) {
return;
@@ -198,7 +198,7 @@ caStatus exVectorPV::updateValue(smartConstGDDPointer pValueIn)
// (so that old values that may be referenced on the
// event queue are not replaced)
//
pNewValue = new gddAtomic (gddAppType_value, aitEnumFloat32,
pNewValue = new gddAtomic (gddAppType_value, aitEnumFloat64,
1u, this->info.getElementCount());
if ( ! pNewValue.valid () ) {
return S_casApp_noMemory;