Ignore:
Timestamp:
02/16/04 11:18:25 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MAGIC.h

    r2711 r3183  
    4444const Double_t kRad2Deg = 180.0/3.1415926535897932384626433832795028841971693993751;
    4545
    46 //
    47 // This is the definition of a global output stream, which by
    48 // default pipes all output to the stdout
    49 //
    50 
    51 #ifdef __LINUX__
    52 class MLog;
    53 #else
    54 #include "MLog.h"
    5546#endif
    56 
    57 R__EXTERN MLog gLog;
    58 
    59 #endif
  • trunk/MagicSoft/Mars/mbase/MArgs.h

    r2728 r3183  
    11#ifndef MARS_MArgs
    22#define MARS_MArgs
    3 
    4 #ifndef MARS_MAGIC
    5 #include "MAGIC.h"
    6 #endif
    73
    84#ifndef ROOT_TNamed
  • trunk/MagicSoft/Mars/mbase/MLog.h

    r2784 r3183  
    201201};
    202202
    203 #endif
     203//
     204// This is the definition of a global output stream, which by
     205// default pipes all output to the stdout
     206//
     207R__EXTERN MLog gLog;
     208
     209#endif
  • trunk/MagicSoft/Mars/mbase/MParContainer.cc

    r2490 r3183  
    6060using namespace std;
    6161
     62MParContainer::MParContainer(const char *name, const char *title) :
     63    fName(name), fTitle(title), fLog(&gLog), fDisplay(NULL), fReadyToSave(kFALSE)
     64{
     65}
     66
     67MParContainer::MParContainer(const TString &name, const TString &title) :
     68    fName(name), fTitle(title), fLog(&gLog), fDisplay(NULL), fReadyToSave(kFALSE)
     69{
     70}
     71
    6272// --------------------------------------------------------------------------
    6373//
  • trunk/MagicSoft/Mars/mbase/MParContainer.h

    r2772 r3183  
    1212#include "MAGIC.h"
    1313#endif
    14 
    1514#ifndef ROOT_TObject
    1615#include <TObject.h>
     
    2827class TDataMember;
    2928class TMethodCall;
     29
     30class MLog;
    3031class MStatusDisplay;
    3132
     
    6061    };
    6162
    62     MParContainer(const char *name="", const char *title="") : fName(name), fTitle(title), fLog(&gLog), fDisplay(NULL), fReadyToSave(kFALSE) {  }
    63     MParContainer(const TString &name, const TString &title) : fName(name), fTitle(title), fLog(&gLog), fDisplay(NULL), fReadyToSave(kFALSE) {  }
     63    MParContainer(const char *name="", const char *title="");
     64    MParContainer(const TString &name, const TString &title);
    6465    MParContainer(const MParContainer &named);
    6566    MParContainer& operator=(const MParContainer& rhs);
Note: See TracChangeset for help on using the changeset viewer.