38 |
|
m_JEC_factor_raw=0; |
39 |
|
m_genjet_index=-1; |
40 |
|
m_genparticles_indices.clear(); |
41 |
< |
m_pfconstituents.clear(); |
41 |
> |
m_pfconstituents_indices.clear(); |
42 |
|
m_genjet=NULL; |
43 |
|
}; |
44 |
|
|
60 |
|
} |
61 |
|
}; |
62 |
|
|
63 |
< |
std::vector<Particle> pfconstituents() const{return m_pfconstituents;} |
63 |
> |
std::vector<unsigned int> pfconstituents_indices() const{return m_pfconstituents_indices;} |
64 |
|
|
65 |
< |
void add_pfconstituents(Particle p){m_pfconstituents.push_back(p);} |
65 |
> |
void add_pfconstituents_index(int ind){m_pfconstituents_indices.push_back(ind);} |
66 |
|
|
67 |
|
int nTracks() const{return m_nTracks;} |
68 |
|
float jetArea() const{return m_jetArea;} |
171 |
|
float m_JEC_uncertainty; |
172 |
|
float m_JEC_factor_raw; |
173 |
|
int m_genjet_index; |
174 |
< |
Particle* m_genjet; //! |
174 |
> |
Particle* m_genjet; |
175 |
|
|
176 |
|
std::vector<unsigned int> m_genparticles_indices; |
177 |
|
|
178 |
< |
std::vector<Particle> m_pfconstituents; |
178 |
> |
std::vector<unsigned int> m_pfconstituents_indices; |
179 |
> |
|
180 |
|
|
181 |
|
}; |
182 |
|
|