Changeset 1018 for trunk/MagicSoft/Mars/mgui
- Timestamp:
- 10/31/01 13:47:45 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mgui
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mgui/MCamDisplay.cc
r981 r1018 142 142 else 143 143 fDrawingPad = gPad; 144 145 fDrawingPad->SetBorderMode(0); 144 146 145 147 // … … 185 187 txt->Draw(); 186 188 } 189 190 //fDrawingPad->SetEditable(kFALSE); 187 191 } 188 192 -
trunk/MagicSoft/Mars/mgui/MHexagon.cc
r986 r1018 159 159 } 160 160 161 /* 161 162 // ------------------------------------------------------------------------ 162 163 // … … 166 167 void MHexagon::ExecuteEvent(Int_t event, Int_t px, Int_t py) 167 168 { 168 169 169 switch (event) 170 170 { … … 184 184 } 185 185 } 186 */ 186 187 187 188 // ------------------------------------------------------------------------ … … 245 246 void MHexagon::Print(Option_t *) const 246 247 { 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() << ","; 252 253 cout << " FillColor=" << GetFillColor() << endl; 253 254 } -
trunk/MagicSoft/Mars/mgui/MHexagon.h
r1015 r1018 49 49 virtual void DrawHexagon( Float_t x, Float_t y, Float_t d); 50 50 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); 52 52 53 53 virtual void ls (Option_t *Option=""); 54 54 virtual void Paint(Option_t *Option=""); 55 55 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* 57 57 58 58 ClassDef(MHexagon, 0) // A hexagon for MAGIC -
trunk/MagicSoft/Mars/mgui/Makefile
r715 r1018 28 28 .SUFFIXES: .c .cc .cxx .h .hxx .o 29 29 30 SRCFILES = MCamDisplay.cc \ 30 SRCFILES = MHexagon.cc \ 31 MGeomPix.cc \ 32 MGeomCam.cc \ 33 MCamDisplay.cc \ 31 34 MGeomCamCT1.cc \ 32 MGeomCamMagic.cc \ 33 MGeomCam.cc \ 34 MGeomPix.cc \ 35 MHexagon.cc 35 MGeomCamMagic.cc 36 36 37 37 SRCS = $(SRCFILES)
Note:
See TracChangeset
for help on using the changeset viewer.