[37deb3b] | 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 | *
|
---|
[37deb3b] | 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 | *
|
---|
[37deb3b] | 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 | *
|
---|
[37deb3b] | 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 |
|
---|
[2ca23b5] | 19 | #include "display/DelphesPlotSummary.h"
|
---|
[3f51314] | 20 | #include "TRootEmbeddedCanvas.h"
|
---|
[ad015db] | 21 | #include <algorithm>
|
---|
[2ca23b5] | 22 |
|
---|
[341014c] | 23 | bool vecsorter(TLorentzVector i, TLorentzVector j) { return (i.Pt() > j.Pt()); }
|
---|
[3f51314] | 24 |
|
---|
[341014c] | 25 | DelphesPlotSummary::DelphesPlotSummary(TEveWindowTab *tab) :
|
---|
| 26 | tab_(tab) {}
|
---|
[2ca23b5] | 27 |
|
---|
| 28 | DelphesPlotSummary::~DelphesPlotSummary() {}
|
---|
| 29 |
|
---|
[53b78e8] | 30 | void DelphesPlotSummary::Progress(Int_t p)
|
---|
| 31 | {
|
---|
[341014c] | 32 | Emit("Progress(Int_t)", p);
|
---|
[53b78e8] | 33 | }
|
---|
| 34 |
|
---|
[341014c] | 35 | void DelphesPlotSummary::Init(std::vector<DelphesBranchBase *> &elements)
|
---|
| 36 | {
|
---|
[3f51314] | 37 | elements_ = &elements;
|
---|
| 38 | // loop on the elements, and create tabs
|
---|
[341014c] | 39 | for(std::vector<DelphesBranchBase *>::iterator data = elements.begin(); data < elements.end(); ++data)
|
---|
| 40 | {
|
---|
[3f51314] | 41 | // the canvas
|
---|
[341014c] | 42 | TEveWindowSlot *slot = tab_->NewSlot();
|
---|
| 43 | TRootEmbeddedCanvas *trec = new TRootEmbeddedCanvas();
|
---|
| 44 | TCanvas *canvas = trec->GetCanvas();
|
---|
| 45 | TEveWindowFrame *wf = slot->MakeFrame(trec);
|
---|
[3f51314] | 46 | wf->SetElementName((*data)->GetName());
|
---|
[341014c] | 47 | canvas->Divide(3, 3);
|
---|
[3f51314] | 48 | canvases_[(*data)->GetName()] = canvas;
|
---|
| 49 | // the histograms
|
---|
[341014c] | 50 | TH1F *h;
|
---|
| 51 | std::vector<TH1F *> histograms;
|
---|
[3f51314] | 52 | histograms.reserve(9);
|
---|
[341014c] | 53 | h = new TH1F(Form("%sPt", (*data)->GetName()), Form("%s Pt", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 54 | histograms.push_back(h);
|
---|
[341014c] | 55 | h = new TH1F(Form("%sEta", (*data)->GetName()), Form("%s Eta", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 56 | histograms.push_back(h);
|
---|
[341014c] | 57 | h = new TH1F(Form("%sPhi", (*data)->GetName()), Form("%s Phi", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 58 | histograms.push_back(h);
|
---|
[341014c] | 59 | h = new TH1F(Form("l%sPt", (*data)->GetName()), Form("leading %s Pt", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 60 | histograms.push_back(h);
|
---|
[341014c] | 61 | h = new TH1F(Form("l%sEta", (*data)->GetName()), Form("leading %s Eta", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 62 | histograms.push_back(h);
|
---|
[341014c] | 63 | h = new TH1F(Form("l%sPhi", (*data)->GetName()), Form("leading %s Phi", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 64 | histograms.push_back(h);
|
---|
[341014c] | 65 | h = new TH1F(Form("sl%sPt", (*data)->GetName()), Form("subleading %s Pt", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 66 | histograms.push_back(h);
|
---|
[341014c] | 67 | h = new TH1F(Form("sl%sEta", (*data)->GetName()), Form("subleading %s Eta", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 68 | histograms.push_back(h);
|
---|
[341014c] | 69 | h = new TH1F(Form("sl%sPhi", (*data)->GetName()), Form("subleading %s Phi", (*data)->GetName()), 100, 0, -1);
|
---|
[3f51314] | 70 | histograms.push_back(h);
|
---|
| 71 | histograms_[(*data)->GetName()] = histograms;
|
---|
[c3c9ac5] | 72 | // the event histograms
|
---|
[341014c] | 73 | TH1F *h1 = (TH1F *)histograms[0]->Clone();
|
---|
| 74 | h1->Reset();
|
---|
| 75 | h1->SetLineColor(kBlue);
|
---|
| 76 | TH1F *h2 = (TH1F *)histograms[1]->Clone();
|
---|
| 77 | h2->Reset();
|
---|
| 78 | h2->SetLineColor(kBlue);
|
---|
| 79 | TH1F *h3 = (TH1F *)histograms[2]->Clone();
|
---|
| 80 | h3->Reset();
|
---|
| 81 | h3->SetLineColor(kBlue);
|
---|
| 82 | std::vector<TH1F *> hv;
|
---|
[c3c9ac5] | 83 | hv.push_back(h1);
|
---|
| 84 | hv.push_back(h2);
|
---|
| 85 | hv.push_back(h3);
|
---|
| 86 | eventProfiles_[(*data)->GetName()] = hv;
|
---|
| 87 | // the event markers
|
---|
| 88 | TMarker *m;
|
---|
[341014c] | 89 | std::vector<TMarker *> mv;
|
---|
| 90 | m = new TMarker(0, 0, 29);
|
---|
| 91 | m->SetMarkerColor(kBlue);
|
---|
| 92 | m->SetMarkerSize(3);
|
---|
[c3c9ac5] | 93 | mv.push_back(m);
|
---|
[341014c] | 94 | m = new TMarker(0, 0, 29);
|
---|
| 95 | m->SetMarkerColor(kBlue);
|
---|
| 96 | m->SetMarkerSize(3);
|
---|
[c3c9ac5] | 97 | mv.push_back(m);
|
---|
[341014c] | 98 | m = new TMarker(0, 0, 29);
|
---|
| 99 | m->SetMarkerColor(kBlue);
|
---|
| 100 | m->SetMarkerSize(3);
|
---|
[c3c9ac5] | 101 | mv.push_back(m);
|
---|
[341014c] | 102 | m = new TMarker(0, 0, 29);
|
---|
| 103 | m->SetMarkerColor(kBlue);
|
---|
| 104 | m->SetMarkerSize(3);
|
---|
[c3c9ac5] | 105 | mv.push_back(m);
|
---|
[341014c] | 106 | m = new TMarker(0, 0, 29);
|
---|
| 107 | m->SetMarkerColor(kBlue);
|
---|
| 108 | m->SetMarkerSize(3);
|
---|
[c3c9ac5] | 109 | mv.push_back(m);
|
---|
[341014c] | 110 | m = new TMarker(0, 0, 29);
|
---|
| 111 | m->SetMarkerColor(kBlue);
|
---|
| 112 | m->SetMarkerSize(3);
|
---|
[c3c9ac5] | 113 | mv.push_back(m);
|
---|
| 114 | eventMarkers_[(*data)->GetName()] = mv;
|
---|
[3f51314] | 115 | }
|
---|
| 116 | }
|
---|
| 117 |
|
---|
[341014c] | 118 | void DelphesPlotSummary::FillSample(ExRootTreeReader *treeReader, Int_t event_id)
|
---|
| 119 | {
|
---|
[53b78e8] | 120 | Int_t entries = treeReader->GetEntries();
|
---|
[341014c] | 121 | for(Int_t i = 0; i < entries; ++i)
|
---|
| 122 | {
|
---|
[3f51314] | 123 | treeReader->ReadEntry(i);
|
---|
[341014c] | 124 | for(std::vector<DelphesBranchBase *>::iterator element = elements_->begin(); element < elements_->end(); ++element)
|
---|
| 125 | {
|
---|
[3f51314] | 126 | std::vector<TLorentzVector> vectors = (*element)->GetVectors();
|
---|
[341014c] | 127 | std::sort(vectors.begin(), vectors.end(), vecsorter);
|
---|
| 128 | std::vector<TH1F *> histograms = histograms_[(*element)->GetName()];
|
---|
| 129 | for(std::vector<TLorentzVector>::iterator it = vectors.begin(); it < vectors.end(); ++it)
|
---|
| 130 | {
|
---|
[3f51314] | 131 | histograms[0]->Fill(it->Pt());
|
---|
| 132 | histograms[1]->Fill(it->Eta());
|
---|
| 133 | histograms[2]->Fill(it->Phi());
|
---|
[341014c] | 134 | if(it == vectors.begin())
|
---|
| 135 | {
|
---|
[3f51314] | 136 | histograms[3]->Fill(it->Pt());
|
---|
| 137 | histograms[4]->Fill(it->Eta());
|
---|
| 138 | histograms[5]->Fill(it->Phi());
|
---|
| 139 | }
|
---|
[341014c] | 140 | if(it == vectors.begin() + 1)
|
---|
| 141 | {
|
---|
[3f51314] | 142 | histograms[6]->Fill(it->Pt());
|
---|
| 143 | histograms[7]->Fill(it->Eta());
|
---|
| 144 | histograms[8]->Fill(it->Phi());
|
---|
| 145 | }
|
---|
| 146 | }
|
---|
| 147 | }
|
---|
[341014c] | 148 | Progress(int(100 * i / entries));
|
---|
[3f51314] | 149 | }
|
---|
| 150 | treeReader->ReadEntry(event_id);
|
---|
[53b78e8] | 151 | Progress(100);
|
---|
[3f51314] | 152 | }
|
---|
[2ca23b5] | 153 |
|
---|
[341014c] | 154 | void DelphesPlotSummary::Draw()
|
---|
| 155 | {
|
---|
| 156 | for(std::map<TString, TCanvas *>::iterator it = canvases_.begin(); it != canvases_.end(); ++it)
|
---|
| 157 | {
|
---|
| 158 | TCanvas *c = it->second;
|
---|
| 159 | std::vector<TH1F *> histograms = histograms_[it->first];
|
---|
| 160 | std::vector<TH1F *> eventProfiles = eventProfiles_[it->first];
|
---|
| 161 | std::vector<TMarker *> eventMarkers = eventMarkers_[it->first];
|
---|
| 162 | for(Int_t i = 0; i < 9; ++i)
|
---|
| 163 | {
|
---|
| 164 | c->cd(i + 1);
|
---|
| 165 | if(histograms[i]->GetEntries() == 0) continue;
|
---|
[3f51314] | 166 | histograms[i]->Draw();
|
---|
[341014c] | 167 | if(i < 3)
|
---|
| 168 | {
|
---|
[3f51314] | 169 | eventProfiles[i]->Draw("same");
|
---|
[341014c] | 170 | }
|
---|
| 171 | else
|
---|
| 172 | {
|
---|
| 173 | eventMarkers[i - 3]->Draw("same");
|
---|
[ad015db] | 174 | }
|
---|
[3f51314] | 175 | }
|
---|
[ad015db] | 176 | c->Update();
|
---|
[341014c] | 177 | }
|
---|
[3f51314] | 178 | }
|
---|
[2ca23b5] | 179 |
|
---|
[341014c] | 180 | void DelphesPlotSummary::FillEvent()
|
---|
| 181 | {
|
---|
[c3c9ac5] | 182 | // clear event histograms and markers
|
---|
[77e9ae1] | 183 | for(std::map<TString, std::vector<TH1F *> >::iterator hv = eventProfiles_.begin(); hv != eventProfiles_.end(); ++hv)
|
---|
[341014c] | 184 | {
|
---|
| 185 | for(std::vector<TH1F *>::iterator h = hv->second.begin(); h < hv->second.end(); ++h)
|
---|
| 186 | {
|
---|
[c3c9ac5] | 187 | (*h)->Reset();
|
---|
| 188 | }
|
---|
| 189 | }
|
---|
[77e9ae1] | 190 | for(std::map<TString, std::vector<TMarker *> >::iterator mv = eventMarkers_.begin(); mv != eventMarkers_.end(); ++mv)
|
---|
[341014c] | 191 | {
|
---|
| 192 | for(std::vector<TMarker *>::iterator m = mv->second.begin(); m < mv->second.end(); ++m)
|
---|
| 193 | {
|
---|
[c3c9ac5] | 194 | (*m)->SetMarkerSize(0);
|
---|
[3f51314] | 195 | }
|
---|
| 196 | }
|
---|
| 197 | // loop over the elements and fill markers with event data
|
---|
[341014c] | 198 | for(std::vector<DelphesBranchBase *>::iterator element = elements_->begin(); element < elements_->end(); ++element)
|
---|
| 199 | {
|
---|
[3f51314] | 200 | std::vector<TLorentzVector> vectors = (*element)->GetVectors();
|
---|
[341014c] | 201 | std::sort(vectors.begin(), vectors.end(), vecsorter);
|
---|
| 202 | std::vector<TH1F *> hv = eventProfiles_[(*element)->GetName()];
|
---|
| 203 | TH1F *h1 = hv[0];
|
---|
| 204 | h1->Reset();
|
---|
| 205 | TH1F *h2 = hv[1];
|
---|
| 206 | h1->Reset();
|
---|
| 207 | TH1F *h3 = hv[2];
|
---|
| 208 | h1->Reset();
|
---|
| 209 | std::vector<TMarker *> mv = eventMarkers_[(*element)->GetName()];
|
---|
| 210 | for(std::vector<TLorentzVector>::iterator it = vectors.begin(); it < vectors.end(); ++it)
|
---|
| 211 | {
|
---|
[3f51314] | 212 | h1->Fill(it->Pt());
|
---|
| 213 | h2->Fill(it->Eta());
|
---|
| 214 | h3->Fill(it->Phi());
|
---|
[341014c] | 215 | if(it == vectors.begin())
|
---|
| 216 | {
|
---|
| 217 | mv[0]->SetX(it->Pt());
|
---|
| 218 | mv[0]->SetMarkerSize(3);
|
---|
| 219 | mv[1]->SetX(it->Eta());
|
---|
| 220 | mv[1]->SetMarkerSize(3);
|
---|
| 221 | mv[2]->SetX(it->Phi());
|
---|
| 222 | mv[2]->SetMarkerSize(3);
|
---|
[3f51314] | 223 | }
|
---|
[341014c] | 224 | if(it == vectors.begin() + 1)
|
---|
| 225 | {
|
---|
| 226 | mv[3]->SetX(it->Pt());
|
---|
| 227 | mv[3]->SetMarkerSize(3);
|
---|
| 228 | mv[4]->SetX(it->Eta());
|
---|
| 229 | mv[4]->SetMarkerSize(3);
|
---|
| 230 | mv[5]->SetX(it->Phi());
|
---|
| 231 | mv[5]->SetMarkerSize(3);
|
---|
[3f51314] | 232 | }
|
---|
| 233 | }
|
---|
| 234 | }
|
---|
| 235 | }
|
---|