# | Line 12 | Line 12 | namespace HbbAnalysis { | |
---|---|---|
12 | constituents_.clear(); | |
13 | } | |
14 | ||
15 | + | void GenJet::Print() const { |
16 | + | Candidate::Print(); |
17 | + | std::cout << "Flavour: " << genJetVars_.flavour << |
18 | + | "nConst: " << genJetVars_.nConstituents << |
19 | + | std::endl; |
20 | + | for (unsigned i = 0; i < constituents_.size(); ++i) { |
21 | + | std::cout << "Constituent " << i << ":" << std::endl; |
22 | + | constituents_[i].Print(); |
23 | + | } |
24 | + | } |
25 | } |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |