ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/src/Muon.cc
Revision: 1.3
Committed: Tue Nov 8 21:41:47 2011 UTC (13 years, 6 months ago) by agilbert
Content type: text/plain
Branch: MAIN
Changes since 1.2: +4 -0 lines
Log Message:
Implement some basic print methods for the HbbEvent.

File Contents

# User Rev Content
1 amagnan 1.1 #include "UserCode/HbbAnalysis/interface/Muon.hh"
2    
3     namespace HbbAnalysis {
4 agilbert 1.2 //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 agilbert 1.3
16     void Muon::Print() const{
17     Lepton::Print();
18     }
19 amagnan 1.1
20     }