[b443089] | 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 | *
|
---|
[b443089] | 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 | *
|
---|
[b443089] | 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 | *
|
---|
[b443089] | 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 |
|
---|
[5150e39] | 19 | #include <stdexcept>
|
---|
| 20 | #include <iostream>
|
---|
| 21 | #include <sstream>
|
---|
[cd616b9] | 22 | #include <string>
|
---|
[5150e39] | 23 |
|
---|
| 24 | #include <signal.h>
|
---|
| 25 |
|
---|
[280667b] | 26 | #include "Pythia.h"
|
---|
[c008923] | 27 | #include "Pythia8Plugins/CombineMatchingInput.h"
|
---|
[5150e39] | 28 |
|
---|
| 29 | #include "TROOT.h"
|
---|
| 30 | #include "TApplication.h"
|
---|
| 31 |
|
---|
| 32 | #include "TFile.h"
|
---|
| 33 | #include "TObjArray.h"
|
---|
| 34 | #include "TStopwatch.h"
|
---|
| 35 | #include "TDatabasePDG.h"
|
---|
| 36 | #include "TParticlePDG.h"
|
---|
| 37 | #include "TLorentzVector.h"
|
---|
| 38 |
|
---|
| 39 | #include "modules/Delphes.h"
|
---|
| 40 | #include "classes/DelphesClasses.h"
|
---|
| 41 | #include "classes/DelphesFactory.h"
|
---|
[cd616b9] | 42 | #include "classes/DelphesLHEFReader.h"
|
---|
[5150e39] | 43 |
|
---|
| 44 | #include "ExRootAnalysis/ExRootTreeWriter.h"
|
---|
| 45 | #include "ExRootAnalysis/ExRootTreeBranch.h"
|
---|
| 46 | #include "ExRootAnalysis/ExRootProgressBar.h"
|
---|
| 47 |
|
---|
| 48 | using namespace std;
|
---|
| 49 |
|
---|
| 50 | //---------------------------------------------------------------------------
|
---|
| 51 |
|
---|
[b94aacf] | 52 | void ConvertInput(Long64_t eventCounter, Pythia8::Pythia *pythia,
|
---|
| 53 | ExRootTreeBranch *branch, DelphesFactory *factory,
|
---|
| 54 | TObjArray *allParticleOutputArray, TObjArray *stableParticleOutputArray, TObjArray *partonOutputArray,
|
---|
| 55 | TStopwatch *readStopWatch, TStopwatch *procStopWatch)
|
---|
[5150e39] | 56 | {
|
---|
| 57 | int i;
|
---|
| 58 |
|
---|
[ad78364] | 59 | HepMCEvent *element;
|
---|
[5150e39] | 60 | Candidate *candidate;
|
---|
| 61 | TDatabasePDG *pdg;
|
---|
| 62 | TParticlePDG *pdgParticle;
|
---|
| 63 | Int_t pdgCode;
|
---|
| 64 |
|
---|
| 65 | Int_t pid, status;
|
---|
[80d4a34] | 66 | Double_t px, py, pz, e, mass;
|
---|
[474eb76] | 67 | Double_t x, y, z, t;
|
---|
[5150e39] | 68 |
|
---|
[b94aacf] | 69 | // event information
|
---|
| 70 | element = static_cast<HepMCEvent *>(branch->NewEntry());
|
---|
| 71 |
|
---|
| 72 | element->Number = eventCounter;
|
---|
| 73 |
|
---|
| 74 | element->ProcessID = pythia->info.code();
|
---|
| 75 | element->MPI = 1;
|
---|
| 76 | element->Weight = pythia->info.weight();
|
---|
| 77 | element->Scale = pythia->info.QRen();
|
---|
| 78 | element->AlphaQED = pythia->info.alphaEM();
|
---|
| 79 | element->AlphaQCD = pythia->info.alphaS();
|
---|
| 80 |
|
---|
[ad78364] | 81 | element->ID1 = pythia->info.id1();
|
---|
| 82 | element->ID2 = pythia->info.id2();
|
---|
| 83 | element->X1 = pythia->info.x1();
|
---|
| 84 | element->X2 = pythia->info.x2();
|
---|
[b94aacf] | 85 | element->ScalePDF = pythia->info.QFac();
|
---|
| 86 | element->PDF1 = pythia->info.pdf1();
|
---|
| 87 | element->PDF2 = pythia->info.pdf2();
|
---|
| 88 |
|
---|
| 89 | element->ReadTime = readStopWatch->RealTime();
|
---|
| 90 | element->ProcTime = procStopWatch->RealTime();
|
---|
| 91 |
|
---|
[5150e39] | 92 | pdg = TDatabasePDG::Instance();
|
---|
| 93 |
|
---|
[d8b1858] | 94 | for(i = 1; i < pythia->event.size(); ++i)
|
---|
[5150e39] | 95 | {
|
---|
| 96 | Pythia8::Particle &particle = pythia->event[i];
|
---|
| 97 |
|
---|
| 98 | pid = particle.id();
|
---|
[3e276d4] | 99 | status = particle.statusHepMC();
|
---|
[80d4a34] | 100 | px = particle.px(); py = particle.py(); pz = particle.pz(); e = particle.e(); mass = particle.m();
|
---|
[5150e39] | 101 | x = particle.xProd(); y = particle.yProd(); z = particle.zProd(); t = particle.tProd();
|
---|
| 102 |
|
---|
| 103 | candidate = factory->NewCandidate();
|
---|
| 104 |
|
---|
| 105 | candidate->PID = pid;
|
---|
| 106 | pdgCode = TMath::Abs(candidate->PID);
|
---|
| 107 |
|
---|
| 108 | candidate->Status = status;
|
---|
| 109 |
|
---|
[474eb76] | 110 | candidate->M1 = particle.mother1() - 1;
|
---|
| 111 | candidate->M2 = particle.mother2() - 1;
|
---|
[5150e39] | 112 |
|
---|
[474eb76] | 113 | candidate->D1 = particle.daughter1() - 1;
|
---|
| 114 | candidate->D2 = particle.daughter2() - 1;
|
---|
[5150e39] | 115 |
|
---|
| 116 | pdgParticle = pdg->GetParticle(pid);
|
---|
| 117 | candidate->Charge = pdgParticle ? Int_t(pdgParticle->Charge()/3.0) : -999;
|
---|
[bba4646] | 118 | candidate->Mass = mass;
|
---|
[5150e39] | 119 |
|
---|
| 120 | candidate->Momentum.SetPxPyPzE(px, py, pz, e);
|
---|
| 121 |
|
---|
[474eb76] | 122 | candidate->Position.SetXYZT(x, y, z, t);
|
---|
[5150e39] | 123 |
|
---|
| 124 | allParticleOutputArray->Add(candidate);
|
---|
| 125 |
|
---|
| 126 | if(!pdgParticle) continue;
|
---|
| 127 |
|
---|
| 128 | if(status == 1)
|
---|
| 129 | {
|
---|
| 130 | stableParticleOutputArray->Add(candidate);
|
---|
| 131 | }
|
---|
| 132 | else if(pdgCode <= 5 || pdgCode == 21 || pdgCode == 15)
|
---|
| 133 | {
|
---|
| 134 | partonOutputArray->Add(candidate);
|
---|
| 135 | }
|
---|
| 136 | }
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | //---------------------------------------------------------------------------
|
---|
| 140 |
|
---|
| 141 | static bool interrupted = false;
|
---|
| 142 |
|
---|
| 143 | void SignalHandler(int sig)
|
---|
| 144 | {
|
---|
| 145 | interrupted = true;
|
---|
| 146 | }
|
---|
| 147 |
|
---|
[971db5b] | 148 |
|
---|
| 149 | // Single-particle gun. The particle must be a colour singlet.
|
---|
| 150 | // Input: flavour, energy, direction (theta, phi).
|
---|
| 151 | // If theta < 0 then random choice over solid angle.
|
---|
| 152 | // Optional final argument to put particle at rest => E = m.
|
---|
| 153 | // from pythia8 example 21
|
---|
| 154 |
|
---|
[6934875] | 155 | void fillParticle(int id, double p_max, double eta_max,
|
---|
[ea0f50d] | 156 | Pythia8::Event &event, Pythia8::ParticleData &pdt, Pythia8::Rndm &rndm)
|
---|
| 157 | {
|
---|
[971db5b] | 158 | // Reset event record to allow for new event.
|
---|
| 159 | event.reset();
|
---|
| 160 |
|
---|
[ea0f50d] | 161 | // Generate uniform pt and eta.
|
---|
| 162 | double pt, eta, phi, pp, ee, mm;
|
---|
[6934875] | 163 |
|
---|
| 164 | //pmin = 0.1 GeV for single particles
|
---|
| 165 | pp = pow(10, - 1.0 + (log10(p_max) + 1.0) * rndm.flat());
|
---|
[ea0f50d] | 166 | eta = (2.0 * rndm.flat() - 1.0) * eta_max;
|
---|
| 167 | phi = 2.0 * M_PI * rndm.flat();
|
---|
| 168 | mm = pdt.mSel(id);
|
---|
| 169 | ee = Pythia8::sqrtpos(pp*pp + mm*mm);
|
---|
[6934875] | 170 | pt = pp / cosh(eta);
|
---|
[971db5b] | 171 |
|
---|
| 172 | // Store the particle in the event record.
|
---|
[ea0f50d] | 173 | event.append(id, 1, 0, 0, pt * cos(phi), pt * sin(phi), pt * sinh(eta), ee, mm);
|
---|
[971db5b] | 174 | }
|
---|
| 175 |
|
---|
[6934875] | 176 | void fillPartons(int id, double p_max, double eta_max,
|
---|
[ea0f50d] | 177 | Pythia8::Event &event, Pythia8::ParticleData &pdt, Pythia8::Rndm &rndm)
|
---|
| 178 | {
|
---|
[2acc2e9] | 179 |
|
---|
| 180 | // Reset event record to allow for new event.
|
---|
| 181 | event.reset();
|
---|
| 182 |
|
---|
[ea0f50d] | 183 | // Generate uniform pt and eta.
|
---|
| 184 | double pt, eta, phi, pp, ee, mm;
|
---|
[6934875] | 185 |
|
---|
| 186 | //pmin = 1 GeV for jets
|
---|
| 187 | pp = pow(10, log10(p_max) * rndm.flat());
|
---|
[ea0f50d] | 188 | eta = (2.0 * rndm.flat() - 1.0) * eta_max;
|
---|
| 189 | phi = 2.0 * M_PI * rndm.flat();
|
---|
[6934875] | 190 | mm = pdt.mSel(id);
|
---|
[ea0f50d] | 191 | ee = Pythia8::sqrtpos(pp*pp + mm*mm);
|
---|
[6934875] | 192 | pt = pp / cosh(eta);
|
---|
[ea0f50d] | 193 |
|
---|
[6934875] | 194 | if( (id == 4 || id == 5) && pt < 10.0) return;
|
---|
| 195 |
|
---|
[ea0f50d] | 196 | if(id == 21)
|
---|
[2acc2e9] | 197 | {
|
---|
[ea0f50d] | 198 | event.append(21, 23, 101, 102, pt * cos(phi), pt * sin(phi), pt * sinh(eta), ee);
|
---|
| 199 | event.append(21, 23, 102, 101, -pt * cos(phi), -pt * sin(phi), -pt * sinh(eta), ee);
|
---|
[2acc2e9] | 200 | }
|
---|
| 201 | else
|
---|
| 202 | {
|
---|
[ea0f50d] | 203 | event.append(id, 23, 101, 0, pt * cos(phi), pt * sin(phi), pt * sinh(eta), ee, mm);
|
---|
| 204 | event.append(-id, 23, 0, 101, -pt * cos(phi), -pt * sin(phi), -pt * sinh(eta), ee, mm);
|
---|
[2acc2e9] | 205 | }
|
---|
| 206 | }
|
---|
[971db5b] | 207 |
|
---|
| 208 |
|
---|
[5150e39] | 209 | //---------------------------------------------------------------------------
|
---|
| 210 |
|
---|
| 211 | int main(int argc, char *argv[])
|
---|
| 212 | {
|
---|
| 213 | char appName[] = "DelphesPythia8";
|
---|
| 214 | stringstream message;
|
---|
[cd616b9] | 215 | FILE *inputFile = 0;
|
---|
[5150e39] | 216 | TFile *outputFile = 0;
|
---|
| 217 | TStopwatch readStopWatch, procStopWatch;
|
---|
| 218 | ExRootTreeWriter *treeWriter = 0;
|
---|
| 219 | ExRootTreeBranch *branchEvent = 0;
|
---|
[1e8afcc] | 220 | ExRootTreeBranch *branchEventLHEF = 0, *branchWeightLHEF = 0;
|
---|
[5150e39] | 221 | ExRootConfReader *confReader = 0;
|
---|
| 222 | Delphes *modularDelphes = 0;
|
---|
| 223 | DelphesFactory *factory = 0;
|
---|
| 224 | TObjArray *stableParticleOutputArray = 0, *allParticleOutputArray = 0, *partonOutputArray = 0;
|
---|
[cd616b9] | 225 | TObjArray *stableParticleOutputArrayLHEF = 0, *allParticleOutputArrayLHEF = 0, *partonOutputArrayLHEF = 0;
|
---|
| 226 | DelphesLHEFReader *reader = 0;
|
---|
[5150e39] | 227 | Long64_t eventCounter, errorCounter;
|
---|
| 228 | Long64_t numberOfEvents, timesAllowErrors;
|
---|
| 229 |
|
---|
| 230 | Pythia8::Pythia *pythia = 0;
|
---|
[c008923] | 231 |
|
---|
| 232 | // for matching
|
---|
| 233 | Pythia8::CombineMatchingInput *combined = 0;
|
---|
| 234 | Pythia8::UserHooks* matching = 0;
|
---|
[5150e39] | 235 |
|
---|
| 236 | if(argc != 4)
|
---|
| 237 | {
|
---|
| 238 | cout << " Usage: " << appName << " config_file" << " pythia_card" << " output_file" << endl;
|
---|
| 239 | cout << " config_file - configuration file in Tcl format," << endl;
|
---|
| 240 | cout << " pythia_card - Pythia8 configuration file," << endl;
|
---|
| 241 | cout << " output_file - output file in ROOT format." << endl;
|
---|
| 242 | return 1;
|
---|
| 243 | }
|
---|
| 244 |
|
---|
| 245 | signal(SIGINT, SignalHandler);
|
---|
| 246 |
|
---|
| 247 | gROOT->SetBatch();
|
---|
| 248 |
|
---|
| 249 | int appargc = 1;
|
---|
| 250 | char *appargv[] = {appName};
|
---|
| 251 | TApplication app(appName, &appargc, appargv);
|
---|
| 252 |
|
---|
| 253 | try
|
---|
| 254 | {
|
---|
| 255 | outputFile = TFile::Open(argv[3], "CREATE");
|
---|
| 256 |
|
---|
| 257 | if(outputFile == NULL)
|
---|
| 258 | {
|
---|
| 259 | message << "can't create output file " << argv[3];
|
---|
| 260 | throw runtime_error(message.str());
|
---|
| 261 | }
|
---|
| 262 |
|
---|
| 263 | treeWriter = new ExRootTreeWriter(outputFile, "Delphes");
|
---|
| 264 |
|
---|
[b94aacf] | 265 | branchEvent = treeWriter->NewBranch("Event", HepMCEvent::Class());
|
---|
[5150e39] | 266 |
|
---|
| 267 | confReader = new ExRootConfReader;
|
---|
| 268 | confReader->ReadFile(argv[1]);
|
---|
| 269 |
|
---|
| 270 | modularDelphes = new Delphes("Delphes");
|
---|
| 271 | modularDelphes->SetConfReader(confReader);
|
---|
| 272 | modularDelphes->SetTreeWriter(treeWriter);
|
---|
| 273 |
|
---|
| 274 | factory = modularDelphes->GetFactory();
|
---|
| 275 | allParticleOutputArray = modularDelphes->ExportArray("allParticles");
|
---|
| 276 | stableParticleOutputArray = modularDelphes->ExportArray("stableParticles");
|
---|
| 277 | partonOutputArray = modularDelphes->ExportArray("partons");
|
---|
| 278 |
|
---|
[cd616b9] | 279 | // Initialize Pythia
|
---|
[5150e39] | 280 | pythia = new Pythia8::Pythia;
|
---|
[c008923] | 281 |
|
---|
| 282 | // jet matching
|
---|
| 283 | matching = combined->getHook(*pythia);
|
---|
| 284 | if (!matching)
|
---|
| 285 | {
|
---|
| 286 | throw runtime_error("can't do matching");
|
---|
| 287 | }
|
---|
| 288 | pythia->setUserHooksPtr(matching);
|
---|
| 289 |
|
---|
[5150e39] | 290 |
|
---|
| 291 | if(pythia == NULL)
|
---|
| 292 | {
|
---|
| 293 | throw runtime_error("can't create Pythia instance");
|
---|
| 294 | }
|
---|
| 295 |
|
---|
| 296 | // Read in commands from configuration file
|
---|
[c0f9b5b] | 297 | if(!pythia->readFile(argv[2]))
|
---|
| 298 | {
|
---|
| 299 | message << "can't read Pythia8 configuration file " << argv[2] << endl;
|
---|
| 300 | throw runtime_error(message.str());
|
---|
| 301 | }
|
---|
[5150e39] | 302 |
|
---|
| 303 | // Extract settings to be used in the main program
|
---|
| 304 | numberOfEvents = pythia->mode("Main:numberOfEvents");
|
---|
| 305 | timesAllowErrors = pythia->mode("Main:timesAllowErrors");
|
---|
| 306 |
|
---|
[971db5b] | 307 | // Check if particle gun
|
---|
| 308 | if (!pythia->flag("Main:spareFlag1"))
|
---|
[cd616b9] | 309 | {
|
---|
[971db5b] | 310 | inputFile = fopen(pythia->word("Beams:LHEF").c_str(), "r");
|
---|
| 311 | if(inputFile)
|
---|
| 312 | {
|
---|
| 313 | reader = new DelphesLHEFReader;
|
---|
| 314 | reader->SetInputFile(inputFile);
|
---|
[cd616b9] | 315 |
|
---|
[971db5b] | 316 | branchEventLHEF = treeWriter->NewBranch("EventLHEF", LHEFEvent::Class());
|
---|
| 317 | branchWeightLHEF = treeWriter->NewBranch("WeightLHEF", LHEFWeight::Class());
|
---|
[cd616b9] | 318 |
|
---|
[971db5b] | 319 | allParticleOutputArrayLHEF = modularDelphes->ExportArray("allParticlesLHEF");
|
---|
| 320 | stableParticleOutputArrayLHEF = modularDelphes->ExportArray("stableParticlesLHEF");
|
---|
| 321 | partonOutputArrayLHEF = modularDelphes->ExportArray("partonsLHEF");
|
---|
| 322 | }
|
---|
[cd616b9] | 323 | }
|
---|
| 324 |
|
---|
[a446115] | 325 | modularDelphes->InitTask();
|
---|
| 326 |
|
---|
[5150e39] | 327 | pythia->init();
|
---|
| 328 |
|
---|
[a0538b9] | 329 | // ExRootProgressBar progressBar(numberOfEvents - 1);
|
---|
| 330 | ExRootProgressBar progressBar(-1);
|
---|
[5150e39] | 331 |
|
---|
| 332 | // Loop over all events
|
---|
| 333 | errorCounter = 0;
|
---|
| 334 | treeWriter->Clear();
|
---|
| 335 | modularDelphes->Clear();
|
---|
| 336 | readStopWatch.Start();
|
---|
| 337 | for(eventCounter = 0; eventCounter < numberOfEvents && !interrupted; ++eventCounter)
|
---|
| 338 | {
|
---|
[cd616b9] | 339 | while(reader && reader->ReadBlock(factory, allParticleOutputArrayLHEF,
|
---|
| 340 | stableParticleOutputArrayLHEF, partonOutputArrayLHEF) && !reader->EventReady());
|
---|
| 341 |
|
---|
[971db5b] | 342 | if (pythia->flag("Main:spareFlag1"))
|
---|
| 343 | {
|
---|
[6934875] | 344 | if (pythia->mode("Main:spareMode1") == 11 || pythia->mode("Main:spareMode1") == 13 || pythia->mode("Main:spareMode1") == 15 || pythia->mode("Main:spareMode1") == 22 || pythia->mode("Main:spareMode1") == 211 || pythia->mode("Main:spareMode1") == 2112)
|
---|
[2acc2e9] | 345 | {
|
---|
[ea0f50d] | 346 | fillParticle(pythia->mode("Main:spareMode1"), pythia->parm("Main:spareParm1"), pythia->parm("Main:spareParm2"), pythia->event, pythia->particleData, pythia->rndm);
|
---|
| 347 | }
|
---|
| 348 | else
|
---|
| 349 | {
|
---|
| 350 | fillPartons(pythia->mode("Main:spareMode1"), pythia->parm("Main:spareParm1"), pythia->parm("Main:spareParm2"), pythia->event, pythia->particleData, pythia->rndm);
|
---|
[2acc2e9] | 351 | }
|
---|
[971db5b] | 352 | }
|
---|
| 353 |
|
---|
[5150e39] | 354 | if(!pythia->next())
|
---|
| 355 | {
|
---|
| 356 | // If failure because reached end of file then exit event loop
|
---|
[cd616b9] | 357 | if(pythia->info.atEndOfFile())
|
---|
[5150e39] | 358 | {
|
---|
| 359 | cerr << "Aborted since reached end of Les Houches Event File" << endl;
|
---|
| 360 | break;
|
---|
| 361 | }
|
---|
| 362 |
|
---|
| 363 | // First few failures write off as "acceptable" errors, then quit
|
---|
[cd616b9] | 364 | if(++errorCounter > timesAllowErrors)
|
---|
| 365 | {
|
---|
| 366 | cerr << "Event generation aborted prematurely, owing to error!" << endl;
|
---|
| 367 | break;
|
---|
| 368 | }
|
---|
| 369 |
|
---|
| 370 | modularDelphes->Clear();
|
---|
| 371 | reader->Clear();
|
---|
| 372 | continue;
|
---|
[5150e39] | 373 | }
|
---|
| 374 |
|
---|
| 375 | readStopWatch.Stop();
|
---|
| 376 |
|
---|
| 377 | procStopWatch.Start();
|
---|
[b94aacf] | 378 | ConvertInput(eventCounter, pythia, branchEvent, factory,
|
---|
| 379 | allParticleOutputArray, stableParticleOutputArray, partonOutputArray,
|
---|
| 380 | &readStopWatch, &procStopWatch);
|
---|
[5150e39] | 381 | modularDelphes->ProcessTask();
|
---|
| 382 | procStopWatch.Stop();
|
---|
| 383 |
|
---|
[cd616b9] | 384 | if(reader)
|
---|
| 385 | {
|
---|
| 386 | reader->AnalyzeEvent(branchEventLHEF, eventCounter, &readStopWatch, &procStopWatch);
|
---|
[1e8afcc] | 387 | reader->AnalyzeWeight(branchWeightLHEF);
|
---|
[cd616b9] | 388 | }
|
---|
| 389 |
|
---|
[5150e39] | 390 | treeWriter->Fill();
|
---|
| 391 |
|
---|
| 392 | treeWriter->Clear();
|
---|
| 393 | modularDelphes->Clear();
|
---|
[cd616b9] | 394 | if(reader) reader->Clear();
|
---|
[5150e39] | 395 |
|
---|
| 396 | readStopWatch.Start();
|
---|
[a0538b9] | 397 | progressBar.Update(eventCounter, eventCounter);
|
---|
[5150e39] | 398 | }
|
---|
| 399 |
|
---|
[a0538b9] | 400 | progressBar.Update(eventCounter, eventCounter, kTRUE);
|
---|
[5150e39] | 401 | progressBar.Finish();
|
---|
| 402 |
|
---|
[3e276d4] | 403 | pythia->stat();
|
---|
[5150e39] | 404 |
|
---|
| 405 | modularDelphes->FinishTask();
|
---|
| 406 | treeWriter->Write();
|
---|
| 407 |
|
---|
| 408 | cout << "** Exiting..." << endl;
|
---|
| 409 |
|
---|
[cd616b9] | 410 | delete reader;
|
---|
[5150e39] | 411 | delete pythia;
|
---|
| 412 | delete modularDelphes;
|
---|
| 413 | delete confReader;
|
---|
| 414 | delete treeWriter;
|
---|
| 415 | delete outputFile;
|
---|
| 416 |
|
---|
| 417 | return 0;
|
---|
| 418 | }
|
---|
| 419 | catch(runtime_error &e)
|
---|
| 420 | {
|
---|
| 421 | if(treeWriter) delete treeWriter;
|
---|
| 422 | if(outputFile) delete outputFile;
|
---|
| 423 | cerr << "** ERROR: " << e.what() << endl;
|
---|
| 424 | return 1;
|
---|
| 425 | }
|
---|
| 426 | }
|
---|