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 "TChain.h"
|
---|
28 | #include "TAxis.h"
|
---|
29 | #include "TClonesArray.h"
|
---|
30 |
|
---|
31 | /*
|
---|
32 | * assembly.C: sauvegarde as shape-extract -> implement in the geometry class (read/write)
|
---|
33 | * histobrowser.C: intégration d'histogrammes dans le display (on pourrait avoir Pt, eta, phi pour les principales collections)
|
---|
34 | * also from alice_esd: summary html table
|
---|
35 | *
|
---|
36 | */
|
---|
37 |
|
---|
38 | class DelphesEventDisplay
|
---|
39 | {
|
---|
40 | public:
|
---|
41 | DelphesEventDisplay();
|
---|
42 | DelphesEventDisplay(const char *configFile, const char *inputFile, Delphes3DGeometry& det3D);
|
---|
43 | ~DelphesEventDisplay();
|
---|
44 |
|
---|
45 | private:
|
---|
46 | void make_gui();
|
---|
47 | void load_event();
|
---|
48 | void readConfig(const char *configFile, std::vector<DelphesBranchBase*>& elements);
|
---|
49 |
|
---|
50 | // Configuration and global variables.
|
---|
51 | Int_t event_id_;
|
---|
52 | ExRootTreeReader *treeReader_;
|
---|
53 | Double_t tkRadius_, totRadius_, tkHalfLength_, muHalfLength_, bz_;
|
---|
54 | TAxis *etaAxis_, *phiAxis_;
|
---|
55 | TChain* chain_;
|
---|
56 | std::vector<DelphesBranchBase*> elements_;
|
---|
57 | DelphesDisplay *delphesDisplay_;
|
---|
58 |
|
---|
59 | // gui controls
|
---|
60 | public:
|
---|
61 | void Fwd() {
|
---|
62 | if (event_id_ < treeReader_->GetEntries() - 1) {
|
---|
63 | ++event_id_;
|
---|
64 | load_event();
|
---|
65 | } else {
|
---|
66 | printf("Already at last event.\n");
|
---|
67 | }
|
---|
68 | }
|
---|
69 |
|
---|
70 | void Bck() {
|
---|
71 | if (event_id_ > 0) {
|
---|
72 | --event_id_;
|
---|
73 | load_event();
|
---|
74 | } else {
|
---|
75 | printf("Already at first event.\n");
|
---|
76 | }
|
---|
77 | }
|
---|
78 | };
|
---|
79 |
|
---|
80 | #endif //DelphesEventDisplay_h
|
---|