Fork me on GitHub

source: git/examples/Example1.cpp@ 94083e7

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 94083e7 was 1fa50c2, checked in by Pavel Demin <pavel.demin@…>, 10 years ago

fix GPLv3 header

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