ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/VHbbAnalysis/VHbbDataFormats/interface/VHbbProxy.h
Revision: 1.1
Committed: Fri Jul 8 07:32:36 2011 UTC (13 years, 9 months ago) by tboccali
Content type: text/plain
Branch: MAIN
CVS Tags: Jul21st2011, Jul20th2011, Jul18th2011, Jul17th2011, Jul8th2011
Log Message:
split in DF and EDM parts

File Contents

# User Rev Content
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