Ignore:
Timestamp:
10/31/01 13:47:45 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mgui
Files:
4 edited

Legend:

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

    r981 r1018  
    142142    else
    143143        fDrawingPad = gPad;
     144
     145    fDrawingPad->SetBorderMode(0);
    144146
    145147    //
     
    185187        txt->Draw();
    186188    }
     189
     190    //fDrawingPad->SetEditable(kFALSE);
    187191}
    188192
  • trunk/MagicSoft/Mars/mgui/MHexagon.cc

    r986 r1018  
    159159}
    160160
     161/*
    161162// ------------------------------------------------------------------------
    162163//
     
    166167void MHexagon::ExecuteEvent(Int_t event, Int_t px, Int_t py)
    167168{
    168 
    169169    switch (event)
    170170    {
     
    184184    }
    185185}
     186*/
    186187
    187188// ------------------------------------------------------------------------
     
    245246void MHexagon::Print(Option_t *) const
    246247{
    247     cout << GetName() << ": X=" << fX << " Y=" << fY << "R=" << fD << endl;
    248 
    249     cout << " Color="     << GetLineColor() << endl;
    250     cout << " Style="     << GetLineStyle() << endl;
    251     cout << " Width="     << GetLineWidth() << endl;
     248    cout << GetName() << ": x=" << fX << "mm y=" << fY << "mm r=" << fD << "mm" << endl;
     249
     250    cout << " Color="     << GetLineColor() << ",";
     251    cout << " Style="     << GetLineStyle() << ",";
     252    cout << " Width="     << GetLineWidth() << ",";
    252253    cout << " FillColor=" << GetFillColor() << endl;
    253254}
  • trunk/MagicSoft/Mars/mgui/MHexagon.h

    r1015 r1018  
    4949    virtual void  DrawHexagon( Float_t x, Float_t y, Float_t d);
    5050
    51     virtual void  ExecuteEvent(Int_t event, Int_t px, Int_t py);
     51    //virtual void  ExecuteEvent(Int_t event, Int_t px, Int_t py);
    5252
    5353    virtual void  ls (Option_t *Option="");
    5454    virtual void  Paint(Option_t *Option="");
    5555    virtual void  PaintHexagon(Float_t x, Float_t y, Float_t d);
    56     virtual void  Print(Option_t *Option="") const;
     56    virtual void  Print(Option_t *Option="") const; // *MENU*
    5757
    5858    ClassDef(MHexagon, 0)    // A hexagon for MAGIC
  • trunk/MagicSoft/Mars/mgui/Makefile

    r715 r1018  
    2828.SUFFIXES: .c .cc .cxx .h .hxx .o
    2929
    30 SRCFILES = MCamDisplay.cc \
     30SRCFILES = MHexagon.cc \
     31           MGeomPix.cc \
     32           MGeomCam.cc \
     33           MCamDisplay.cc \
    3134           MGeomCamCT1.cc \
    32            MGeomCamMagic.cc \
    33            MGeomCam.cc \
    34            MGeomPix.cc \
    35            MHexagon.cc
     35           MGeomCamMagic.cc
    3636
    3737SRCS    = $(SRCFILES)
Note: See TracChangeset for help on using the changeset viewer.