[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 |
|
---|
[d7d2da3] | 19 | #include <stdexcept>
|
---|
| 20 | #include <iostream>
|
---|
| 21 | #include <sstream>
|
---|
| 22 |
|
---|
| 23 | #include <signal.h>
|
---|
| 24 |
|
---|
| 25 | #include "TROOT.h"
|
---|
| 26 | #include "TApplication.h"
|
---|
| 27 |
|
---|
| 28 | #include "TFile.h"
|
---|
| 29 | #include "TObjArray.h"
|
---|
| 30 | #include "TStopwatch.h"
|
---|
| 31 | #include "TDatabasePDG.h"
|
---|
| 32 | #include "TParticlePDG.h"
|
---|
| 33 | #include "TLorentzVector.h"
|
---|
| 34 |
|
---|
| 35 | #include "modules/Delphes.h"
|
---|
| 36 | #include "classes/DelphesClasses.h"
|
---|
| 37 | #include "classes/DelphesFactory.h"
|
---|
| 38 | #include "classes/DelphesHepMCReader.h"
|
---|
| 39 |
|
---|
| 40 | #include "ExRootAnalysis/ExRootTreeWriter.h"
|
---|
| 41 | #include "ExRootAnalysis/ExRootTreeBranch.h"
|
---|
| 42 | #include "ExRootAnalysis/ExRootProgressBar.h"
|
---|
| 43 |
|
---|
| 44 | using namespace std;
|
---|
| 45 |
|
---|
| 46 | //---------------------------------------------------------------------------
|
---|
| 47 |
|
---|
| 48 | static bool interrupted = false;
|
---|
| 49 |
|
---|
| 50 | void SignalHandler(int sig)
|
---|
| 51 | {
|
---|
| 52 | interrupted = true;
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | //---------------------------------------------------------------------------
|
---|
| 56 |
|
---|
| 57 | int main(int argc, char *argv[])
|
---|
| 58 | {
|
---|
| 59 | char appName[] = "DelphesHepMC";
|
---|
| 60 | stringstream message;
|
---|
| 61 | FILE *inputFile = 0;
|
---|
| 62 | TFile *outputFile = 0;
|
---|
| 63 | TStopwatch readStopWatch, procStopWatch;
|
---|
| 64 | ExRootTreeWriter *treeWriter = 0;
|
---|
[d203a37] | 65 | ExRootTreeBranch *branchEvent = 0, *branchWeight = 0;
|
---|
[d7d2da3] | 66 | ExRootConfReader *confReader = 0;
|
---|
| 67 | Delphes *modularDelphes = 0;
|
---|
| 68 | DelphesFactory *factory = 0;
|
---|
| 69 | TObjArray *stableParticleOutputArray = 0, *allParticleOutputArray = 0, *partonOutputArray = 0;
|
---|
| 70 | DelphesHepMCReader *reader = 0;
|
---|
[7b461f6] | 71 | Int_t i, maxEvents, skipEvents;
|
---|
[d7d2da3] | 72 | Long64_t length, eventCounter;
|
---|
| 73 |
|
---|
| 74 | if(argc < 3)
|
---|
| 75 | {
|
---|
| 76 | cout << " Usage: " << appName << " config_file" << " output_file" << " [input_file(s)]" << endl;
|
---|
| 77 | cout << " config_file - configuration file in Tcl format," << endl;
|
---|
| 78 | cout << " output_file - output file in ROOT format," << endl;
|
---|
| 79 | cout << " input_file(s) - input file(s) in HepMC format," << endl;
|
---|
| 80 | cout << " with no input_file, or when input_file is -, read standard input." << endl;
|
---|
| 81 | return 1;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | signal(SIGINT, SignalHandler);
|
---|
| 85 |
|
---|
| 86 | gROOT->SetBatch();
|
---|
| 87 |
|
---|
| 88 | int appargc = 1;
|
---|
| 89 | char *appargv[] = {appName};
|
---|
| 90 | TApplication app(appName, &appargc, appargv);
|
---|
| 91 |
|
---|
| 92 | try
|
---|
| 93 | {
|
---|
| 94 | outputFile = TFile::Open(argv[2], "CREATE");
|
---|
| 95 |
|
---|
| 96 | if(outputFile == NULL)
|
---|
| 97 | {
|
---|
| 98 | message << "can't create output file " << argv[2];
|
---|
| 99 | throw runtime_error(message.str());
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | treeWriter = new ExRootTreeWriter(outputFile, "Delphes");
|
---|
| 103 |
|
---|
| 104 | branchEvent = treeWriter->NewBranch("Event", HepMCEvent::Class());
|
---|
[d203a37] | 105 | branchWeight = treeWriter->NewBranch("Weight", Weight::Class());
|
---|
[d7d2da3] | 106 |
|
---|
| 107 | confReader = new ExRootConfReader;
|
---|
| 108 | confReader->ReadFile(argv[1]);
|
---|
| 109 |
|
---|
[7b461f6] | 110 | maxEvents = confReader->GetInt("::MaxEvents", 0);
|
---|
| 111 | skipEvents = confReader->GetInt("::SkipEvents", 0);
|
---|
| 112 |
|
---|
| 113 | if(maxEvents < 0)
|
---|
| 114 | {
|
---|
| 115 | throw runtime_error("MaxEvents must be zero or positive");
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | if(skipEvents < 0)
|
---|
| 119 | {
|
---|
| 120 | throw runtime_error("SkipEvents must be zero or positive");
|
---|
| 121 | }
|
---|
| 122 |
|
---|
[d7d2da3] | 123 | modularDelphes = new Delphes("Delphes");
|
---|
| 124 | modularDelphes->SetConfReader(confReader);
|
---|
| 125 | modularDelphes->SetTreeWriter(treeWriter);
|
---|
| 126 |
|
---|
| 127 | factory = modularDelphes->GetFactory();
|
---|
| 128 | allParticleOutputArray = modularDelphes->ExportArray("allParticles");
|
---|
| 129 | stableParticleOutputArray = modularDelphes->ExportArray("stableParticles");
|
---|
| 130 | partonOutputArray = modularDelphes->ExportArray("partons");
|
---|
| 131 |
|
---|
| 132 | reader = new DelphesHepMCReader;
|
---|
| 133 |
|
---|
| 134 | modularDelphes->InitTask();
|
---|
| 135 |
|
---|
| 136 | i = 3;
|
---|
| 137 | do
|
---|
| 138 | {
|
---|
| 139 | if(interrupted) break;
|
---|
| 140 |
|
---|
| 141 | if(i == argc || strncmp(argv[i], "-", 2) == 0)
|
---|
| 142 | {
|
---|
| 143 | cout << "** Reading standard input" << endl;
|
---|
| 144 | inputFile = stdin;
|
---|
| 145 | length = -1;
|
---|
| 146 | }
|
---|
| 147 | else
|
---|
| 148 | {
|
---|
| 149 | cout << "** Reading " << argv[i] << endl;
|
---|
| 150 | inputFile = fopen(argv[i], "r");
|
---|
| 151 |
|
---|
| 152 | if(inputFile == NULL)
|
---|
| 153 | {
|
---|
| 154 | message << "can't open " << argv[i];
|
---|
| 155 | throw runtime_error(message.str());
|
---|
| 156 | }
|
---|
| 157 |
|
---|
| 158 | fseek(inputFile, 0L, SEEK_END);
|
---|
| 159 | length = ftello(inputFile);
|
---|
| 160 | fseek(inputFile, 0L, SEEK_SET);
|
---|
| 161 |
|
---|
| 162 | if(length <= 0)
|
---|
| 163 | {
|
---|
| 164 | fclose(inputFile);
|
---|
| 165 | ++i;
|
---|
| 166 | continue;
|
---|
| 167 | }
|
---|
| 168 | }
|
---|
| 169 |
|
---|
| 170 | reader->SetInputFile(inputFile);
|
---|
| 171 |
|
---|
| 172 | ExRootProgressBar progressBar(length);
|
---|
| 173 |
|
---|
| 174 | // Loop over all objects
|
---|
| 175 | eventCounter = 0;
|
---|
| 176 | treeWriter->Clear();
|
---|
| 177 | modularDelphes->Clear();
|
---|
| 178 | reader->Clear();
|
---|
| 179 | readStopWatch.Start();
|
---|
[7b461f6] | 180 | while((maxEvents <= 0 || eventCounter - skipEvents < maxEvents) &&
|
---|
| 181 | reader->ReadBlock(factory, allParticleOutputArray,
|
---|
[d7d2da3] | 182 | stableParticleOutputArray, partonOutputArray) && !interrupted)
|
---|
| 183 | {
|
---|
| 184 | if(reader->EventReady())
|
---|
| 185 | {
|
---|
| 186 | ++eventCounter;
|
---|
| 187 |
|
---|
| 188 | readStopWatch.Stop();
|
---|
| 189 |
|
---|
[7b461f6] | 190 | if(eventCounter > skipEvents)
|
---|
| 191 | {
|
---|
| 192 | procStopWatch.Start();
|
---|
| 193 | modularDelphes->ProcessTask();
|
---|
| 194 | procStopWatch.Stop();
|
---|
| 195 |
|
---|
| 196 | reader->AnalyzeEvent(branchEvent, eventCounter, &readStopWatch, &procStopWatch);
|
---|
[d203a37] | 197 | reader->AnalyzeWeight(branchWeight);
|
---|
[7b461f6] | 198 |
|
---|
| 199 | treeWriter->Fill();
|
---|
[d7d2da3] | 200 |
|
---|
[7b461f6] | 201 | treeWriter->Clear();
|
---|
| 202 | }
|
---|
[d7d2da3] | 203 |
|
---|
| 204 | modularDelphes->Clear();
|
---|
| 205 | reader->Clear();
|
---|
| 206 |
|
---|
| 207 | readStopWatch.Start();
|
---|
| 208 | }
|
---|
| 209 | progressBar.Update(ftello(inputFile), eventCounter);
|
---|
| 210 | }
|
---|
| 211 |
|
---|
| 212 | fseek(inputFile, 0L, SEEK_END);
|
---|
| 213 | progressBar.Update(ftello(inputFile), eventCounter, kTRUE);
|
---|
| 214 | progressBar.Finish();
|
---|
| 215 |
|
---|
| 216 | if(inputFile != stdin) fclose(inputFile);
|
---|
| 217 |
|
---|
| 218 | ++i;
|
---|
| 219 | }
|
---|
| 220 | while(i < argc);
|
---|
| 221 |
|
---|
| 222 | modularDelphes->FinishTask();
|
---|
| 223 | treeWriter->Write();
|
---|
| 224 |
|
---|
| 225 | cout << "** Exiting..." << endl;
|
---|
| 226 |
|
---|
| 227 | delete reader;
|
---|
| 228 | delete modularDelphes;
|
---|
| 229 | delete confReader;
|
---|
| 230 | delete treeWriter;
|
---|
| 231 | delete outputFile;
|
---|
| 232 |
|
---|
| 233 | return 0;
|
---|
| 234 | }
|
---|
| 235 | catch(runtime_error &e)
|
---|
| 236 | {
|
---|
| 237 | if(treeWriter) delete treeWriter;
|
---|
| 238 | if(outputFile) delete outputFile;
|
---|
| 239 | cerr << "** ERROR: " << e.what() << endl;
|
---|
| 240 | return 1;
|
---|
| 241 | }
|
---|
| 242 | }
|
---|