11 |
|
public: |
12 |
|
class VectorCandidate { |
13 |
|
public: |
14 |
+ |
|
15 |
|
TLorentzVector fourMomentum; |
16 |
|
std::vector<VHbbEvent::MuonInfo> muons; |
17 |
|
std::vector<VHbbEvent::ElectronInfo> electrons; |
18 |
|
std::vector<VHbbEvent::TauInfo> taus; |
19 |
+ |
std::vector<VHbbEvent::METInfo> mets; |
20 |
+ |
|
21 |
|
}; |
22 |
|
|
23 |
|
class HiggsCandidate { |
24 |
|
public: |
25 |
|
TLorentzVector fourMomentum; |
26 |
|
std::vector<VHbbEvent::SimpleJet> jets; |
27 |
+ |
float deltaTheta; |
28 |
|
public: |
29 |
|
VHbbEvent::SimpleJet& firstJet(){return jets[0];} |
30 |
|
VHbbEvent::SimpleJet& secondJet(){return jets[1];} |
31 |
< |
}; |
31 |
> |
}; |
32 |
|
|
33 |
|
|
34 |
|
public: |