Changeset 7000


Ignore:
Timestamp:
05/06/05 19:20:00 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6999 r7000  
    2121
    2222                                                 -*-*- END OF LINE -*-*-
     23
     24 2005/05/06 Thomas Bretz
     25
     26   * mbase/MStatusDisplay.cc:
     27     - fixed constructor to work with newer root versions
     28       (gClient!=NULL)
     29
     30   * mfileio/MWriteRootFile.h:
     31     - added a comment about BITs used by root
     32
     33   * mhflux/MHEffectiveOnTime.cc:
     34     - use 1e-10 instead of 0 in TPad::Divide
     35
     36
    2337
    2438 2005/05/06 Daniela Dorner
  • trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc

    r6978 r7000  
    680680    // Add Widgets (from top to bottom)
    681681    //
    682     if (gClient) // BATCH MODE
    683     {
    684         AddMenuBar();
    685         AddUserFrame();
    686         AddTabs();
    687         AddProgressBar();
    688         AddStatusBar();
    689     }
     682    // In newer root versions gClient!=NULL in batch mode!
     683    if (!gClient || !gClient->GetRoot() || gROOT->IsBatch()) // BATCH MODE
     684        return;
     685
     686    AddMenuBar();
     687    AddUserFrame();
     688    AddTabs();
     689    AddProgressBar();
     690    AddStatusBar();
    690691
    691692    //
  • trunk/MagicSoft/Mars/mfileio/MWriteRootFile.h

    r6513 r7000  
    8888        // TBranch::kAutoDelete = BIT(15)
    8989        // TBranchElement::kDeleteObject = BIT(16)
     90        // TTree::kFriendLock = BIT(17)
    9091        kIsNewTree  = BIT(17)
    9192    };
  • trunk/MagicSoft/Mars/mhflux/MHEffectiveOnTime.cc

    r6949 r7000  
    764764    AppendPad("fit");
    765765
    766     pad->Divide(2, 1, 0, 0);
     766    pad->Divide(2, 1, 1e-10, 1e-10);
    767767
    768768    TH1 *h;
     
    770770    pad->cd(1);
    771771    gPad->SetBorderMode(0);
    772     gPad->Divide(1, 3, 0, 0);
     772    gPad->Divide(1, 3, 1e-10, 1e-10);
    773773    pad->GetPad(1)->cd(1);
    774774    gPad->SetBorderMode(0);
     
    799799    pad->cd(2);
    800800    gPad->SetBorderMode(0);
    801     gPad->Divide(1, 3, 0, 0);
     801    gPad->Divide(1, 3, 1e-10, 1e-10);
    802802
    803803    pad->GetPad(2)->cd(1);
Note: See TracChangeset for help on using the changeset viewer.