Changeset 19120
- Timestamp:
- 08/01/18 19:09:30 (6 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fits2sql.cc
r19116 r19120 644 644 if (verbose>0) 645 645 { 646 cout << "Total execution time: " << Time().UnixTime()-start.UnixTime() << "s\n" << endl; 646 const auto sec = Time().UnixTime()-start.UnixTime(); 647 cout << "Total execution time: " << sec << "s "; 648 cout << "(" << Tools::Fractional(sec/count) << "s/row)\n"; 647 649 648 650 try -
trunk/FACT++/src/root2sql.cc
r19116 r19120 632 632 if (verbose>0) 633 633 { 634 cout << "Total execution time: " << Time().UnixTime()-start.UnixTime() << "s\n" << endl; 634 const auto sec = Time().UnixTime()-start.UnixTime(); 635 cout << "Total execution time: " << sec << "s "; 636 cout << "(" << Tools::Fractional(sec/count) << "s/row)\n"; 635 637 636 638 try
Note:
See TracChangeset
for help on using the changeset viewer.