Changeset 9148
- Timestamp:
- 11/11/08 10:46:08 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9147 r9148 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/11/11 Thomas Bretz 22 23 * mbase/MStatusDisplay.cc: 24 - removed obsolete code of rot128 25 - Increased size of ListBox in MARS tab 26 27 * mgeom/MGeomCamDwarf.h: 28 - changed to have the APD camera layout as default 29 30 20 31 21 32 2008/11/11 Daniela Dorner -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
r9067 r9148 414 414 } 415 415 416 char *rot128(char *c)417 {418 char *rc=c;419 while (*c) *c++ += 128;420 return rc;421 }422 423 416 // -------------------------------------------------------------------------- 424 417 // … … 438 431 filter->Select(0); 439 432 433 440 434 TGLayoutHints *lay3 = new TGLayoutHints(kLHintsCenterX|kLHintsTop, 10, 10, 10, 5); 441 435 fList->Add(lay3); … … 446 440 fList->Add(l); 447 441 448 filter->SetWidth( l->GetWidth());442 filter->SetWidth(5*l->GetWidth()/4); 449 443 filter->SetHeight(4*l->GetHeight()/3); 444 filter->GetListBox()->SetHeight(l->GetHeight()*16); 450 445 451 446 TGLayoutHints *layb = new TGLayoutHints(kLHintsCenterX|kLHintsTop, 10, 10, 5, 5); -
trunk/MagicSoft/Mars/mgeom/MGeomCamDwarf.h
r8386 r9148 21 21 22 22 public: 23 MGeomCamDwarf(Double_t rad, Double_t diameter=21, Double_t dist=4.92, const char *name=NULL); 24 MGeomCamDwarf(Int_t rings, Double_t diameter=21, Double_t dist=4.92, const char *name=NULL); 23 // 223 24 MGeomCamDwarf(Double_t rad, Double_t diameter=16, Double_t dist=4.92, const char *name=NULL); 25 MGeomCamDwarf(Int_t rings, Double_t diameter=16, Double_t dist=4.92, const char *name=NULL); 25 26 MGeomCamDwarf(const char *name=NULL); 26 27
Note:
See TracChangeset
for help on using the changeset viewer.