Ignore:
Timestamp:
11/21/03 17:01:15 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r2521 r2550  
    470470
    471471    //
    472     // Set name for 'FADC canvas'. The name is the anchor for MHCamera.
    473     // and clear the canvas
    474     //
    475     MHEvent *o = (MHEvent*)plist->FindObject("Signal");
    476     fCanvas->SetName(Form("%p;%p;PixelContent", o->GetHist(),
    477                           GetCanvas(1)->GetPad(1)));
    478 
    479     //
    480472    // Draw ellipse on top of all pads
    481473    //
     
    520512// The other two are parm1 and parm2.
    521513//
    522 Bool_t MEventDisplay::ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
     514Bool_t MEventDisplay::ProcessMessage(Long_t msg, Long_t mp1, Long_t mp2)
    523515{
    524516    switch (GET_MSG(msg))
     
    545537        switch (GET_SUBMSG(msg))
    546538        {
     539        case kCM_TAB:
     540            {
     541                //
     542                // Set name for 'FADC canvas'. The name is the anchor for MHCamera.
     543                // and clear the canvas
     544                //
     545                MHEvent *o = (MHEvent*)fEvtLoop->GetParList()->FindObject(GetCanvas(mp1)->GetName());
     546                if (o)
     547                    fCanvas->SetName(Form("%p;%p;PixelContent", o->GetHist(),
     548                                          GetCanvas(mp1)->GetPad(1)));
     549            }
     550            break;
     551
    547552        case kCM_BUTTON:
    548             switch (parm1)
     553            switch (mp1)
    549554            {
    550555            case kEvtPrev:
     
    560565        break;
    561566    }
    562     return MStatusDisplay::ProcessMessage(msg, parm1, parm2);
    563 }
     567
     568    return MStatusDisplay::ProcessMessage(msg, mp1, mp2);
     569}
Note: See TracChangeset for help on using the changeset viewer.