1 |
#ifndef VHBBPROXY_H
|
2 |
#define VHBBPROXY_H
|
3 |
|
4 |
#include "VHbbAnalysis/VHbbDataFormats/interface/VHbbEvent.h"
|
5 |
#include "VHbbAnalysis/VHbbDataFormats/interface/VHbbEventAuxInfo.h"
|
6 |
#include "VHbbAnalysis/VHbbDataFormats/interface/VHbbCandidate.h"
|
7 |
|
8 |
class VHbbProxy {
|
9 |
|
10 |
public:
|
11 |
|
12 |
VHbbProxy(){}
|
13 |
VHbbProxy(const VHbbEvent *ev, const VHbbEventAuxInfo* aux, const std::vector<VHbbCandidate> *cand):
|
14 |
iEvent(ev),
|
15 |
iAuxInfo(aux),
|
16 |
iCandidate(cand) {}
|
17 |
|
18 |
const VHbbEvent *getVHbbEvent() { return iEvent; };
|
19 |
const VHbbEventAuxInfo *getVHbbEventAuxInfo() { return iAuxInfo; };
|
20 |
const std::vector<VHbbCandidate> *getVHbbCandidate() { return iCandidate; };
|
21 |
|
22 |
private:
|
23 |
|
24 |
const VHbbEvent *iEvent;
|
25 |
const VHbbEventAuxInfo *iAuxInfo;
|
26 |
const std::vector<VHbbCandidate> *iCandidate;
|
27 |
|
28 |
};
|
29 |
|
30 |
#endif
|