41 |
|
m_genjet_phi=0; |
42 |
|
m_genjet_energy=0; |
43 |
|
m_genparticles_indices.clear(); |
44 |
+ |
m_pfconstituents.clear(); |
45 |
|
}; |
46 |
|
|
47 |
|
~Jet(){ |
56 |
|
return v4; |
57 |
|
}; |
58 |
|
|
59 |
+ |
std::vector<Particle> pfconstituents() const{return m_pfconstituents;} |
60 |
+ |
|
61 |
+ |
void add_pfconstituents(Particle p){m_pfconstituents.push_back(p);} |
62 |
+ |
|
63 |
|
int nTracks() const{return m_nTracks;} |
64 |
|
float jetArea() const{return m_jetArea;} |
65 |
|
float pileup() const{return m_pileup;} |
169 |
|
|
170 |
|
std::vector<unsigned int> m_genparticles_indices; |
171 |
|
|
172 |
+ |
std::vector<Particle> m_pfconstituents; |
173 |
+ |
|
174 |
|
}; |
175 |
|
|
176 |
|
#endif |