Revision: | 1.5 |
Committed: | Mon Feb 27 08:54:33 2012 UTC (13 years, 2 months ago) by agilbert |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | HEAD |
Changes since 1.4: | +1 -1 lines |
Error occurred while calculating annotation data. | |
Log Message: | lots of updates |
# | Content |
---|---|
1 | #include "UserCode/HbbAnalysis/interface/Candidate.hh" |
2 | |
3 | namespace HbbAnalysis { |
4 | |
5 | //Constructors |
6 | Candidate::Candidate() { |
7 | } |
8 | |
9 | //Functions |
10 | void Candidate::Clear() { |
11 | fourVec_.Clear(); |
12 | } |
13 | |
14 | void Candidate::Print() const { |
15 | std::cout << "pT: " << Pt() << " " << " Eta: " << Eta() << " Phi: " << GetTLorentzVector().Phi() << " E:" << GetTLorentzVector().E() << std::endl; |
16 | //GetTLorentzVector().Print(); |
17 | } |
18 | } |