Changeset 13640


Ignore:
Timestamp:
05/10/12 15:04:54 (13 years ago)
Author:
tbretz
Message:
Added some debug output.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/fact.cc

    r12658 r13640  
    11#include "FactGui.h"
     2
     3#include <TSystem.h>
    24
    35#include "src/FACT.h"
     
    6668    Dim::Setup(conf.Get<string>("dns"), conf.Get<string>("host"));
    6769
     70    cout << "LD_LIBRARY_PATH=" << gSystem->GetDynamicPath() << endl;
     71
     72    cout << "--- Starting QApplication ---" << endl;
    6873    QApplication app(argc, const_cast<char**>(argv));
    6974
     75    cout << "--- Instaniating GUI ---" << endl;
     76
    7077    FactGui gui(conf);
     78
     79    cout << "--- Show GUI ---" << endl;
    7180    gui.show();
     81
     82    cout << "--- Main loop ---" << endl;
    7283
    7384    const int rc = app.exec();
Note: See TracChangeset for help on using the changeset viewer.