[369744d] | 1 | /*
|
---|
| 2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
| 3 | * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
|
---|
[1fa50c2] | 4 | *
|
---|
[369744d] | 5 | * This program is free software: you can redistribute it and/or modify
|
---|
| 6 | * it under the terms of the GNU General Public License as published by
|
---|
| 7 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 8 | * (at your option) any later version.
|
---|
[1fa50c2] | 9 | *
|
---|
[369744d] | 10 | * This program is distributed in the hope that it will be useful,
|
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 13 | * GNU General Public License for more details.
|
---|
[1fa50c2] | 14 | *
|
---|
[369744d] | 15 | * You should have received a copy of the GNU General Public License
|
---|
| 16 | * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 17 | */
|
---|
| 18 |
|
---|
[cfc3160] | 19 | #include <cassert>
|
---|
[84dd1c8] | 20 | #include <iostream>
|
---|
[cfc3160] | 21 | #include <utility>
|
---|
| 22 | #include <algorithm>
|
---|
| 23 | #include "TGeoManager.h"
|
---|
| 24 | #include "TGeoVolume.h"
|
---|
| 25 | #include "external/ExRootAnalysis/ExRootConfReader.h"
|
---|
| 26 | #include "external/ExRootAnalysis/ExRootTreeReader.h"
|
---|
| 27 | #include "display/DelphesCaloData.h"
|
---|
| 28 | #include "display/DelphesBranchElement.h"
|
---|
| 29 | #include "display/Delphes3DGeometry.h"
|
---|
| 30 | #include "display/DelphesEventDisplay.h"
|
---|
| 31 | #include "classes/DelphesClasses.h"
|
---|
| 32 | #include "TEveElement.h"
|
---|
| 33 | #include "TEveJetCone.h"
|
---|
| 34 | #include "TEveTrack.h"
|
---|
| 35 | #include "TEveTrackPropagator.h"
|
---|
| 36 | #include "TEveCalo.h"
|
---|
| 37 | #include "TEveManager.h"
|
---|
| 38 | #include "TEveGeoNode.h"
|
---|
| 39 | #include "TEveTrans.h"
|
---|
| 40 | #include "TEveViewer.h"
|
---|
| 41 | #include "TEveBrowser.h"
|
---|
| 42 | #include "TEveArrow.h"
|
---|
| 43 | #include "TMath.h"
|
---|
| 44 | #include "TSystem.h"
|
---|
| 45 | #include "TRootBrowser.h"
|
---|
| 46 | #include "TGButton.h"
|
---|
[6301e02] | 47 | #include "TGTextEntry.h"
|
---|
| 48 | #include "TGProgressBar.h"
|
---|
| 49 | #include "TGNumberEntry.h"
|
---|
[2ca23b5] | 50 | #include "TRootEmbeddedCanvas.h"
|
---|
[cfc3160] | 51 | #include "TClonesArray.h"
|
---|
[8b04b31] | 52 | #include "TEveEventManager.h"
|
---|
[2ca23b5] | 53 | #include "TCanvas.h"
|
---|
| 54 | #include "TH1F.h"
|
---|
[cfc3160] | 55 |
|
---|
| 56 | DelphesEventDisplay::DelphesEventDisplay()
|
---|
| 57 | {
|
---|
[fafc433] | 58 | event_id_ = 0;
|
---|
[cfc3160] | 59 | tkRadius_ = 1.29;
|
---|
| 60 | totRadius_ = 2.0;
|
---|
| 61 | tkHalfLength_ = 3.0;
|
---|
[4fd37d4] | 62 | muHalfLength_ = 6.0;
|
---|
[cfc3160] | 63 | bz_ = 3.8;
|
---|
| 64 | chain_ = new TChain("Delphes");
|
---|
[fafc433] | 65 | treeReader_ = 0;
|
---|
| 66 | delphesDisplay_ = 0;
|
---|
[4fd37d4] | 67 | etaAxis_ = 0;
|
---|
| 68 | phiAxis_ = 0;
|
---|
[cfc3160] | 69 | }
|
---|
| 70 |
|
---|
| 71 | DelphesEventDisplay::~DelphesEventDisplay()
|
---|
| 72 | {
|
---|
| 73 | delete chain_;
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[0a67548] | 76 | void DelphesEventDisplay::EventChanged(Int_t e)
|
---|
| 77 | {
|
---|
| 78 | if( e!= event_id_ ) {
|
---|
| 79 | event_id_ = e;
|
---|
| 80 | Emit("EventChanged(Int_t)",e);
|
---|
| 81 | load_event();
|
---|
| 82 | }
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 |
|
---|
[cfc3160] | 86 | DelphesEventDisplay::DelphesEventDisplay(const char *configFile, const char *inputFile, Delphes3DGeometry& det3D)
|
---|
| 87 | {
|
---|
[fafc433] | 88 | event_id_ = 0;
|
---|
[cfc3160] | 89 | tkRadius_ = 1.29;
|
---|
| 90 | totRadius_ = 2.0;
|
---|
| 91 | tkHalfLength_ = 3.0;
|
---|
| 92 | bz_ = 3.8;
|
---|
| 93 | chain_ = new TChain("Delphes");
|
---|
[fafc433] | 94 | treeReader_ = 0;
|
---|
| 95 | delphesDisplay_ = 0;
|
---|
[cfc3160] | 96 |
|
---|
| 97 | // initialize the application
|
---|
| 98 | TEveManager::Create(kTRUE, "IV");
|
---|
[2ca23b5] | 99 | fStatusBar_ = gEve->GetBrowser()->GetStatusBar();
|
---|
[cfc3160] | 100 | TGeoManager* geom = gGeoManager;
|
---|
| 101 |
|
---|
| 102 | // build the detector
|
---|
| 103 | tkRadius_ = det3D.getTrackerRadius();
|
---|
| 104 | totRadius_ = det3D.getDetectorRadius();
|
---|
| 105 | tkHalfLength_ = det3D.getTrackerHalfLength();
|
---|
[4fd37d4] | 106 | muHalfLength_ = det3D.getDetectorHalfLength();
|
---|
[cfc3160] | 107 | bz_ = det3D.getBField();
|
---|
[4fd37d4] | 108 | etaAxis_ = det3D.getCaloAxes().first;
|
---|
| 109 | phiAxis_ = det3D.getCaloAxes().second;
|
---|
[cfc3160] | 110 | TGeoVolume* top = det3D.getDetector(false);
|
---|
| 111 | geom->SetTopVolume(top);
|
---|
| 112 | TEveElementList *geometry = new TEveElementList("Geometry");
|
---|
[30bb83a] | 113 | TObjArray* nodes = top->GetNodes();
|
---|
| 114 | TIter itNodes(nodes);
|
---|
| 115 | TGeoNode* nodeobj;
|
---|
| 116 | TEveGeoTopNode* node;
|
---|
| 117 | while((nodeobj = (TGeoNode*)itNodes.Next())) {
|
---|
| 118 | node = new TEveGeoTopNode(gGeoManager,nodeobj);
|
---|
| 119 | node->UseNodeTrans();
|
---|
| 120 | geometry->AddElement(node);
|
---|
| 121 | }
|
---|
[cfc3160] | 122 |
|
---|
| 123 | // Create chain of root trees
|
---|
| 124 | chain_->Add(inputFile);
|
---|
| 125 |
|
---|
| 126 | // Create object of class ExRootTreeReader
|
---|
[2ca23b5] | 127 | fStatusBar_->SetText("Opening Delphes data file", 1);
|
---|
[6301e02] | 128 | gSystem->ProcessEvents();
|
---|
[fafc433] | 129 | treeReader_ = new ExRootTreeReader(chain_);
|
---|
[cfc3160] | 130 |
|
---|
| 131 | // prepare data collections
|
---|
[4fd37d4] | 132 | readConfig(configFile, elements_);
|
---|
[fafc433] | 133 | for(std::vector<DelphesBranchBase*>::iterator element = elements_.begin(); element<elements_.end(); ++element) {
|
---|
[84dd1c8] | 134 | DelphesBranchElement<TEveTrackList>* item_v1 = dynamic_cast<DelphesBranchElement<TEveTrackList>*>(*element);
|
---|
[a3b2495] | 135 | DelphesBranchElement<TEveElementList>* item_v2 = dynamic_cast<DelphesBranchElement<TEveElementList>*>(*element);
|
---|
[84dd1c8] | 136 | if(item_v1) gEve->AddElement(item_v1->GetContainer());
|
---|
| 137 | if(item_v2) gEve->AddElement(item_v2->GetContainer());
|
---|
| 138 | }
|
---|
[cfc3160] | 139 |
|
---|
| 140 | // viewers and scenes
|
---|
[fafc433] | 141 | delphesDisplay_ = new DelphesDisplay;
|
---|
[cfc3160] | 142 | gEve->AddGlobalElement(geometry);
|
---|
[fafc433] | 143 | delphesDisplay_->ImportGeomRPhi(geometry);
|
---|
| 144 | delphesDisplay_->ImportGeomRhoZ(geometry);
|
---|
[cfc3160] | 145 | // find the first calo data and use that to initialize the calo display
|
---|
[fafc433] | 146 | for(std::vector<DelphesBranchBase*>::iterator data=elements_.begin();data<elements_.end();++data) {
|
---|
[4fd37d4] | 147 | if(TString((*data)->GetType())=="Tower") { // we could also use GetClassName()=="DelphesCaloData"
|
---|
[cfc3160] | 148 | DelphesCaloData* container = dynamic_cast<DelphesBranchElement<DelphesCaloData>*>((*data))->GetContainer();
|
---|
| 149 | assert(container);
|
---|
| 150 | TEveCalo3D *calo3d = new TEveCalo3D(container);
|
---|
| 151 | calo3d->SetBarrelRadius(tkRadius_);
|
---|
| 152 | calo3d->SetEndCapPos(tkHalfLength_);
|
---|
| 153 | gEve->AddGlobalElement(calo3d);
|
---|
[fafc433] | 154 | delphesDisplay_->ImportCaloRPhi(calo3d);
|
---|
| 155 | delphesDisplay_->ImportCaloRhoZ(calo3d);
|
---|
[cfc3160] | 156 | TEveCaloLego *lego = new TEveCaloLego(container);
|
---|
| 157 | lego->InitMainTrans();
|
---|
[c3c9ac5] | 158 | // lego->RefMainTrans().SetScale(TMath::TwoPi(), TMath::TwoPi(), TMath::Pi());
|
---|
| 159 | lego->RefMainTrans().SetScale(100, 100, TMath::Pi());
|
---|
[cfc3160] | 160 | lego->SetAutoRebin(kFALSE);
|
---|
| 161 | lego->Set2DMode(TEveCaloLego::kValSizeOutline);
|
---|
[fafc433] | 162 | delphesDisplay_->ImportCaloLego(lego);
|
---|
[cfc3160] | 163 | break;
|
---|
| 164 | }
|
---|
| 165 | }
|
---|
| 166 |
|
---|
[5fbcfe8] | 167 | // the GUI: control panel, summary tab
|
---|
[fafc433] | 168 | make_gui();
|
---|
[5fbcfe8] | 169 |
|
---|
| 170 | //ready...
|
---|
[2ca23b5] | 171 | fStatusBar_->SetText("Ready.", 1);
|
---|
[6301e02] | 172 | gSystem->ProcessEvents();
|
---|
[ad015db] | 173 | load_event();
|
---|
[cfc3160] | 174 | gEve->Redraw3D(kTRUE);
|
---|
| 175 |
|
---|
| 176 | }
|
---|
[30bb83a] | 177 |
|
---|
[cfc3160] | 178 | // function that parses the config to extract the branches of interest and prepare containers
|
---|
[4fd37d4] | 179 | void DelphesEventDisplay::readConfig(const char *configFile, std::vector<DelphesBranchBase*>& elements) {
|
---|
[cfc3160] | 180 | ExRootConfReader *confReader = new ExRootConfReader;
|
---|
| 181 | confReader->ReadFile(configFile);
|
---|
| 182 | ExRootConfParam branches = confReader->GetParam("TreeWriter::Branch");
|
---|
| 183 | Int_t nBranches = branches.GetSize()/3;
|
---|
| 184 | DelphesBranchElement<TEveTrackList>* tlist;
|
---|
| 185 | DelphesBranchElement<DelphesCaloData>* clist;
|
---|
| 186 | DelphesBranchElement<TEveElementList>* elist;
|
---|
[a3b2495] | 187 | // first loop with all but tracks
|
---|
[cfc3160] | 188 | for(Int_t b = 0; b<nBranches; ++b) {
|
---|
| 189 | TString input = branches[b*3].GetString();
|
---|
| 190 | TString name = branches[b*3+1].GetString();
|
---|
| 191 | TString className = branches[b*3+2].GetString();
|
---|
[a3b2495] | 192 | if(className=="Tower") {
|
---|
[cfc3160] | 193 | if(input.Contains("eflow",TString::kIgnoreCase) || name.Contains("eflow",TString::kIgnoreCase)) continue; //no eflow
|
---|
[4fd37d4] | 194 | clist = new DelphesBranchElement<DelphesCaloData>(name,treeReader_->UseBranch(name),kBlack);
|
---|
| 195 | clist->GetContainer()->SetEtaBins(etaAxis_);
|
---|
| 196 | clist->GetContainer()->SetPhiBins(phiAxis_);
|
---|
[cfc3160] | 197 | elements.push_back(clist);
|
---|
| 198 | } else if(className=="Jet") {
|
---|
| 199 | if(input.Contains("GenJetFinder")) {
|
---|
[4fd37d4] | 200 | elist = new DelphesBranchElement<TEveElementList>(name,treeReader_->UseBranch(name),kCyan);
|
---|
[cfc3160] | 201 | elist->GetContainer()->SetRnrSelf(false);
|
---|
| 202 | elist->GetContainer()->SetRnrChildren(false);
|
---|
[4fd37d4] | 203 | elist->SetTrackingVolume(tkRadius_, tkHalfLength_, bz_);
|
---|
[cfc3160] | 204 | elements.push_back(elist);
|
---|
| 205 | } else {
|
---|
[4fd37d4] | 206 | elist = new DelphesBranchElement<TEveElementList>(name,treeReader_->UseBranch(name),kYellow);
|
---|
| 207 | elist->SetTrackingVolume(tkRadius_, tkHalfLength_, bz_);
|
---|
| 208 | elements.push_back(elist);
|
---|
[cfc3160] | 209 | }
|
---|
| 210 | } else if(className=="Electron") {
|
---|
[4fd37d4] | 211 | tlist = new DelphesBranchElement<TEveTrackList>(name,treeReader_->UseBranch(name),kRed);
|
---|
| 212 | tlist->SetTrackingVolume(tkRadius_, tkHalfLength_, bz_);
|
---|
[cfc3160] | 213 | elements.push_back(tlist);
|
---|
| 214 | } else if(className=="Photon") {
|
---|
[4fd37d4] | 215 | tlist = new DelphesBranchElement<TEveTrackList>(name,treeReader_->UseBranch(name),kYellow);
|
---|
| 216 | tlist->SetTrackingVolume(tkRadius_, tkHalfLength_, bz_);
|
---|
[cfc3160] | 217 | elements.push_back(tlist);
|
---|
| 218 | } else if(className=="Muon") {
|
---|
[4fd37d4] | 219 | tlist = new DelphesBranchElement<TEveTrackList>(name,treeReader_->UseBranch(name),kGreen);
|
---|
| 220 | tlist->SetTrackingVolume(totRadius_, muHalfLength_, bz_);
|
---|
[cfc3160] | 221 | elements.push_back(tlist);
|
---|
| 222 | } else if(className=="MissingET") {
|
---|
[4fd37d4] | 223 | elist = new DelphesBranchElement<TEveElementList>(name,treeReader_->UseBranch(name),kViolet);
|
---|
| 224 | elist->SetTrackingVolume(tkRadius_, tkHalfLength_, bz_);
|
---|
| 225 | elements.push_back(elist);
|
---|
[cfc3160] | 226 | } else if(className=="GenParticle") {
|
---|
[4fd37d4] | 227 | tlist = new DelphesBranchElement<TEveTrackList>(name,treeReader_->UseBranch(name),kCyan);
|
---|
| 228 | tlist->SetTrackingVolume(tkRadius_, tkHalfLength_, bz_);
|
---|
[cfc3160] | 229 | tlist->GetContainer()->SetRnrSelf(false);
|
---|
| 230 | tlist->GetContainer()->SetRnrChildren(false);
|
---|
[4fd37d4] | 231 | elements.push_back(tlist);
|
---|
[a3b2495] | 232 | } else {
|
---|
| 233 | continue;
|
---|
[cfc3160] | 234 | }
|
---|
| 235 | }
|
---|
[a3b2495] | 236 | // second loop for tracks
|
---|
| 237 | for(Int_t b = 0; b<nBranches; ++b) {
|
---|
| 238 | TString input = branches[b*3].GetString();
|
---|
| 239 | TString name = branches[b*3+1].GetString();
|
---|
| 240 | TString className = branches[b*3+2].GetString();
|
---|
| 241 | if(className=="Track") {
|
---|
| 242 | if(input.Contains("eflow",TString::kIgnoreCase) || name.Contains("eflow",TString::kIgnoreCase)) continue; //no eflow
|
---|
[4fd37d4] | 243 | tlist = new DelphesBranchElement<TEveTrackList>(name,treeReader_->UseBranch(name),kBlue);
|
---|
| 244 | tlist->SetTrackingVolume(tkRadius_, tkHalfLength_, bz_);
|
---|
[a3b2495] | 245 | elements.push_back(tlist);
|
---|
| 246 | }
|
---|
| 247 | }
|
---|
[cfc3160] | 248 | }
|
---|
| 249 |
|
---|
| 250 | void DelphesEventDisplay::load_event()
|
---|
| 251 | {
|
---|
[fafc433] | 252 | // Load event specified in global event_id_.
|
---|
[cfc3160] | 253 | // The contents of previous event are removed.
|
---|
| 254 |
|
---|
[30bb83a] | 255 | // safety
|
---|
| 256 | if(event_id_ >= treeReader_->GetEntries() || event_id_<0 ) return;
|
---|
| 257 |
|
---|
[2ca23b5] | 258 | // message
|
---|
| 259 | fStatusBar_->SetText(Form("Loading event %d.", event_id_), 1);
|
---|
[6301e02] | 260 | gSystem->ProcessEvents();
|
---|
[cfc3160] | 261 |
|
---|
| 262 | // clear the previous event
|
---|
| 263 | gEve->GetViewers()->DeleteAnnotations();
|
---|
[fafc433] | 264 | for(std::vector<DelphesBranchBase*>::iterator data=elements_.begin();data<elements_.end();++data) {
|
---|
[cfc3160] | 265 | (*data)->Reset();
|
---|
| 266 | }
|
---|
| 267 |
|
---|
[30bb83a] | 268 | // Load selected branches with data from specified event
|
---|
| 269 | treeReader_->ReadEntry(event_id_);
|
---|
[4fd37d4] | 270 | for(std::vector<DelphesBranchBase*>::iterator data=elements_.begin();data<elements_.end();++data) {
|
---|
| 271 | (*data)->ReadBranch();
|
---|
[30bb83a] | 272 | }
|
---|
[cfc3160] | 273 |
|
---|
| 274 | // update display
|
---|
| 275 | TEveElement* top = (TEveElement*)gEve->GetCurrentEvent();
|
---|
[fafc433] | 276 | delphesDisplay_->DestroyEventRPhi();
|
---|
| 277 | delphesDisplay_->ImportEventRPhi(top);
|
---|
| 278 | delphesDisplay_->DestroyEventRhoZ();
|
---|
| 279 | delphesDisplay_->ImportEventRhoZ(top);
|
---|
[8b04b31] | 280 | update_html_summary();
|
---|
[ad015db] | 281 | plotSummary_->FillEvent();
|
---|
| 282 | plotSummary_->Draw();
|
---|
[cfc3160] | 283 |
|
---|
[30bb83a] | 284 | gEve->Redraw3D(kFALSE, kTRUE);
|
---|
[2ca23b5] | 285 | fStatusBar_->SetText(Form("Loaded event %d.", event_id_), 1);
|
---|
[6301e02] | 286 | gSystem->ProcessEvents();
|
---|
[cfc3160] | 287 | }
|
---|
| 288 |
|
---|
[8b04b31] | 289 | void DelphesEventDisplay::update_html_summary()
|
---|
| 290 | {
|
---|
| 291 | // Update summary of current event.
|
---|
| 292 |
|
---|
| 293 | TEveElement::List_i i;
|
---|
| 294 | TEveElement::List_i j;
|
---|
| 295 | Int_t k;
|
---|
| 296 | TEveElement *el;
|
---|
| 297 | DelphesHtmlObjTable *table;
|
---|
| 298 | TEveEventManager *mgr = gEve ? gEve->GetCurrentEvent() : 0;
|
---|
| 299 | if (mgr) {
|
---|
| 300 | htmlSummary_->Clear("D");
|
---|
| 301 | for (i=mgr->BeginChildren(); i!=mgr->EndChildren(); ++i) {
|
---|
| 302 | el = ((TEveElement*)(*i));
|
---|
| 303 | if (el->IsA() == TEvePointSet::Class()) {
|
---|
| 304 | TEvePointSet *ps = (TEvePointSet *)el;
|
---|
| 305 | TString ename = ps->GetElementName();
|
---|
| 306 | TString etitle = ps->GetElementTitle();
|
---|
| 307 | if (ename.First('\'') != kNPOS)
|
---|
| 308 | ename.Remove(ename.First('\''));
|
---|
| 309 | etitle.Remove(0, 2);
|
---|
| 310 | Int_t nel = atoi(etitle.Data());
|
---|
| 311 | table = htmlSummary_->AddTable(ename, 0, nel);
|
---|
| 312 | }
|
---|
| 313 | else if (el->IsA() == TEveTrackList::Class()) {
|
---|
| 314 | TEveTrackList *tracks = (TEveTrackList *)el;
|
---|
| 315 | TString ename = tracks->GetElementName();
|
---|
| 316 | if (ename.First('\'') != kNPOS)
|
---|
| 317 | ename.Remove(ename.First('\''));
|
---|
| 318 | table = htmlSummary_->AddTable(ename.Data(), 5,
|
---|
| 319 | tracks->NumChildren(), kTRUE, "first");
|
---|
| 320 | table->SetLabel(0, "Momentum");
|
---|
| 321 | table->SetLabel(1, "P_t");
|
---|
| 322 | table->SetLabel(2, "Phi");
|
---|
| 323 | table->SetLabel(3, "Theta");
|
---|
| 324 | table->SetLabel(4, "Eta");
|
---|
| 325 | k=0;
|
---|
| 326 | for (j=tracks->BeginChildren(); j!=tracks->EndChildren(); ++j) {
|
---|
| 327 | Float_t p = ((TEveTrack*)(*j))->GetMomentum().Mag();
|
---|
| 328 | table->SetValue(0, k, p);
|
---|
| 329 | Float_t pt = ((TEveTrack*)(*j))->GetMomentum().Perp();
|
---|
| 330 | table->SetValue(1, k, pt);
|
---|
| 331 | Float_t phi = ((TEveTrack*)(*j))->GetMomentum().Phi();
|
---|
| 332 | table->SetValue(2, k, phi);
|
---|
| 333 | Float_t theta = ((TEveTrack*)(*j))->GetMomentum().Theta();
|
---|
| 334 | table->SetValue(3, k, theta);
|
---|
| 335 | Float_t eta = theta>0.0005 && theta<3.1413 ? ((TEveTrack*)(*j))->GetMomentum().Eta() : 1e10;
|
---|
| 336 | table->SetValue(4, k, eta);
|
---|
| 337 | ++k;
|
---|
| 338 | }
|
---|
| 339 | }
|
---|
| 340 | }
|
---|
| 341 | htmlSummary_->Build();
|
---|
| 342 | gHtml_->Clear();
|
---|
| 343 | gHtml_->ParseText((char*)htmlSummary_->Html().Data());
|
---|
| 344 | gHtml_->Layout();
|
---|
| 345 | }
|
---|
| 346 |
|
---|
| 347 | }
|
---|
| 348 |
|
---|
[cfc3160] | 349 | /******************************************************************************/
|
---|
| 350 | // GUI
|
---|
| 351 | /******************************************************************************/
|
---|
| 352 |
|
---|
| 353 | void DelphesEventDisplay::make_gui()
|
---|
| 354 | {
|
---|
| 355 | // Create minimal GUI for event navigation.
|
---|
| 356 |
|
---|
| 357 | // add a tab on the left
|
---|
| 358 | TEveBrowser* browser = gEve->GetBrowser();
|
---|
[6301e02] | 359 | browser->SetWindowName("Delphes Event Display");
|
---|
[cfc3160] | 360 | browser->StartEmbedding(TRootBrowser::kLeft);
|
---|
| 361 |
|
---|
| 362 | // set the main title
|
---|
| 363 | TGMainFrame* frmMain = new TGMainFrame(gClient->GetRoot(), 1000, 600);
|
---|
| 364 | frmMain->SetWindowName("Delphes Event Display");
|
---|
| 365 | frmMain->SetCleanup(kDeepCleanup);
|
---|
| 366 |
|
---|
| 367 | // build the navigation menu
|
---|
[6301e02] | 368 | TString icondir;
|
---|
| 369 | if(gSystem->Getenv("ROOTSYS"))
|
---|
| 370 | icondir = Form("%s/icons/", gSystem->Getenv("ROOTSYS"));
|
---|
| 371 | if(!gSystem->OpenDirectory(icondir))
|
---|
| 372 | icondir = Form("%s/icons/", (const char*)gSystem->GetFromPipe("root-config --etcdir") );
|
---|
| 373 | TGGroupFrame* vf = new TGGroupFrame(frmMain,"Event navigation",kVerticalFrame | kFitWidth );
|
---|
[cfc3160] | 374 | {
|
---|
[6301e02] | 375 | TGHorizontalFrame* hf = new TGHorizontalFrame(frmMain);
|
---|
| 376 | {
|
---|
| 377 | TGPictureButton* b = 0;
|
---|
| 378 |
|
---|
| 379 | b = new TGPictureButton(hf, gClient->GetPicture(icondir+"GoBack.gif"));
|
---|
| 380 | hf->AddFrame(b, new TGLayoutHints(kLHintsLeft | kLHintsCenterY , 10, 2, 10, 10));
|
---|
| 381 | b->Connect("Clicked()", "DelphesEventDisplay", this, "Bck()");
|
---|
| 382 |
|
---|
[0a67548] | 383 | TGNumberEntry* numberEntry = new TGNumberEntry(hf,0,9,-1,TGNumberFormat::kNESInteger, TGNumberFormat::kNEANonNegative, TGNumberFormat::kNELLimitMinMax, 0, treeReader_->GetEntries());
|
---|
| 384 | hf->AddFrame(numberEntry, new TGLayoutHints(kLHintsCenterX | kLHintsCenterY , 2, 0, 10, 10));
|
---|
| 385 | this->Connect("EventChanged(Int_t)","TGNumberEntry",numberEntry,"SetIntNumber(Long_t)");
|
---|
| 386 | numberEntry->GetNumberEntry()->Connect("TextChanged(char*)", "DelphesEventDisplay", this, "PreSetEv(char*)");
|
---|
| 387 | numberEntry->GetNumberEntry()->Connect("ReturnPressed()", "DelphesEventDisplay", this, "GoTo()");
|
---|
[6301e02] | 388 |
|
---|
| 389 | b = new TGPictureButton(hf, gClient->GetPicture(icondir+"GoForward.gif"));
|
---|
| 390 | hf->AddFrame(b, new TGLayoutHints(kLHintsRight | kLHintsCenterY , 2, 10, 10, 10));
|
---|
| 391 | b->Connect("Clicked()", "DelphesEventDisplay", this, "Fwd()");
|
---|
| 392 |
|
---|
| 393 | }
|
---|
| 394 | vf->AddFrame(hf, new TGLayoutHints(kLHintsExpandX , 2, 2, 2, 2));
|
---|
| 395 |
|
---|
[0a67548] | 396 | TGHProgressBar* progress = new TGHProgressBar(frmMain, TGProgressBar::kFancy, 100);
|
---|
| 397 | progress->SetMax( treeReader_->GetEntries());
|
---|
| 398 | progress->ShowPosition(kTRUE, kFALSE, "Event %.0f");
|
---|
| 399 | progress->SetBarColor("green");
|
---|
| 400 | vf->AddFrame(progress, new TGLayoutHints(kLHintsExpandX, 10, 10, 5, 5));
|
---|
| 401 | this->Connect("EventChanged(Int_t)","TGHProgressBar",progress,"SetPosition(Float_t)");
|
---|
[cfc3160] | 402 | }
|
---|
[6301e02] | 403 | frmMain->AddFrame(vf, new TGLayoutHints(kLHintsExpandX , 5, 5, 5, 5));
|
---|
| 404 | vf = new TGGroupFrame(frmMain,"Batch operations",kVerticalFrame | kFitWidth );
|
---|
| 405 | {
|
---|
| 406 | TGTextButton *b = new TGTextButton(vf, "Initialize Summary Plots");
|
---|
| 407 | vf->AddFrame(b, new TGLayoutHints(kLHintsCenterX | kLHintsCenterY | kLHintsExpandX, 10, 10, 10, 10));
|
---|
| 408 | b->Connect("Clicked()", "DelphesEventDisplay", this, "InitSummaryPlots()");
|
---|
| 409 | }
|
---|
| 410 | frmMain->AddFrame(vf, new TGLayoutHints(kLHintsExpandX , 5, 5, 5, 5));
|
---|
| 411 |
|
---|
[cfc3160] | 412 | frmMain->MapSubwindows();
|
---|
| 413 | frmMain->Resize();
|
---|
| 414 | frmMain->MapWindow();
|
---|
| 415 | browser->StopEmbedding();
|
---|
| 416 | browser->SetTabTitle("Event Control", 0);
|
---|
[5fbcfe8] | 417 |
|
---|
| 418 | // the summary tab
|
---|
| 419 | htmlSummary_ = new DelphesHtmlSummary("Delphes Event Display Summary Table");
|
---|
| 420 | TEveWindowSlot* slot = TEveWindow::CreateWindowInTab(gEve->GetBrowser()->GetTabRight());
|
---|
| 421 | gHtml_ = new TGHtml(0, 100, 100);
|
---|
| 422 | TEveWindowFrame *wf = slot->MakeFrame(gHtml_);
|
---|
| 423 | gHtml_->MapSubwindows();
|
---|
[2ca23b5] | 424 | wf->SetElementName("Summary tables");
|
---|
| 425 |
|
---|
| 426 | // plot tab
|
---|
| 427 | slot = TEveWindow::CreateWindowInTab(gEve->GetBrowser()->GetTabRight());
|
---|
| 428 | TEveWindowTab* tab = slot->MakeTab();
|
---|
| 429 | tab->SetElementName("Summary plots");
|
---|
| 430 | tab->SetShowTitleBar(kFALSE);
|
---|
| 431 | plotSummary_ = new DelphesPlotSummary(tab);
|
---|
| 432 | plotSummary_->Init(elements_);
|
---|
[53b78e8] | 433 | plotSummary_->Connect("Progress(Int_t)", "DelphesEventDisplay", this, "DisplayProgress(Int_t)");
|
---|
| 434 |
|
---|
[cfc3160] | 435 | }
|
---|
| 436 |
|
---|
[53b78e8] | 437 |
|
---|