ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/src/Muon.cc
Revision: 1.4
Committed: Wed Jan 25 18:45:50 2012 UTC (13 years, 3 months ago) by agilbert
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +3 -0 lines
Log Message:
Lots of updates

File Contents

# Content
1 #include "UserCode/HbbAnalysis/interface/Muon.hh"
2
3 namespace HbbAnalysis {
4 //Constructors
5 Muon::Muon(){
6 }
7
8 void Muon::Clear() {
9 Lepton::Clear();
10 trk_.Clear();
11 isoR03_.Clear();
12 isoR05_.Clear();
13 id_.Clear();
14 }
15
16 void Muon::Print() const{
17 Lepton::Print();
18 std::cout << "ISO: TRK(" << isoR03_.sumPt << ")" <<
19 "ECAL(" << isoR03_.emEt << ")" <<
20 "HCAL(" << isoR03_.hadEt << ")" << std::endl;
21 }
22
23 }