Ignore:
Timestamp:
11/10/03 11:25:13 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/macros/rootlogon.C

    r2236 r2491  
    2525Bool_t isloaded()
    2626{
    27     TString str = gSystem->GetLibraries("*/mars.so");
     27    TString str = gSystem->GetLibraries("libmars.so");
    2828
    2929    return !str.IsNull();
     
    3535        return;
    3636
    37     cout << "Unloading 'mars.so'... " << flush;
    38     if (gSystem->Unload("mars.so"))
     37    cout << "Unloading 'libmars.so'... " << flush;
     38    if (gSystem->Unload("libmars.so"))
    3939        cout << "error." << endl;
    4040    else
     
    4747        return;
    4848
    49     cout << "Loading 'mars.so'... " << flush;
     49    cout << "Loading 'libmars.so'... " << flush;
    5050
    51     if (gSystem->Load(dir.IsNull() ? "mars.so" : dir+"lib/mars.so")!=0)
     51    if (gSystem->Load(dir.IsNull() ? "libmars.so" : dir+"libmars.so")!=0)
    5252        cout << "error." << endl;
    5353    else
     
    106106    gInterpreter->AddIncludePath(dir+"mranforest");
    107107    gInterpreter->AddIncludePath(dir+"mraw");
     108    gInterpreter->AddIncludePath(dir+"mreflector");
    108109    gInterpreter->AddIncludePath(dir+"mtools");
    109110
Note: See TracChangeset for help on using the changeset viewer.