removed print of elapsed time

This commit is contained in:
Dhanya Maliakal 2017-07-28 10:19:33 +02:00
parent c7d4582efa
commit eb4da5ff0c

View File

@ -509,8 +509,9 @@ int slsDetectorUtils::acquire(int delflag){
sem_destroy(&sem_newRTAcquisition); sem_destroy(&sem_newRTAcquisition);
clock_gettime(CLOCK_REALTIME, &end); clock_gettime(CLOCK_REALTIME, &end);
#ifdef VERBOSE
cout << "Elapsed time for acquisition:" << (( end.tv_sec - begin.tv_sec ) + ( end.tv_nsec - begin.tv_nsec ) / 1000000000.0) << " seconds" << endl; cout << "Elapsed time for acquisition:" << (( end.tv_sec - begin.tv_sec ) + ( end.tv_nsec - begin.tv_nsec ) / 1000000000.0) << " seconds" << endl;
#endif
return OK; return OK;
} }