1 |
#ifndef PhotonAssociator_h
|
2 |
#define PhotonAssociator_h
|
3 |
|
4 |
#include <memory>
|
5 |
#include <string>
|
6 |
#include <iostream>
|
7 |
#include <map>
|
8 |
|
9 |
#include "../interface/TRootPhoton.h"
|
10 |
#include "../interface/TRootSuperCluster.h"
|
11 |
|
12 |
#include "TClonesArray.h"
|
13 |
|
14 |
|
15 |
class PhotonAssociator
|
16 |
{
|
17 |
|
18 |
public:
|
19 |
PhotonAssociator();
|
20 |
~PhotonAssociator();
|
21 |
void setVerbosity(int verbosity) {verbosity_ = verbosity; };
|
22 |
void associateSuperCluster(TClonesArray* photons, TClonesArray* superClusters);
|
23 |
void printPhotons(TClonesArray* photons, TClonesArray* superClusters, Int_t type);
|
24 |
void fullPrintPhotons(TClonesArray* photons, TClonesArray* superClusters, TClonesArray* basicClusters, Int_t type);
|
25 |
|
26 |
private:
|
27 |
int verbosity_;
|
28 |
|
29 |
};
|
30 |
|
31 |
#endif
|