1 |
#ifndef AmbiguitySolver_h
|
2 |
#define AmbiguitySolver_h
|
3 |
|
4 |
#include <memory>
|
5 |
#include <string>
|
6 |
#include <iostream>
|
7 |
|
8 |
#include "FWCore/ParameterSet/interface/ParameterSet.h"
|
9 |
|
10 |
#include "../interface/TRootElectron.h"
|
11 |
#include "../interface/TRootPhoton.h"
|
12 |
#include "../interface/TRootSuperCluster.h"
|
13 |
|
14 |
#include "TClonesArray.h"
|
15 |
|
16 |
|
17 |
class AmbiguitySolver
|
18 |
{
|
19 |
|
20 |
public:
|
21 |
AmbiguitySolver(const edm::ParameterSet& config, int verbosity);
|
22 |
~AmbiguitySolver();
|
23 |
void setVerbosity(int verbosity) {verbosity_ = verbosity; };
|
24 |
void processElectronsPhotons(TClonesArray* superClusters, TClonesArray* electrons, TClonesArray* photons);
|
25 |
|
26 |
private:
|
27 |
int verbosity_;
|
28 |
//bool doPhotonMC_;
|
29 |
|
30 |
};
|
31 |
|
32 |
#endif
|