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