Changeset 993 for trunk/MagicSoft/Mars/mmain/MMonteCarlo.cc
- Timestamp:
- 10/26/01 11:44:11 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mmain/MMonteCarlo.cc
r991 r993 85 85 fRadioButton3 = new TGRadioButton(group, "Use a number of trigger conditions (1..n)."); 86 86 87 fRadioButton1->SetState(kButtonDown); 88 87 89 /* 88 90 FIXME: ~TGRadioButton fails with segfault in GetMainFrame … … 188 190 #include "MMcCollectionAreaCalc.h" 189 191 192 #include "../mmc/MMcTrig.hxx" // FIXME: see FIXME below 193 190 194 Int_t MMonteCarlo::GetDim() const 191 195 { 196 return 0; 192 197 Int_t dim = atoi(fNumEntry->GetText()); 193 198 … … 216 221 MTaskList tlist; 217 222 plist.AddToList(&tlist); 223 224 // 225 // FIXME: This line is needed that root finds the MMc-classes in the 226 // dictionary when calling the constructor of MReadTree 227 // I don't have any idea why... 228 // Rem: This happens only in this GUI! 229 // 230 MMcTrig trig; 218 231 219 232 // … … 309 322 310 323 // 324 // FIXME: This line is needed that root finds the MMc-classes in the 325 // dictionary when calling the constructor of MReadTree 326 // I don't have any idea why... 327 // Rem: This happens only in this GUI! 328 // 329 MMcTrig trig; 330 331 // 311 332 // Setup out tasks: 312 333 // - First we have to read the events … … 390 411 391 412 // 413 // FIXME: This line is needed that root finds the MMc-classes in the 414 // dictionary when calling the constructor of MReadTree 415 // I don't have any idea why... 416 // Rem: This happens only in this GUI! 417 // 418 MMcTrig trig; 419 420 // 392 421 // Setup the task list 393 422 // - You need the read and the MMcThresholdCalc tasks … … 410 439 411 440 // 412 // Begin the loop (if the loop wasn't succes full441 // Begin the loop (if the loop wasn't successfull 413 442 // don't try to draw the results 414 443 // … … 422 451 TObject *obj; 423 452 while ((obj=Next())) 424 453 obj->DrawClone(); 425 454 } 426 455
Note:
See TracChangeset
for help on using the changeset viewer.