Changeset 9598 for trunk/MagicSoft
- Timestamp:
- 06/28/10 16:07:08 (14 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9597 r9598 19 19 -*-*- END OF LINE -*-*- 20 20 21 2010/06/28 Thomas Bretz 22 23 * mbase/MStatusDisplay.cc: 24 - Status displays where stored as MStatusArray instead of 25 MStatusDisplay 26 - Read now also can read other StatusDisplays if a key is found in 27 the file 28 29 30 21 31 2010/06/25 Thomas Bretz 22 32 … … 60 70 - added SetViewCone 61 71 62 * mmc/MMcEvt. cxx, mmc/MMcEvtBasic.h:72 * mmc/MMcEvt.[hxx,cxx], mmc/MMcEvtBasic.[h,cc]: 63 73 - moved fPhi and fTheta from MMcEvt to MMcEvtBasic 64 74 - increased class version number accordingly -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
r9581 r9598 2347 2347 while ((key=Next())) 2348 2348 { 2349 MStatusArray *arr=0; 2350 gFile->GetObject(key->GetName(), arr); 2351 if (arr) 2352 { 2353 Display(*arr, tab); 2354 n++; 2355 continue; 2356 } 2357 2358 if (tab && key->GetName()!=(TString)tab) 2359 continue; 2360 2349 2361 TCanvas *c=0; 2350 2362 gFile->GetObject(key->GetName(), c); … … 2367 2379 } 2368 2380 2369 // Add t ehcanvas to the list2381 // Add the canvas to the list 2370 2382 c->SetTitle(gFile->GetName()); 2371 2383 list.Add(c); … … 3094 3106 TFile *fsave = gFile; 3095 3107 TFile file(name, "RECREATE", GetTitle(), 9); 3096 const Int_t keys = Write(num, plain ? "plain" : "");3108 const Int_t keys = Write(num, "MStatusDisplay", plain ? "plain" : ""); 3097 3109 gFile = fsave; 3098 3110
Note:
See TracChangeset
for help on using the changeset viewer.