1 |
khahn |
1.1 |
#ifndef FSR
|
2 |
|
|
#define FSR
|
3 |
|
|
|
4 |
|
|
#include "Muon.h"
|
5 |
|
|
#include "Array.h"
|
6 |
|
|
#include "PFCandidate.h"
|
7 |
|
|
|
8 |
khahn |
1.2 |
#include "ParseArgs.h"
|
9 |
dkralph |
1.5 |
#include "EventData.h"
|
10 |
khahn |
1.3 |
#include "SimpleLepton.h"
|
11 |
khahn |
1.2 |
|
12 |
khahn |
1.3 |
#include "TLorentzVector.h"
|
13 |
dkralph |
1.5 |
using namespace std;
|
14 |
|
|
using namespace mithep;
|
15 |
khahn |
1.3 |
|
16 |
dkralph |
1.6 |
pair<TLorentzVector,int> findFsrPhoton( ControlFlags & ,
|
17 |
|
|
EventData &ret,
|
18 |
|
|
const ChargedParticle *,
|
19 |
|
|
const int,
|
20 |
|
|
vector<SimpleLepton> &,
|
21 |
|
|
const Array<PFCandidate> *,
|
22 |
|
|
const Array<Electron> *,
|
23 |
|
|
TLorentzVector *);
|
24 |
|
|
|
25 |
|
|
void addPhotonToEventData(EventData &ret, TLorentzVector &pvec);
|
26 |
khahn |
1.1 |
|
27 |
|
|
#endif
|