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 |
|
---|
45 | using namespace std;
|
---|
46 |
|
---|
47 | //------------------------------------------------------------------------------
|
---|
48 |
|
---|
49 | // Here you can put your analysis macro
|
---|
50 |
|
---|
51 | #define PHOTON
|
---|
52 | #include "Validation.C"
|
---|
53 |
|
---|
54 | //------------------------------------------------------------------------------
|
---|
55 |
|
---|
56 | int main(int argc, char *argv[])
|
---|
57 | {
|
---|
58 | char *appName = "Validation";
|
---|
59 |
|
---|
60 | if(argc != 3)
|
---|
61 | {
|
---|
62 | cout << " Usage: " << appName << " input_file output_file" << endl;
|
---|
63 | cout << " input_file - input file in ROOT format ('Delphes' tree)," << endl;
|
---|
64 | cout << " output_file - output file in ROOT format" << endl;
|
---|
65 | return 1;
|
---|
66 | }
|
---|
67 |
|
---|
68 | gROOT->SetBatch();
|
---|
69 |
|
---|
70 | int appargc = 1;
|
---|
71 | char *appargv[] = {appName};
|
---|
72 | TApplication app(appName, &appargc, appargv);
|
---|
73 |
|
---|
74 | TString inputFile(argv[1]);
|
---|
75 | TString outputFile(argv[2]);
|
---|
76 |
|
---|
77 |
|
---|
78 | //------------------------------------------------------------------------------
|
---|
79 | // Here you call your macro's main function
|
---|
80 |
|
---|
81 | Validation(inputFile, outputFile);
|
---|
82 |
|
---|
83 | //------------------------------------------------------------------------------
|
---|
84 |
|
---|
85 | }
|
---|
86 |
|
---|
87 |
|
---|