Ignore:
Timestamp:
11/25/02 09:12:47 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mmain
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mmain/MAnalysis.cc

    r1656 r1668  
    100100}
    101101
    102 MAnalysis::MAnalysis(const TGWindow *main, const TGWindow *p,
     102MAnalysis::MAnalysis(/*const TGWindow *main,*/ const TGWindow *p,
    103103                     const UInt_t w, const UInt_t h)
    104 : MBrowser(main, p, w, h)
     104: MBrowser(/*main,*/ p, w, h)
    105105{
    106106    AddButtons();
  • trunk/MagicSoft/Mars/mmain/MAnalysis.h

    r1076 r1668  
    2828
    2929public:
    30     MAnalysis(const TGWindow *main=NULL, const TGWindow *p=NULL,
     30    MAnalysis(/*const TGWindow *main=NULL,*/ const TGWindow *p=NULL,
    3131              const UInt_t w=500, const UInt_t h=500) ;
    3232
  • trunk/MagicSoft/Mars/mmain/MBrowser.cc

    r1172 r1668  
    275275}
    276276
    277 MBrowser::MBrowser(const TGWindow *main, const TGWindow *p,
    278                      const UInt_t w, const UInt_t h)
    279 : TGTransientFrame(p?p:gClient->GetRoot(),
    280                    main?main:gClient->GetRoot(), w, h)
     277MBrowser::MBrowser(/*const TGWindow *main,*/ const TGWindow *p,
     278                   const UInt_t w, const UInt_t h)
     279//: TGTransientFrame(p?p:gClient->GetRoot(),
     280//                   main?main:gClient->GetRoot(), w, h)
     281: TGMainFrame(p?p:gClient->GetRoot(), w, h)
    281282{
    282283    fList = new MGList;
     
    291292    fList->Add(linesep);
    292293    AddFrame(linesep, laylinesep);
    293 
    294294
    295295    //
  • trunk/MagicSoft/Mars/mmain/MBrowser.h

    r1172 r1668  
    1919class TGFileContainer;
    2020
    21 class MBrowser : public TGTransientFrame
     21class MBrowser : public TGMainFrame/*TGTransientFrame*/
    2222{
    2323private:
     
    6262
    6363 public:
    64      MBrowser(const TGWindow *main=NULL, const TGWindow *p=NULL,
    65                const UInt_t w=500, const UInt_t h=500) ;
     64     MBrowser(/*const TGWindow *main=NULL,*/ const TGWindow *p=NULL,
     65              const UInt_t w=500, const UInt_t h=500) ;
    6666
    6767     virtual ~MBrowser();
  • trunk/MagicSoft/Mars/mmain/MCameraDisplay.cc

    r1086 r1668  
    4343//  'new MCameraDisplay()'
    4444//
    45 MCameraDisplay::MCameraDisplay(const TGWindow *main, const TGWindow *p,
    46                        const UInt_t w, const UInt_t h)
    47 : MBrowser(main, p, w, h)
     45MCameraDisplay::MCameraDisplay(/*const TGWindow *main,*/ const TGWindow *p,
     46                               const UInt_t w, const UInt_t h)
     47: MBrowser(/*main,*/ p, w, h)
    4848{
    4949    TGTextButton *disp = new TGTextButton(fTop2, "Display Events", kButDisplay);
     
    9191        case kButDisplay:
    9292            new MGCamDisplay(fInputFile,
    93                              fClient->GetRoot(), this, 600, 500);
     93                             fClient->GetRoot(), /*this,*/ 600, 500);
    9494            return kTRUE;
    9595        }
  • trunk/MagicSoft/Mars/mmain/MCameraDisplay.h

    r1016 r1668  
    99{
    1010public:
    11     MCameraDisplay(const TGWindow *main=NULL, const TGWindow *p=NULL,
     11    MCameraDisplay(/*const TGWindow *main=NULL,*/ const TGWindow *p=NULL,
    1212                   const UInt_t w=500, const UInt_t h=500) ;
    1313
  • trunk/MagicSoft/Mars/mmain/MDataCheck.cc

    r1652 r1668  
    5454//  'new MDataCheck()'
    5555//
    56 MDataCheck::MDataCheck(const TGWindow *main, const TGWindow *p,
     56MDataCheck::MDataCheck(/*const TGWindow *main,*/ const TGWindow *p,
    5757                       const UInt_t w, const UInt_t h)
    58 : MBrowser(main, p, w, h)
     58: MBrowser(/*main,*/ p, w, h)
    5959{
    6060    TGTextButton *pedadc = new TGTextButton(fTop1, "ADC Spectra of Pedestals", kButPedAdc);
  • trunk/MagicSoft/Mars/mmain/MDataCheck.h

    r1652 r1668  
    1616
    1717public:
    18     MDataCheck(const TGWindow *main=NULL, const TGWindow *p=NULL,
     18    MDataCheck(/*const TGWindow *main=NULL,*/ const TGWindow *p=NULL,
    1919               const UInt_t w=500, const UInt_t h=500) ;
    2020
  • trunk/MagicSoft/Mars/mmain/MEvtDisp.cc

    r1086 r1668  
    3939};
    4040
    41 MEvtDisp::MEvtDisp(const TGWindow *main, const TGWindow *p,
     41MEvtDisp::MEvtDisp(/*const TGWindow *main,*/ const TGWindow *p,
    4242                   const UInt_t w, const UInt_t h)
    43 : MBrowser(main, p, w, h)
     43: MBrowser(/*main,*/ p, w, h)
    4444{
    4545    TGTextButton *fadcevt = new TGTextButton(fTop1, "FADC Disp for Events",  kButDispEvt);
     
    9696        case kButDispEvt:
    9797            new MGFadcDisp(fInputFile, "Events",
    98                            fClient->GetRoot(), this, 600, 500);
     98                           fClient->GetRoot(), /*this,*/ 600, 500);
    9999            return kTRUE;
    100100
    101101        case kButDispPedestal:
    102102            new MGFadcDisp(fInputFile , "PedEvts",
    103                            fClient->GetRoot(), this, 600, 500);
     103                           fClient->GetRoot(), /*this,*/ 600, 500);
    104104            return kTRUE;
    105105
    106106        case kButDispCalibration:
    107107            new MGFadcDisp(fInputFile , "CalEvts",
    108                            fClient->GetRoot(), this, 600, 500);
     108                           fClient->GetRoot(), /*this,*/ 600, 500);
    109109            return kTRUE;
    110110        }
  • trunk/MagicSoft/Mars/mmain/MEvtDisp.h

    r1016 r1668  
    99{
    1010public:
    11     MEvtDisp(const TGWindow *main=NULL, const TGWindow *p=NULL,
     11    MEvtDisp(/*const TGWindow *main=NULL,*/ const TGWindow *p=NULL,
    1212             const UInt_t w=500, const UInt_t h=500) ;
    1313
  • trunk/MagicSoft/Mars/mmain/MMars.cc

    r1644 r1668  
    277277
    278278            case kButEvtDisplay:
    279                 new MEvtDisp(this);
     279                new MEvtDisp(/*this*/);
    280280                return kTRUE;
    281281
    282282            case kButDataCheck:
    283                 new MDataCheck(this);
     283                new MDataCheck(/*this*/);
    284284                return kTRUE;
    285285
    286286            case kButAnalysis:
    287                 new MAnalysis(this);
     287                new MAnalysis(/*this*/);
    288288                return kTRUE;
    289289
    290290            case kButMonteCarlo:
    291                 new MMonteCarlo(this);
     291                new MMonteCarlo(/*this*/);
    292292                return kTRUE;
    293293
    294294            case kButCameraDisplay:
    295                 new MCameraDisplay(this);
     295                new MCameraDisplay(/*this*/);
    296296                return kTRUE;
    297297
  • trunk/MagicSoft/Mars/mmain/MMonteCarlo.cc

    r1646 r1668  
    162162}
    163163
    164 MMonteCarlo::MMonteCarlo(const TGWindow *main, const TGWindow *p,
     164MMonteCarlo::MMonteCarlo(/*const TGWindow *main,*/ const TGWindow *p,
    165165                         const UInt_t w, const UInt_t h)
    166 : MBrowser(main, p, w, h)
     166: MBrowser(/*main,*/ p, w, h)
    167167{
    168168    AddButtons();
  • trunk/MagicSoft/Mars/mmain/MMonteCarlo.h

    r1030 r1668  
    2828
    2929public:
    30     MMonteCarlo(const TGWindow *main=NULL, const TGWindow *p=NULL,
     30    MMonteCarlo(/*const TGWindow *main=NULL,*/ const TGWindow *p=NULL,
    3131                const UInt_t w=500, const UInt_t h=500);
    3232
Note: See TracChangeset for help on using the changeset viewer.