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 |
}
|