- Timestamp:
- Oct 21, 2014, 1:36:59 AM (10 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 8b04b31
- Parents:
- 4fd37d4
- Location:
- display
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
display/DelphesEventDisplay.cc
r4fd37d4 r5fbcfe8 145 145 } 146 146 147 // the GUI: control panel, summary tab 147 148 make_gui(); 149 150 //ready... 148 151 load_event(); 149 152 gEve->Redraw3D(kTRUE); … … 299 302 browser->StopEmbedding(); 300 303 browser->SetTabTitle("Event Control", 0); 301 } 302 304 305 // the summary tab 306 htmlSummary_ = new DelphesHtmlSummary("Delphes Event Display Summary Table"); 307 TEveWindowSlot* slot = TEveWindow::CreateWindowInTab(gEve->GetBrowser()->GetTabRight()); 308 gHtml_ = new TGHtml(0, 100, 100); 309 TEveWindowFrame *wf = slot->MakeFrame(gHtml_); 310 gHtml_->MapSubwindows(); 311 wf->SetElementName("Summary"); 312 313 } 314 -
display/DelphesEventDisplay.h
r4fd37d4 r5fbcfe8 25 25 #include "display/DelphesDisplay.h" 26 26 #include "display/Delphes3DGeometry.h" 27 #include "display/DelphesHtmlSummary.h" 27 28 #include "TChain.h" 28 29 #include "TAxis.h" 30 #include "TGHtml.h" 29 31 #include "TClonesArray.h" 30 32 … … 56 58 std::vector<DelphesBranchBase*> elements_; 57 59 DelphesDisplay *delphesDisplay_; 60 DelphesHtmlSummary *htmlSummary_; 61 TGHtml *gHtml_; 58 62 59 63 // gui controls -
display/DisplayLinkDef.h
r4fd37d4 r5fbcfe8 35 35 #include "display/Delphes3DGeometry.h" 36 36 #include "display/DelphesEventDisplay.h" 37 #include "display/DelphesHtmlSummary.h" 37 38 38 39 #ifdef __CINT__ … … 49 50 #pragma link C++ class Delphes3DGeometry; 50 51 #pragma link C++ class DelphesEventDisplay; 52 #pragma link C++ class DelphesHtmlObjTable; 53 #pragma link C++ class DelphesHtmlSummary; 51 54 52 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.