Changeset 19178


Ignore:
Timestamp:
08/19/18 10:19:40 (6 years ago)
Author:
tbretz
Message:
Print start time.
Location:
trunk/FACT++/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/fits2sql.cc

    r19176 r19178  
    360360
    361361    if (verbose>0)
     362    {
    362363        cout << "\n-------------------------- Evaluating file -------------------------" << endl;
     364        cout << "Start Time: " << Time::sql << Time(Time::local) << endl;
     365    }
    363366
    364367    zfits f(file.c_str(), extension.c_str());
  • trunk/FACT++/src/root2sql.cc

    r19176 r19178  
    386386
    387387    if (verbose>0)
    388         cout << "\n-------------------------- Evaluating file -------------------------" << endl;
     388    {
     389        cout << "\n-------------------------- Evaluating file -------------------------\n";
     390        cout << "Start Time: " << Time::sql << Time(Time::local) << endl;
     391    }
    389392
    390393    TFile f(file.c_str());
  • trunk/FACT++/src/rootifysql.cc

    r19162 r19178  
    496496
    497497    if (verbose>0)
     498    {
    498499        cout << "\n------------------------ Rootify SQL -------------------------" << endl;
     500        cout << "Start Time: " << Time::sql << Time(Time::local) << endl;
     501    }
    499502
    500503    string query  = conf.Get<string>("query");
Note: See TracChangeset for help on using the changeset viewer.