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