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

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/meventdisp/MGCamDisplay.cc

    r1540 r1668  
    148148//
    149149MGCamDisplay::MGCamDisplay(const char *filename,
    150                            const TGWindow *p, const TGWindow *main,
     150                           const TGWindow *p, /*const TGWindow *main,*/
    151151                           UInt_t w, UInt_t h)
    152 : MGEvtDisplay(filename, "Events", p, main, w, h), fDisplay(NULL)
     152: MGEvtDisplay(filename, "Events", p, /*main,*/ w, h), fDisplay(NULL)
    153153{
    154154    //
  • trunk/MagicSoft/Mars/meventdisp/MGCamDisplay.h

    r1540 r1668  
    3232public:
    3333    MGCamDisplay(const char *filename,
    34                  const TGWindow *p, const TGWindow *main,
     34                 const TGWindow *p, /*const TGWindow *main,*/
    3535                 UInt_t w, UInt_t h);
    3636
  • trunk/MagicSoft/Mars/meventdisp/MGEvtDisplay.cc

    r1600 r1668  
    141141    fEvtInfo = new TGLabel(top2, new TGString(""));
    142142    fList->Add(fEvtInfo);
    143 
    144143    top2->AddFrame(fEvtInfo, laystd);
    145144
     
    393392
    394393MGEvtDisplay::MGEvtDisplay(const char *fname, const char *tname,
    395                            const TGWindow *p, const TGWindow *main,
     394                           const TGWindow *p, /*const TGWindow *main,*/
    396395                           UInt_t w, UInt_t h)
    397     : TGTransientFrame(p, main, w, h), fInitOk(kFALSE)
     396//    : TGTransientFrame(p, main, w, h), fInitOk(kFALSE)
     397: TGMainFrame(p, w, h), fInitOk(kFALSE)
    398398{
    399399    //
     
    472472        break;
    473473    default:
    474         txt += "Unknown Particle Id";
     474        txt += "Unknown Particle Id#";
     475        txt += evt->GetPartId();
    475476    }
    476477
     
    493494
    494495    fEvtInfo->SetText(txt);
     496
     497    //
     498    // Seems to be necessary to newly layout the upper part to display
     499    // the whole line of text
     500    //
     501    TGFrame &f = *(TGFrame*)fEvtInfo->GetParent()->GetParent();
     502    f.Layout();
     503    f.MapSubwindows();
    495504}
    496505
  • trunk/MagicSoft/Mars/meventdisp/MGEvtDisplay.h

    r1540 r1668  
    2121class MReadTree;
    2222
    23 class MGEvtDisplay : public TGTransientFrame
     23class MGEvtDisplay : public TGMainFrame/*TGTransientFrame*/
    2424{
    2525private:
     
    7474public:
    7575    MGEvtDisplay(const char *fname, const char *tname,
    76                  const TGWindow *p, const TGWindow *main,
     76                 const TGWindow *p, /*const TGWindow *main,*/
    7777                 UInt_t w, UInt_t h);
    7878
  • trunk/MagicSoft/Mars/meventdisp/MGFadcDisp.cc

    r1172 r1668  
    113113//
    114114MGFadcDisp::MGFadcDisp(const char *filename, const char *treename,
    115                        const TGWindow *p, const TGWindow *main,
     115                       const TGWindow *p, /*const TGWindow *main,*/
    116116                       UInt_t w, UInt_t h)
    117     : MGEvtDisplay(filename, treename, p, main, w, h)
     117    : MGEvtDisplay(filename, treename, p, /*main,*/ w, h)
    118118{
    119119    //
  • trunk/MagicSoft/Mars/meventdisp/MGFadcDisp.h

    r1172 r1668  
    2323
    2424    MGFadcDisp(const char *filename, const char *treename,
    25                const TGWindow *p, const TGWindow *main, UInt_t w, UInt_t h);
     25               const TGWindow *p, /*const TGWindow *main,*/ UInt_t w, UInt_t h);
    2626
    2727    virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
Note: See TracChangeset for help on using the changeset viewer.