Ignore:
Timestamp:
11/10/03 14:08:04 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mmain
Files:
2 edited

Legend:

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

    r2173 r2497  
    6161    //
    6262    TGCompositeFrame *frame = CreateNewTab("Setup");
    63 
     63 /*
    6464    TGGroupFrame *grp = new TGGroupFrame(frame, "Setup Display");
    6565    fList->Add(grp);
     
    8787    grp->AddFrame(fCheckButton1, laybut);
    8888    grp->AddFrame(fCheckButton2, laybut);
    89 
     89 */
    9090    TGLayoutHints *laygrp = new TGLayoutHints(kLHintsNormal|kLHintsExpandX, 20, 20, 20);
    9191    fList->Add(laygrp);
    92 
     92 /*
    9393    frame->AddFrame(grp, laygrp);
     94  */
    9495
    9596    /*
     
    120121// ======================================================================
    121122
     123#include "MStatusDisplay.h"
    122124#include "MParList.h"
    123125#include "MTaskList.h"
     
    138140#include "MEvtLoop.h"
    139141#include "MHillas.h"
     142#include "MGeomApply.h"
    140143
    141144void MAnalysis::CalculateHillas()
     
    145148    // parameter out of a Magic root file.
    146149
    147     const Bool_t displhillas  = fCheckButton1->GetState();
    148     const Bool_t displstarmap = fCheckButton2->GetState();
     150    const Bool_t displhillas  = kTRUE;//fCheckButton1->GetState();
     151    const Bool_t displstarmap = kTRUE;//fCheckButton2->GetState();
    149152
    150153    //
     
    193196    //
    194197    MReadMarsFile read("Events", fInputFile);
    195 
     198    read.DisableAutoScheme();
     199
     200    MGeomApply         apply;
    196201    MMcPedestalCopy    pcopy;
    197202    MMcPedestalNSBAdd  pdnsb;
     
    216221
    217222    tlist.AddToList(&read);
     223    tlist.AddToList(&apply);
    218224    tlist.AddToList(&pcopy);
    219225    tlist.AddToList(&pdnsb);
     
    245251    // Add ProgressBar to window
    246252    //
    247     TGProgressBar *bar = CreateProgressBar(fTop2);
    248     evtloop.SetProgressBar(bar);
     253    TGProgressBar *bar = NULL;
     254    if (displhillas || displstarmap)
     255    {
     256        MStatusDisplay *d=new MStatusDisplay;
     257        evtloop.SetDisplay(d);
     258    }
     259    else
     260    {
     261        bar = CreateProgressBar(fTop2);
     262        evtloop.SetProgressBar(bar);
     263    }
     264
    249265
    250266    //
    251267    // Execute your analysis
    252268    //
    253     Bool_t rc = evtloop.Eventloop();
     269    /*Bool_t rc =*/ evtloop.Eventloop();
    254270
    255271    //
    256272    // Remove progressbar from window
    257273    //
    258     DestroyProgressBar(bar);
    259 
     274    if (bar)
     275        DestroyProgressBar(bar);
     276
     277 /*
    260278    if (!rc)
    261279        return;
     
    270288        plist.FindObject("MHHillasSrc")->DrawClone();
    271289        plist.FindObject("MHNewImagePar")->DrawClone();
    272         /*
    273          plist.FindObject("HistSource")->DrawClone();
    274          plist.FindObject("HistAntiSrc")->DrawClone();
    275          */
    276290    }
    277291
     
    281295    cout << endl;
    282296    cout << "Calculation of Hillas Parameters finished without error!" << endl;
     297 */
    283298}
    284299
  • trunk/MagicSoft/Mars/mmain/MMonteCarlo.cc

    r2173 r2497  
    197197#include "MMcCollectionAreaCalc.h"
    198198
     199#if ROOT_VERSION_CODE < ROOT_VERSION(3,05,05)
    199200#include "../mmc/MMcTrig.hxx" // FIXME: see FIXME below
     201#endif
    200202
    201203Int_t MMonteCarlo::GetDim() const
     
    228230    plist.AddToList(&tlist);
    229231
     232#if ROOT_VERSION_CODE < ROOT_VERSION(3,05,05)
    230233    //
    231234    // FIXME: This line is needed that root finds the MMc-classes in the
     
    235238    //
    236239    MMcTrig trig;
     240#endif
    237241
    238242    //
     
    326330    plist.AddToList(&hists);
    327331
     332#if ROOT_VERSION_CODE < ROOT_VERSION(3,05,05)
    328333    //
    329334    // FIXME: This line is needed that root finds the MMc-classes in the
     
    333338    //
    334339    MMcTrig trig;
     340#endif
    335341
    336342    //
     
    412418    plist.AddToList(&hists);
    413419
     420#if ROOT_VERSION_CODE < ROOT_VERSION(3,05,05)
    414421    //
    415422    // FIXME: This line is needed that root finds the MMc-classes in the
     
    419426    //
    420427    MMcTrig trig;
     428#endif
    421429
    422430    //
Note: See TracChangeset for help on using the changeset viewer.