1 | /*
|
---|
2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
3 | * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
|
---|
4 | *
|
---|
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.
|
---|
9 | *
|
---|
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.
|
---|
14 | *
|
---|
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 |
|
---|
19 | #ifndef DelphesEventDisplay_h
|
---|
20 | #define DelphesEventDisplay_h
|
---|
21 |
|
---|
22 | #include <vector>
|
---|
23 | #include <iostream>
|
---|
24 | #include "external/ExRootAnalysis/ExRootTreeReader.h"
|
---|
25 | #include "display/DelphesDisplay.h"
|
---|
26 | #include "display/Delphes3DGeometry.h"
|
---|
27 | #include "display/DelphesHtmlSummary.h"
|
---|
28 | #include "display/DelphesPlotSummary.h"
|
---|
29 | #include "TSystem.h"
|
---|
30 | #include "TChain.h"
|
---|
31 | #include "TAxis.h"
|
---|
32 | #include "TGHtml.h"
|
---|
33 | #include "TClonesArray.h"
|
---|
34 | #include "TGStatusBar.h"
|
---|
35 | #include "TGNumberEntry.h"
|
---|
36 | #include "TGProgressBar.h"
|
---|
37 | #include <RQ_OBJECT.h>
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 | /*
|
---|
42 | * assembly.C: sauvegarde as shape-extract -> implement in the geometry class (read/write)
|
---|
43 | * histobrowser.C: intégration d'histogrammes dans le display (on pourrait avoir Pt, eta, phi pour les principales collections)
|
---|
44 | * also from alice_esd: summary html table
|
---|
45 | *
|
---|
46 | */
|
---|
47 |
|
---|
48 | class DelphesEventDisplay
|
---|
49 | {
|
---|
50 | RQ_OBJECT("DelphesEventDisplay")
|
---|
51 | public:
|
---|
52 | DelphesEventDisplay();
|
---|
53 | DelphesEventDisplay(const char *configFile, const char *inputFile, Delphes3DGeometry& det3D);
|
---|
54 | ~DelphesEventDisplay();
|
---|
55 | void EventChanged(Int_t); // *SIGNAL*
|
---|
56 |
|
---|
57 | private:
|
---|
58 | void update_html_summary();
|
---|
59 | void make_gui();
|
---|
60 | void load_event();
|
---|
61 | void readConfig(const char *configFile, std::vector<DelphesBranchBase*>& elements);
|
---|
62 |
|
---|
63 | // Configuration and global variables.
|
---|
64 | Int_t event_id_;
|
---|
65 | Int_t event_id_tmp_;
|
---|
66 | ExRootTreeReader *treeReader_;
|
---|
67 | Double_t tkRadius_, totRadius_, tkHalfLength_, muHalfLength_, bz_;
|
---|
68 | TAxis *etaAxis_, *phiAxis_;
|
---|
69 | TChain* chain_;
|
---|
70 | std::vector<DelphesBranchBase*> elements_;
|
---|
71 | DelphesDisplay *delphesDisplay_;
|
---|
72 | DelphesHtmlSummary *htmlSummary_;
|
---|
73 | TGHtml *gHtml_;
|
---|
74 | DelphesPlotSummary *plotSummary_;
|
---|
75 | TGStatusBar* fStatusBar_;
|
---|
76 |
|
---|
77 | // gui controls
|
---|
78 | public:
|
---|
79 | void Fwd() {
|
---|
80 | if (event_id_ < treeReader_->GetEntries() - 2) {
|
---|
81 | EventChanged(event_id_+1);
|
---|
82 | } else {
|
---|
83 | printf("Already at last event.\n");
|
---|
84 | }
|
---|
85 | }
|
---|
86 |
|
---|
87 | void Bck() {
|
---|
88 | if (event_id_ > 0) {
|
---|
89 | EventChanged(event_id_-1);
|
---|
90 | } else {
|
---|
91 | printf("Already at first event.\n");
|
---|
92 | }
|
---|
93 | }
|
---|
94 |
|
---|
95 | void PreSetEv(char* ev) {
|
---|
96 | event_id_tmp_ = Int_t(atoi(ev));
|
---|
97 | }
|
---|
98 |
|
---|
99 | void GoTo() {
|
---|
100 | if (event_id_tmp_>=0 && event_id_tmp_ < treeReader_->GetEntries()-1) {
|
---|
101 | EventChanged(event_id_tmp_);
|
---|
102 | } else {
|
---|
103 | printf("Error: no such event.\n");
|
---|
104 | }
|
---|
105 | }
|
---|
106 |
|
---|
107 | void InitSummaryPlots() {
|
---|
108 | plotSummary_->FillSample(treeReader_, event_id_);
|
---|
109 | plotSummary_->FillEvent();
|
---|
110 | plotSummary_->Draw();
|
---|
111 | }
|
---|
112 |
|
---|
113 | void DisplayProgress(Int_t p) { //TODO replace by a progress bar
|
---|
114 | fStatusBar_->SetText(Form("Processing... %d %%",p), 1);
|
---|
115 | gSystem->ProcessEvents();
|
---|
116 | }
|
---|
117 | };
|
---|
118 |
|
---|
119 | #endif //DelphesEventDisplay_h
|
---|