Changeset 6159 for trunk/MagicSoft
- Timestamp:
- 01/31/05 19:24:47 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6156 r6159 21 21 -*-*- END OF LINE -*-*- 22 22 23 2005/01/31 Thomas Bretz 24 25 * mbase/MStatusDisplay.cc: 26 - fixed handling of batch mode in GetCanvas(const TString &name) 27 - don't skip already existing tabs in Display() 28 29 30 23 31 2005/01/31 Raquel de los Reyes 24 32 … … 27 35 parameters. 28 36 37 38 29 39 2005/01/31 Markus Gaug 30 40 31 * mjobs/MJob.[h,cc] 32 * mjobs/MJCalibrateSignal.[h,cc] 33 * mjobs/MJCalibration.[h,cc] 34 - move file type enum to base class 35 36 * mjobs/MJCalibrateSignal.[h,cc] 37 - allow also for direct setting of an MRunIter (not used in callisto). 38 39 * mcalib/MCalibrationChargeCalc.[h,cc] 40 - test also for pulser strength changes additionally to changes in 41 colour. 41 * mjobs/MJob.[h,cc] 42 * mjobs/MJCalibrateSignal.[h,cc] 43 * mjobs/MJCalibration.[h,cc] 44 - move file type enum to base class 45 46 * mjobs/MJCalibrateSignal.[h,cc] 47 - allow also for direct setting of an MRunIter (not used in 48 callisto). 49 50 * mcalib/MCalibrationChargeCalc.[h,cc] 51 - test also for pulser strength changes additionally to changes in 52 colour. 53 54 42 55 43 56 2005/01/31 Abelardo Moralejo … … 46 59 - Create only one instance of MAstroSky2Local for the 47 60 transformations, instead of two identical ones, as it was before. 61 48 62 49 63 … … 71 85 - new extractor reducing the bias and solving the problem with the 72 86 jumping pulse readout. 87 73 88 74 89 -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
r5974 r6159 793 793 TCanvas *MStatusDisplay::GetCanvas(const TString &name) const 794 794 { 795 if (gROOT->IsBatch()) 796 return (TCanvas*)fBatch->FindObject(name); 797 795 798 TGFrameElement *f; 796 799 TIter Next(fTab->GetList()); … … 1660 1663 TCanvas *c; 1661 1664 while ((c=(TCanvas*)Next())) 1662 if (!GetCanvas(c->GetName()))1665 //if (!GetCanvas(c->GetName())) 1663 1666 DrawClonePad(AddTab(c->GetName()), *c); 1664 1667
Note:
See TracChangeset
for help on using the changeset viewer.