included json example with dummy values

This commit is contained in:
Dhanya Maliakal
2016-09-16 17:19:37 +02:00
parent c16f251442
commit f517eb7a41
4 changed files with 53 additions and 10 deletions

View File

@ -521,7 +521,7 @@ int slsDetectorUtils::acquire(int delflag){
setAcquiringFlag(false);
clock_gettime(CLOCK_REALTIME, &end);
cprintf(BLUE,"Elapsed time:%f seconds\n",( end.tv_sec - begin.tv_sec ) + ( end.tv_nsec - begin.tv_nsec ) / 1000000000.0);
cout << "Elapsed time for acquisition:" << (( end.tv_sec - begin.tv_sec ) + ( end.tv_nsec - begin.tv_nsec ) / 1000000000.0) << " seconds" << endl;
return OK;