Fork me on GitHub

source: git/examples/Example1.cpp@ 2671df6

Last change on this file since 2671df6 was 341014c, checked in by Pavel Demin <pavel-demin@…>, 5 years ago

apply .clang-format to all .h, .cc and .cpp files

  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[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
[090fe5e]19#include <iostream>
20#include <utility>
21#include <vector>
22
[341014c]23#include "TApplication.h"
[090fe5e]24#include "TROOT.h"
25#include "TSystem.h"
26
27#include "TString.h"
28
[341014c]29#include "TClonesArray.h"
[090fe5e]30#include "TH2.h"
31#include "THStack.h"
32#include "TLegend.h"
33#include "TLorentzVector.h"
[341014c]34#include "TPaveText.h"
[090fe5e]35
36#include "classes/DelphesClasses.h"
37
[341014c]38#include "ExRootAnalysis/ExRootResult.h"
39#include "ExRootAnalysis/ExRootTreeBranch.h"
[090fe5e]40#include "ExRootAnalysis/ExRootTreeReader.h"
41#include "ExRootAnalysis/ExRootTreeWriter.h"
42#include "ExRootAnalysis/ExRootUtilities.h"
43
44using namespace std;
45
46//------------------------------------------------------------------------------
47
48// Here you can put your analysis macro
49
[2ef6152]50#include "Example1.C"
[090fe5e]51
52//------------------------------------------------------------------------------
53
54int main(int argc, char *argv[])
55{
56 char *appName = "Example1";
57
58 if(argc != 2)
59 {
60 cout << " Usage: " << appName << " input_file" << endl;
61 cout << " input_file - input file in ROOT format ('Delphes' tree)," << endl;
62 return 1;
63 }
64
65 gROOT->SetBatch();
66
67 int appargc = 1;
68 char *appargv[] = {appName};
69 TApplication app(appName, &appargc, appargv);
70
71 TString inputFile(argv[1]);
72
[341014c]73 //------------------------------------------------------------------------------
[090fe5e]74
[341014c]75 // Here you call your macro's main function
[090fe5e]76
[2ef6152]77 Example1(inputFile);
[090fe5e]78
[341014c]79 //------------------------------------------------------------------------------
[090fe5e]80}
Note: See TracBrowser for help on using the repository browser.