Changeset 19387 for trunk/FACT++/gui


Ignore:
Timestamp:
11/12/18 21:49:40 (6 years ago)
Author:
tbretz
Message:
Prefix file paths if they are not absolute (should not change anything as right now, --prefix is not defined.
Location:
trunk/FACT++/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/FactGui.h

    r18983 r19387  
    36973697        // --------------------------------------------------------------------------
    36983698
    3699         if (!fPixelMap.Read(conf.Get<string>("pixel-map-file")))
     3699        if (!fPixelMap.Read(conf.GetPrefixedString("pixel-map-file")))
    37003700        {
    37013701            cerr << "ERROR - Problems reading " << conf.Get<string>("pixel-map-file") << endl;
  • trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc

    r19376 r19387  
    22282228    if (conf.Has("mappingFile"))
    22292229    {
    2230         canvas->assignPixelMapFile(conf.Get<string>("mappingFile"));
     2230        canvas->assignPixelMapFile(conf.GetPrefixedString("mappingFile"));
    22312231    }
    22322232    else
Note: See TracChangeset for help on using the changeset viewer.