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