Changeset 5114 for trunk/MagicSoft/Mars/mmain
- Timestamp:
- 09/17/04 18:51:37 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mmain/MEventDisplay.cc
r4828 r5114 253 253 MHEvent *evt03 = new MHEvent(MHEvent::kEvtPedestal); 254 254 MHEvent *evt04 = new MHEvent(MHEvent::kEvtPedestalRMS); 255 MHEvent *evt05 = new MHEvent(MHEvent::kEvtRelativeSignal);256 255 MHEvent *evt06a= new MHEvent(MHEvent::kEvtCleaningData); 257 256 MHEvent *evt06b= new MHEvent(MHEvent::kEvtCleaningLevels); … … 265 264 evt03->SetName("Pedestal"); 266 265 evt04->SetName("PedRMS"); 267 evt05->SetName("Signal/PedRMS");268 266 evt06a->SetName("CleanData"); 269 267 evt06b->SetName("CleanLevels"); … … 278 276 plist->AddToList(evt03); 279 277 plist->AddToList(evt04); 280 plist->AddToList(evt05);281 278 plist->AddToList(evt06a); 282 279 plist->AddToList(evt06b); … … 292 289 MFillH *fill03 = new MFillH(evt03, "MPedPhotCam", "MFillH03"); 293 290 MFillH *fill04 = new MFillH(evt04, "MPedPhotCam", "MFillH04"); 294 MFillH *fill05 = new MFillH(evt05, "MCameraData", "MFillH05");295 291 MFillH *fill06a= new MFillH(evt06a, "MCameraData", "MFillH06a"); 296 292 MFillH *fill06b= new MFillH(evt06b, "MCameraData", "MFillH06b"); … … 359 355 tlist->AddToList(fill03); 360 356 tlist->AddToList(fill04); 361 tlist->AddToList(fill05);362 357 tlist->AddToList(fill06a); 363 358 tlist->AddToList(fill06b); … … 629 624 // Draw ellipse on top of all pads 630 625 // 631 TObject *hillas = plist->FindObject("MHillas"); 626 TObject *hillas1 = plist->FindObject("MHillas"); 627 TObject *hillas2 = plist->FindObject("MHillasSrc"); 632 628 for (int i=1; i<7;i++) 633 629 { 634 630 TCanvas *c = GetCanvas(i); 635 631 c->cd(1); 636 hillas->Draw(); 632 hillas1->Draw(); 633 hillas2->Draw(); 637 634 } 638 635 }
Note:
See TracChangeset
for help on using the changeset viewer.