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