ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/src/Electron.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

# User Rev Content
1 amagnan 1.1 #include "UserCode/HbbAnalysis/interface/Electron.hh"
2    
3     namespace HbbAnalysis {
4 agilbert 1.2 //Constructors
5     Electron::Electron(){
6     }
7    
8     void Electron::Clear() {
9     Lepton::Clear();
10     sc_.Clear();
11     iso_.Clear();
12     id_.Clear();
13     }
14 amagnan 1.1
15 agilbert 1.3 void Electron::Print() const{
16     Lepton::Print();
17 agilbert 1.4 std::cout << "WP Bits: " << id_.electronIDs.find("simpleEleId85relIso")->second << "\t" << int(id_.electronIDs.find("simpleEleId85relIso")->second + 0.5) << std::endl;
18     std::cout << "SC Eta: " << sc_.eta << std::endl;
19    
20 agilbert 1.3 }
21 amagnan 1.1 }