Changeset 3519
- Timestamp:
- 03/16/04 10:59:07 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mastro
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mastro/MAstroCamera.cc
r3518 r3519 316 316 } 317 317 318 MAstroCatalog::ExecuteEvent(event, mp1, mp2); 319 } 318 MAstroCatalog::EventInfo(event, mp1, mp2); 319 //MAstroCatalog::ExecuteEvent(event, mp1, mp2); 320 } -
trunk/MagicSoft/Mars/mastro/MAstroCatalog.cc
r3487 r3519 561 561 void MAstroCatalog::Paint(Option_t *o) 562 562 { 563 if (!gPad->IsBatch())564 gVirtualX->ClearWindow();563 // if (!gPad->IsBatch()) 564 // gVirtualX->ClearWindow(); 565 565 566 566 if (TestBit(kHasChanged)) … … 643 643 gPad->Range(-edge, -edge, edge, edge); 644 644 645 cout << gPad->GetWw() << " " << gPad->GetWh() << endl;646 647 645 const Float_t w = gPad->GetWw(); 648 646 const Float_t h = gPad->GetWh(); … … 666 664 clk.Print(); 667 665 666 // Append to a possible second pad 667 if (!gPad->GetListOfPrimitives()->FindObject(this)) 668 AppendPad(o); 669 668 670 // Append all objects to pad 669 671 DrawMap(); … … 674 676 void MAstroCatalog::Draw(Option_t *o) 675 677 { 676 TObject::Draw(o); 678 // Append to first pad 679 AppendPad(o); 677 680 678 681 if (!TestBit(kHasChanged)) -
trunk/MagicSoft/Mars/mastro/MAstroCatalog.h
r3487 r3519 193 193 void Draw(Option_t *o=""); 194 194 195 void EventInfo(Int_t event, Int_t px, Int_t py, TObject *selected );195 void EventInfo(Int_t event, Int_t px, Int_t py, TObject *selected=0); 196 196 197 197 ClassDef(MAstroCatalog, 1)
Note:
See TracChangeset
for help on using the changeset viewer.