Ignore:
Timestamp:
11/05/01 10:35:36 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mmain/MAnalysis.cc

    r1021 r1030  
    3131#include <TGButton.h>      // TGTextButton
    3232#include <TGTextEntry.h>   // TGNumberEntry
    33 #include <TGProgressBar.h> // TGHProgressBar
    34 
    3533
    3634ClassImp(MAnalysis)
     
    4846    fList->Add(hillas);
    4947
    50     TGLayoutHints *laybut = new TGLayoutHints(kLHintsTop|kLHintsLeft, 10, 10, 5, 5);
     48    TGLayoutHints *laybut = new TGLayoutHints(kLHintsCenterY|kLHintsLeft, 10, 10, 5, 5);
    5149    fList->Add(laybut);
    5250
     
    209207    }
    210208
    211     TGHProgressBar bar(fTop2);
    212     TGLayoutHints laybar(kLHintsExpandX|kLHintsCenterY|kLHintsRight, 10, 10, 5, 5); //, 10); //, 5, 5);
    213     bar.SetWidth(150);
    214     fTop2->AddFrame(&bar, &laybar);
    215     Layout();
    216     MapSubwindows();
    217 
    218209    //
    219210    // Create a empty Parameter List and an empty Task List
     
    252243    //
    253244    MReadTree read("Events", fInputFile);
    254     read.SetProgressBar(&bar);
    255245
    256246    MCerPhotCalc ncalc;
     
    277267    MEvtLoop evtloop;
    278268    evtloop.SetParList(&plist);
    279     evtloop.SetProgressBar(&bar);
     269
     270    //
     271    // Add ProgressBar to window
     272    //
     273    TGProgressBar *bar = CreateProgressBar(fTop2);
     274    read.SetProgressBar(bar);
     275    evtloop.SetProgressBar(bar);
     276
    280277    //
    281278    // Execute your analysis
     
    283280    Bool_t rc = evtloop.Eventloop();
    284281
    285     fTop2->RemoveFrame(&bar);
    286     Layout();
    287     MapSubwindows();
     282    //
     283    // Remove progressbar from window
     284    //
     285    DestroyProgressBar(bar);
    288286
    289287    if (!rc)
Note: See TracChangeset for help on using the changeset viewer.