]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Using strtod instead of strtof (Linux with Solaris CC)
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 24 Aug 2007 15:16:12 +0000 (15:16 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 24 Aug 2007 15:16:12 +0000 (15:16 +0000)
HLT/TPCLib/AliHLTTPCClusterFinderComponent.cxx

index 1bb4035641151a2719653f08bb4278d2a1319d37..d12afcb416846d40a54775a9565085c78390116b 100644 (file)
@@ -38,6 +38,7 @@ using namespace std;
 #include "AliHLTTPCClusterDataFormat.h"
 #include "AliHLTTPCTransform.h"
 #include "AliHLTTPCClusters.h"
+#define _ISOC99_SOURCE
 #include <stdlib.h>
 #include <errno.h>
 #include "TString.h"
@@ -203,7 +204,7 @@ int AliHLTTPCClusterFinderComponent::DoInit( int argc, const char** argv )
 
     // -- pad occupancy limit
     if ( !strcmp( argv[i], "occupancy-limit" ) ) {
-      occulimit = strtof( argv[i+1], &cpErr);
+      occulimit = strtod( argv[i+1], &cpErr);
       if ( *cpErr ) {
        HLTError("Cannot convert occupancy specifier '%s'.", argv[i+1]);
        return EINVAL;