Skip to content
Snippets Groups Projects
Commit 5854346f authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'ewelina-master-patch-39217' into 'master'

fix typo in  FourLeptonMassFilter.cxx

See merge request !58785
parents f5ba4c23 be9862c7
4 merge requests!59674InDetPerformanceMonitoring with LumiBlock selection,!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!58990Draft:Fixing bug in FTF config when running with Reco_tf,!58785fix typo in FourLeptonMassFilter.cxx
......@@ -37,7 +37,7 @@ StatusCode FourLeptonMassFilter::filterEvent() {
for (itr = events()->begin(); itr!=events()->end(); ++itr) {
const HepMC::GenEvent* genEvt = *itr;
auto genEvt_particles_begin = HepMC::begin(*genEvt);
auto genEvt_particles_end = HepMC::begin(*genEvt);
auto genEvt_particles_end = HepMC::end(*genEvt);
for (auto pitr1 = genEvt_particles_begin; pitr1 != genEvt_particles_end; ++pitr1) {
if ((*pitr1)->status() != 1) continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment