[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 |
|
---|
[f8d08bb] | 19 | /** \class Clone
|
---|
| 20 | *
|
---|
| 21 | * Clone candidate array
|
---|
| 22 | *
|
---|
| 23 | * \author M. Selvaggi - UCL, Louvain-la-Neuve
|
---|
| 24 | *
|
---|
| 25 | */
|
---|
| 26 |
|
---|
| 27 | #include "modules/Cloner.h"
|
---|
| 28 |
|
---|
| 29 | #include "classes/DelphesClasses.h"
|
---|
| 30 | #include "classes/DelphesFactory.h"
|
---|
| 31 | #include "classes/DelphesFormula.h"
|
---|
| 32 |
|
---|
| 33 | #include "ExRootAnalysis/ExRootClassifier.h"
|
---|
[341014c] | 34 | #include "ExRootAnalysis/ExRootFilter.h"
|
---|
| 35 | #include "ExRootAnalysis/ExRootResult.h"
|
---|
[f8d08bb] | 36 |
|
---|
| 37 | #include <algorithm>
|
---|
| 38 | #include <iostream>
|
---|
| 39 | #include <sstream>
|
---|
[341014c] | 40 | #include <stdexcept>
|
---|
[f8d08bb] | 41 |
|
---|
| 42 | using namespace std;
|
---|
| 43 |
|
---|
| 44 | //------------------------------------------------------------------------------
|
---|
| 45 |
|
---|
| 46 | Cloner::Cloner() :
|
---|
| 47 | fItInputArray(0)
|
---|
| 48 | {
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | //------------------------------------------------------------------------------
|
---|
| 52 |
|
---|
| 53 | Cloner::~Cloner()
|
---|
| 54 | {
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | //------------------------------------------------------------------------------
|
---|
| 58 |
|
---|
| 59 | void Cloner::Init()
|
---|
| 60 | {
|
---|
| 61 | // import input array(s)
|
---|
| 62 |
|
---|
| 63 | fInputArray = ImportArray(GetString("InputArray", "FastJetFinder/jets"));
|
---|
| 64 | fItInputArray = fInputArray->MakeIterator();
|
---|
| 65 |
|
---|
| 66 | // create output array(s)
|
---|
| 67 |
|
---|
| 68 | fOutputArray = ExportArray(GetString("OutputArray", "jets"));
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | //------------------------------------------------------------------------------
|
---|
| 72 |
|
---|
| 73 | void Cloner::Finish()
|
---|
| 74 | {
|
---|
| 75 | if(fItInputArray) delete fItInputArray;
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | //------------------------------------------------------------------------------
|
---|
| 79 |
|
---|
| 80 | void Cloner::Process()
|
---|
| 81 | {
|
---|
| 82 | Candidate *candidate;
|
---|
[341014c] | 83 |
|
---|
| 84 | // loop over all input candidates
|
---|
[f8d08bb] | 85 | fItInputArray->Reset();
|
---|
[341014c] | 86 | while((candidate = static_cast<Candidate *>(fItInputArray->Next())))
|
---|
[f8d08bb] | 87 | {
|
---|
[341014c] | 88 | candidate = static_cast<Candidate *>(candidate->Clone());
|
---|
[f8d08bb] | 89 | fOutputArray->Add(candidate);
|
---|
| 90 | }
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | //------------------------------------------------------------------------------
|
---|