[68dd0df] | 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 | #ifndef JetFakeParticle_h
|
---|
| 20 | #define JetFakeParticle_h
|
---|
| 21 |
|
---|
| 22 |
|
---|
| 23 | /** \class JetFakeParticle
|
---|
| 24 | *
|
---|
| 25 | * Converts jet into particle with some PID,
|
---|
| 26 | * according to parametrized probability.
|
---|
| 27 | *
|
---|
| 28 | * \author M. Selvaggi - UCL, Louvain-la-Neuve
|
---|
| 29 | *
|
---|
| 30 | */
|
---|
| 31 |
|
---|
| 32 | #include "classes/DelphesModule.h"
|
---|
| 33 |
|
---|
| 34 | class TIterator;
|
---|
| 35 | class TObjArray;
|
---|
| 36 | class DelphesFormula;
|
---|
| 37 |
|
---|
| 38 | class JetFakeParticle: public DelphesModule
|
---|
| 39 | {
|
---|
| 40 | public:
|
---|
| 41 |
|
---|
| 42 | JetFakeParticle();
|
---|
| 43 | ~JetFakeParticle();
|
---|
| 44 |
|
---|
| 45 | void Init();
|
---|
| 46 | void Process();
|
---|
| 47 | void Finish();
|
---|
| 48 |
|
---|
| 49 | private:
|
---|
| 50 |
|
---|
| 51 | #if !defined(__CINT__) && !defined(__CLING__)
|
---|
| 52 | typedef std::map< Int_t, DelphesFormula * > TFakeMap; //!
|
---|
| 53 | TFakeMap fEfficiencyMap;
|
---|
| 54 | #endif
|
---|
| 55 |
|
---|
| 56 | TIterator *fItInputArray; //!
|
---|
| 57 |
|
---|
| 58 | const TObjArray *fInputArray; //!
|
---|
| 59 |
|
---|
| 60 | TObjArray *fElectronOutputArray; //!
|
---|
| 61 | TObjArray *fMuonOutputArray; //!
|
---|
| 62 | TObjArray *fPhotonOutputArray; //!
|
---|
| 63 | TObjArray *fJetOutputArray; //!
|
---|
| 64 |
|
---|
| 65 | ClassDef(JetFakeParticle, 1)
|
---|
| 66 | };
|
---|
| 67 |
|
---|
| 68 | #endif
|
---|