Changeset 7435 for trunk/MagicSoft/Mars/mmain
- Timestamp:
- 11/29/05 14:45:13 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mmain/MEventDisplay.cc
r7297 r7435 85 85 #include "MMuonSearchParCalc.h" // MMuonSearchParCalc 86 86 #include "MMuonCalibParCalc.h" // MMuonCalibParCalc 87 #include "MContinue.h" // MContinue 87 88 //#include "MMcTriggerLvl2Calc.h" // MMcTriggerLvl2Calc 88 89 … … 347 348 } 348 349 tlist->AddToList(hcalc); 350 349 351 // -------------------------------------------------- 352 // Muon Analysis 350 353 MMuonSearchParCalc *muscalc = new MMuonSearchParCalc; 351 354 MMuonCalibParCalc *mcalc = new MMuonCalibParCalc; … … 355 358 tlist->AddToList(fillmuon); 356 359 tlist->AddToList(mcalc); 360 357 361 // -------------------------------------------------- 362 // Cut to steer the display 363 MContinue *cont0=new MContinue("", "Cut"); 364 cont0->SetAllowEmpty(); 365 tlist->AddToList(cont0); 358 366 359 367 // … … 526 534 const Int_t num = reader->GetNumEntry(); 527 535 536 Int_t rc; 528 537 do 529 538 { … … 539 548 } 540 549 541 const Int_trc = tlist->Process();550 rc = tlist->Process(); 542 551 if (rc==kFALSE || rc==kERROR) 543 552 return; … … 545 554 reader->DecEventNum(); 546 555 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); 548 561 549 562 //
Note:
See TracChangeset
for help on using the changeset viewer.