Fork me on GitHub

source: git/readers/DelphesCMSFWLite.cpp@ 837fa70

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 837fa70 was 837fa70, checked in by Geonmo <ry840901@…>, 8 years ago

Mix packedGenParticles and prunedGenParticle.

  • Property mode set to 100644
File size: 13.1 KB
Line 
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 <algorithm>
20#include <stdexcept>
21#include <iostream>
22#include <sstream>
23#include <memory>
24
25#include <map>
26#include <vector>
27
28#include <stdlib.h>
29#include <signal.h>
30#include <stdio.h>
31
32#include "TROOT.h"
33#include "TApplication.h"
34
35#include "TFile.h"
36#include "TObjArray.h"
37#include "TStopwatch.h"
38#include "TDatabasePDG.h"
39#include "TParticlePDG.h"
40#include "TLorentzVector.h"
41
42#include "modules/Delphes.h"
43#include "classes/DelphesStream.h"
44#include "classes/DelphesClasses.h"
45#include "classes/DelphesFactory.h"
46
47#include "ExRootAnalysis/ExRootTreeWriter.h"
48#include "ExRootAnalysis/ExRootTreeBranch.h"
49#include "ExRootAnalysis/ExRootProgressBar.h"
50
51#include "FWCore/FWLite/interface/FWLiteEnabler.h"
52#include "DataFormats/FWLite/interface/Event.h"
53#include "DataFormats/FWLite/interface/Handle.h"
54#include "DataFormats/HepMCCandidate/interface/GenParticle.h"
55#include "DataFormats/PatCandidates/interface/PackedGenParticle.h"
56#include "SimDataFormats/GeneratorProducts/interface/HepMCProduct.h"
57#include "SimDataFormats/GeneratorProducts/interface/GenEventInfoProduct.h"
58#include "SimDataFormats/GeneratorProducts/interface/LHEEventProduct.h"
59#include "SimDataFormats/GeneratorProducts/interface/WeightsInfo.h"
60
61using namespace std;
62
63//---------------------------------------------------------------------------
64
65void ConvertInput(fwlite::Event &event, Long64_t eventCounter,
66 ExRootTreeBranch *branchEvent, ExRootTreeBranch *branchRwgt,
67 DelphesFactory *factory, TObjArray *allParticleOutputArray,
68 TObjArray *stableParticleOutputArray, TObjArray *partonOutputArray, Bool_t firstEvent)
69{
70
71 fwlite::Handle< GenEventInfoProduct > handleGenEventInfo;
72 fwlite::Handle< LHEEventProduct > handleLHEEvent;
73 fwlite::Handle< vector< reco::GenParticle > > handleParticle;
74 fwlite::Handle< vector< pat::PackedGenParticle > > handlePackedParticle;
75
76 vector< reco::GenParticle >::const_iterator itParticle;
77 vector< pat::PackedGenParticle >::const_iterator itPackedParticle;
78
79 vector< const reco::Candidate * > vectorCandidate;
80 vector< const reco::Candidate * >::iterator itCandidate;
81
82 handleGenEventInfo.getByLabel(event, "generator");
83
84 if (!((handleLHEEvent.getBranchNameFor(event, "source")).empty()))
85 {
86 handleLHEEvent.getByLabel(event, "source");
87 }
88 else if (!((handleLHEEvent.getBranchNameFor(event, "externalLHEProducer")).empty()))
89 {
90 handleLHEEvent.getByLabel(event, "externalLHEProducer");
91 }
92 else if (firstEvent)
93 {
94 std::cout<<"Wrong LHEEvent Label! Please, check the input file."<<std::endl;
95 }
96
97 if (!((handleParticle.getBranchNameFor(event, "genParticles")).empty()))
98 {
99 handleParticle.getByLabel(event, "genParticles");
100 }
101 else if (!((handlePackedParticle.getBranchNameFor(event, "packedGenParticles")).empty()) && !((handleParticle.getBranchNameFor(event,"prunedGenParticles")).empty()))
102 {
103 handleParticle.getByLabel(event, "prunedGenParticles");
104 handlePackedParticle.getByLabel(event, "packedGenParticles");
105 }
106 else
107 {
108 std::cout<<"Wrong GenParticle Label! Please, check the input file."<<std::endl;
109 exit(-1);
110 }
111
112 Bool_t foundLHE = !((handleLHEEvent.getBranchNameFor(event, "source")).empty()) || !((handleLHEEvent.getBranchNameFor(event, "externalLHEProducer")).empty());
113 Bool_t isMiniAOD = !((handlePackedParticle.getBranchNameFor(event, "packedGenParticles")).empty()) && ((handleParticle.getBranchNameFor(event, "genParticles")).empty()) ;
114
115 HepMCEvent *element;
116 Weight *weight;
117 Candidate *candidate;
118 TDatabasePDG *pdg;
119 TParticlePDG *pdgParticle;
120 Int_t pdgCode;
121
122 Int_t pid, status;
123 Double_t px, py, pz, e, mass;
124 Double_t x, y, z;
125
126 element = static_cast<HepMCEvent *>(branchEvent->NewEntry());
127
128 element->Number = eventCounter;
129
130 element->ProcessID = handleGenEventInfo->signalProcessID();
131 element->MPI = 1;
132 element->Weight = handleGenEventInfo->weight();
133 element->Scale = handleGenEventInfo->qScale();
134 element->AlphaQED = handleGenEventInfo->alphaQED();
135 element->AlphaQCD = handleGenEventInfo->alphaQCD();
136
137 element->ID1 = 0;
138 element->ID2 = 0;
139 element->X1 = 0.0;
140 element->X2 = 0.0;
141 element->ScalePDF = 0.0;
142 element->PDF1 = 0.0;
143 element->PDF2 = 0.0;
144
145 element->ReadTime = 0.0;
146 element->ProcTime = 0.0;
147
148
149 if(foundLHE)
150 {
151 const vector< gen::WeightsInfo > &vectorWeightsInfo = handleLHEEvent->weights();
152 vector< gen::WeightsInfo >::const_iterator itWeightsInfo;
153
154 for(itWeightsInfo = vectorWeightsInfo.begin(); itWeightsInfo != vectorWeightsInfo.end(); ++itWeightsInfo)
155 {
156 weight = static_cast<Weight *>(branchRwgt->NewEntry());
157 weight->Weight = itWeightsInfo->wgt;
158 }
159 }
160
161 pdg = TDatabasePDG::Instance();
162
163 for(itParticle = handleParticle->begin(); itParticle != handleParticle->end(); ++itParticle)
164 {
165 const reco::GenParticle &particle = *itParticle;
166 if( !isMiniAOD || particle.status() != 1 ) vectorCandidate.push_back(&*itParticle);
167 }
168
169 for(itParticle = handleParticle->begin(); itParticle != handleParticle->end(); ++itParticle)
170 {
171 const reco::GenParticle &particle = *itParticle;
172
173 pid = particle.pdgId();
174 status = particle.status();
175 if( isMiniAOD && particle.status() == 1 ) continue;
176 px = particle.px(); py = particle.py(); pz = particle.pz(); e = particle.energy(); mass = particle.mass();
177 x = particle.vx(); y = particle.vy(); z = particle.vz();
178
179 candidate = factory->NewCandidate();
180
181 candidate->PID = pid;
182 pdgCode = TMath::Abs(candidate->PID);
183
184 candidate->Status = status;
185
186 if(particle.mother())
187 {
188 itCandidate = find(vectorCandidate.begin(), vectorCandidate.end(), particle.mother());
189 if(itCandidate != vectorCandidate.end()) candidate->M1 = distance(vectorCandidate.begin(), itCandidate);
190 }
191
192 itCandidate = find(vectorCandidate.begin(), vectorCandidate.end(), particle.daughter(0));
193 if(itCandidate != vectorCandidate.end()) candidate->D1 = distance(vectorCandidate.begin(), itCandidate);
194
195 itCandidate = find(vectorCandidate.begin(), vectorCandidate.end(), particle.daughter(particle.numberOfDaughters() - 1));
196 if(itCandidate != vectorCandidate.end()) candidate->D2 = distance(vectorCandidate.begin(), itCandidate);
197
198 pdgParticle = pdg->GetParticle(pid);
199 candidate->Charge = pdgParticle ? Int_t(pdgParticle->Charge()/3.0) : -999;
200 candidate->Mass = mass;
201
202 candidate->Momentum.SetPxPyPzE(px, py, pz, e);
203
204 candidate->Position.SetXYZT(x*10.0, y*10.0, z*10.0, 0.0);
205
206 allParticleOutputArray->Add(candidate);
207
208 if(!pdgParticle) continue;
209
210 if( status == 1)
211 {
212 // Prevent duplicated particle.
213 if ( !isMiniAOD ) stableParticleOutputArray->Add(candidate);
214 }
215 else if(pdgCode <= 5 || pdgCode == 21 || pdgCode == 15)
216 {
217 partonOutputArray->Add(candidate);
218 }
219 }
220 if ( !isMiniAOD) return ;
221 // For MiniAOD sample,
222 // Only status==1 particles are saved to packedGenParticles.
223 for(itPackedParticle = handlePackedParticle->begin(); itPackedParticle != handlePackedParticle->end(); ++itPackedParticle)
224 {
225 vectorCandidate.push_back(&*itPackedParticle);
226 }
227
228 for(itPackedParticle = handlePackedParticle->begin(); itPackedParticle != handlePackedParticle->end(); ++itPackedParticle)
229 {
230 const pat::PackedGenParticle &particle = *itPackedParticle;
231
232 pid = particle.pdgId();
233 status = particle.status();
234 px = particle.px(); py = particle.py(); pz = particle.pz(); e = particle.energy(); mass = particle.mass();
235 x = particle.vx(); y = particle.vy(); z = particle.vz();
236
237 candidate = factory->NewCandidate();
238
239 candidate->PID = pid;
240 pdgCode = TMath::Abs(candidate->PID);
241
242 candidate->Status = status;
243
244 if(particle.mother(0))
245 {
246 itCandidate = find(vectorCandidate.begin(), vectorCandidate.end(), particle.mother(0));
247 if(itCandidate != vectorCandidate.end()) candidate->M1 = distance(vectorCandidate.begin(), itCandidate);
248 }
249
250 itCandidate = find(vectorCandidate.begin(), vectorCandidate.end(), particle.daughter(0));
251 if(itCandidate != vectorCandidate.end()) candidate->D1 = distance(vectorCandidate.begin(), itCandidate);
252
253 itCandidate = find(vectorCandidate.begin(), vectorCandidate.end(), particle.daughter(particle.numberOfDaughters() - 1));
254 if(itCandidate != vectorCandidate.end()) candidate->D2 = distance(vectorCandidate.begin(), itCandidate);
255
256 pdgParticle = pdg->GetParticle(pid);
257 candidate->Charge = pdgParticle ? Int_t(pdgParticle->Charge()/3.0) : -999;
258 candidate->Mass = mass;
259
260 candidate->Momentum.SetPxPyPzE(px, py, pz, e);
261
262 candidate->Position.SetXYZT(x*10.0, y*10.0, z*10.0, 0.0);
263
264 allParticleOutputArray->Add(candidate);
265
266 if(!pdgParticle) continue;
267
268 if(status == 1)
269 {
270 stableParticleOutputArray->Add(candidate);
271 }
272 }
273}
274
275//---------------------------------------------------------------------------
276
277static bool interrupted = false;
278
279void SignalHandler(int sig)
280{
281 interrupted = true;
282}
283
284//---------------------------------------------------------------------------
285
286int main(int argc, char *argv[])
287{
288 char appName[] = "DelphesCMSFWLite";
289 stringstream message;
290 TFile *inputFile = 0;
291 TFile *outputFile = 0;
292 TStopwatch eventStopWatch;
293 ExRootTreeWriter *treeWriter = 0;
294 ExRootTreeBranch *branchEvent = 0, *branchRwgt = 0;
295 ExRootConfReader *confReader = 0;
296 Delphes *modularDelphes = 0;
297 DelphesFactory *factory = 0;
298 TObjArray *allParticleOutputArray = 0, *stableParticleOutputArray = 0, *partonOutputArray = 0;
299 Int_t i;
300 Long64_t eventCounter, numberOfEvents;
301 Bool_t firstEvent = kTRUE;
302
303 if(argc < 4)
304 {
305 cout << " Usage: " << appName << " config_file" << " output_file" << " input_file(s)" << endl;
306 cout << " config_file - configuration file in Tcl format," << endl;
307 cout << " output_file - output file in ROOT format," << endl;
308 cout << " input_file(s) - input file(s) in ROOT format." << endl;
309 return 1;
310 }
311
312 signal(SIGINT, SignalHandler);
313
314 gROOT->SetBatch();
315
316 int appargc = 1;
317 char *appargv[] = {appName};
318 TApplication app(appName, &appargc, appargv);
319
320 FWLiteEnabler::enable();
321
322 try
323 {
324 outputFile = TFile::Open(argv[2], "CREATE");
325
326 if(outputFile == NULL)
327 {
328 message << "can't open " << argv[2] << endl;
329 throw runtime_error(message.str());
330 }
331
332 treeWriter = new ExRootTreeWriter(outputFile, "Delphes");
333
334 branchEvent = treeWriter->NewBranch("Event", HepMCEvent::Class());
335 branchRwgt = treeWriter->NewBranch("Weight", Weight::Class());
336
337 confReader = new ExRootConfReader;
338 confReader->ReadFile(argv[1]);
339
340 modularDelphes = new Delphes("Delphes");
341 modularDelphes->SetConfReader(confReader);
342 modularDelphes->SetTreeWriter(treeWriter);
343
344 factory = modularDelphes->GetFactory();
345 allParticleOutputArray = modularDelphes->ExportArray("allParticles");
346 stableParticleOutputArray = modularDelphes->ExportArray("stableParticles");
347 partonOutputArray = modularDelphes->ExportArray("partons");
348
349 modularDelphes->InitTask();
350
351 for(i = 3; i < argc && !interrupted; ++i)
352 {
353 cout << "** Reading " << argv[i] << endl;
354
355 inputFile = TFile::Open(argv[i]);
356
357 if(inputFile == NULL)
358 {
359 message << "can't open " << argv[i] << endl;
360 throw runtime_error(message.str());
361 }
362
363 fwlite::Event event(inputFile);
364
365 numberOfEvents = event.size();
366
367 if(numberOfEvents <= 0) continue;
368
369 // ExRootProgressBar progressBar(numberOfEvents - 1);
370 ExRootProgressBar progressBar(-1);
371
372 // Loop over all objects
373 eventCounter = 0;
374 modularDelphes->Clear();
375 treeWriter->Clear();
376
377 for(event.toBegin(); !event.atEnd() && !interrupted; ++event)
378 {
379 ConvertInput(event, eventCounter, branchEvent, branchRwgt, factory,
380 allParticleOutputArray, stableParticleOutputArray, partonOutputArray, firstEvent);
381 modularDelphes->ProcessTask();
382
383 firstEvent = kFALSE;
384
385 treeWriter->Fill();
386
387 modularDelphes->Clear();
388 treeWriter->Clear();
389
390 progressBar.Update(eventCounter, eventCounter);
391 ++eventCounter;
392 }
393
394 progressBar.Update(eventCounter, eventCounter, kTRUE);
395 progressBar.Finish();
396
397 inputFile->Close();
398 }
399
400 modularDelphes->FinishTask();
401 treeWriter->Write();
402
403 cout << "** Exiting..." << endl;
404
405 delete modularDelphes;
406 delete confReader;
407 delete treeWriter;
408 delete outputFile;
409
410 return 0;
411 }
412 catch(runtime_error &e)
413 {
414 if(treeWriter) delete treeWriter;
415 if(outputFile) delete outputFile;
416 cerr << "** ERROR: " << e.what() << endl;
417 return 1;
418 }
419}
Note: See TracBrowser for help on using the repository browser.