Ignore:
Timestamp:
11/29/05 14:45:13 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r7297 r7435  
    8585#include "MMuonSearchParCalc.h"   // MMuonSearchParCalc
    8686#include "MMuonCalibParCalc.h"    // MMuonCalibParCalc
     87#include "MContinue.h"            // MContinue
    8788//#include "MMcTriggerLvl2Calc.h"   // MMcTriggerLvl2Calc
    8889
     
    347348    }
    348349    tlist->AddToList(hcalc);
     350
    349351    // --------------------------------------------------
     352    // Muon Analysis
    350353    MMuonSearchParCalc *muscalc = new MMuonSearchParCalc;
    351354    MMuonCalibParCalc  *mcalc   = new MMuonCalibParCalc;
     
    355358    tlist->AddToList(fillmuon);
    356359    tlist->AddToList(mcalc);
     360
    357361    // --------------------------------------------------
     362    // Cut to steer the display
     363    MContinue *cont0=new MContinue("", "Cut");
     364    cont0->SetAllowEmpty();
     365    tlist->AddToList(cont0);
    358366
    359367    //
     
    526534    const Int_t num = reader->GetNumEntry();
    527535
     536    Int_t rc;
    528537    do
    529538    {
     
    539548        }
    540549
    541         const Int_t rc = tlist->Process();
     550        rc = tlist->Process();
    542551        if (rc==kFALSE || rc==kERROR)
    543552            return;
     
    545554        reader->DecEventNum();
    546555
    547     } while (raw && raw->GetNumPixels()<1 && dir!=0);
     556        // Define other continue conditions
     557        if (raw && raw->GetNumPixels()<1)
     558            rc = kCONTINUE;
     559
     560    } while (rc==kCONTINUE && dir!=0);
    548561
    549562    //
Note: See TracChangeset for help on using the changeset viewer.