Ignore:
Timestamp:
07/12/02 10:13:34 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgui/MCamDisplay.cc

    r1390 r1400  
    317317
    318318    fDrawingPad->SetBorderMode(0);
     319    fDrawingPad->SetFillColor(22);
    319320
    320321    //
     
    341342
    342343    //
    343     // Setup the correct environment
    344     //
    345     gPad->SetFillColor(22);
    346 
    347     //
    348344    // Draw all pixels of the camera
    349345    //  (means apend all pixelobjects to the current pad)
     
    351347    for (UInt_t i=0; i<fNumPixels; i++)
    352348    {
     349#if ROOT_VERSION_CODE > ROOT_VERSION(3,01,06)
     350        (*this)[i].SetBit(kNoContextMenu|kCannotPick);
     351#endif
    353352        (*this)[i].SetFillColor(22);
    354353        (*this)[i].Draw();
     
    371370        box->SetY2(H*((i+1)*h - 1.));
    372371        box->SetFillColor(22);
     372#if ROOT_VERSION_CODE > ROOT_VERSION(3,01,06)
     373        box->SetBit(kNoContextMenu|kCannotPick);
     374#endif
    373375        box->Draw();
    374376
     
    376378        txt->SetX(fRange+1.5*w);
    377379        txt->SetY(H*((i+0.5)*h - 1.));
     380#if ROOT_VERSION_CODE > ROOT_VERSION(3,01,06)
     381        txt->SetBit(kNoContextMenu|kCannotPick);
     382#endif
    378383        txt->Draw();
    379384    }
     
    400405        const MHexagon &h = (MHexagon&)*(*fPixels)[i];
    401406        TText *nt = txt.DrawText(h.GetX(), h.GetY(), num);
    402         nt->SetTextSize(0.0005*h.GetD());
     407        nt->SetTextSize(0.3*h.GetD()/fGeomCam->GetMaxRadius());
    403408    }
    404409}
     
    460465    // Update display physically
    461466    //
    462     gPad->Modified();
    463     gPad->Update();
     467    fDrawingPad->Modified();
     468    fDrawingPad->Update();
    464469}
    465470
Note: See TracChangeset for help on using the changeset viewer.