ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Anghel/macros/myGlobalMuon.h
Revision: 1.1
Committed: Fri Jan 29 23:17:15 2010 UTC (15 years, 3 months ago) by anghel
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Log Message:
Revision 29Jan2010

File Contents

# Content
1 #ifndef myGlobalMuon_GUARD
2 #define myGlobalMuon_GUARD
3 #include "Rtypes.h"
4 #include "TLorentzVector.h"
5 #include <vector>
6
7 class myGlobalMuon {
8 public:
9 myGlobalMuon() {}
10 myGlobalMuon(TLorentzVector &p4, double d0corr, double relIso) { p4_ = p4; d0corr_ = d0corr; relIso_ = relIso;}
11 virtual ~myGlobalMuon() {}
12 const TLorentzVector& p4() const { return p4_; }
13 double d0corr() const { return d0corr_; }
14 double relIso() const { return relIso_; }
15 protected:
16 TLorentzVector p4_;
17 double d0corr_;
18 double relIso_;
19 ClassDef(myGlobalMuon,2)
20 };
21
22 #endif