Changeset 6159 for trunk/MagicSoft


Ignore:
Timestamp:
01/31/05 19:24:47 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6156 r6159  
    2121                                                 -*-*- END OF LINE -*-*-
    2222
     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
    2331 2005/01/31 Raquel de los Reyes
    2432
     
    2735       parameters.
    2836
     37
     38
    2939 2005/01/31 Markus Gaug
    3040 
    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
    4255
    4356 2005/01/31 Abelardo Moralejo
     
    4659     - Create only one instance of MAstroSky2Local for the
    4760       transformations, instead of two identical ones, as it was before.
     61
    4862
    4963
     
    7185     - new extractor reducing the bias and solving the problem with the
    7286       jumping pulse readout.
     87
    7388
    7489
  • trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc

    r5974 r6159  
    793793TCanvas *MStatusDisplay::GetCanvas(const TString &name) const
    794794{
     795    if (gROOT->IsBatch())
     796        return (TCanvas*)fBatch->FindObject(name);
     797
    795798    TGFrameElement *f;
    796799    TIter Next(fTab->GetList());
     
    16601663    TCanvas *c;
    16611664    while ((c=(TCanvas*)Next()))
    1662         if (!GetCanvas(c->GetName()))
     1665        //if (!GetCanvas(c->GetName()))
    16631666            DrawClonePad(AddTab(c->GetName()), *c);
    16641667
Note: See TracChangeset for help on using the changeset viewer.