*** HepMC_Version1.24/examples/example_UsingIterators.cxx Thu Oct 9 15:44:28 2003 --- HepMC_Version1.24_Factor/examples/example_UsingIterators.cxx Tue Oct 7 17:49:45 2003 *************** *** 67,74 **** // we could do the same thing with the STL algorithm copy std::list allvertices2; ! copy( evt->vertices_begin(), evt->vertices_end(), ! back_inserter(allvertices2) ); // fill a list of all final state particles in the event, by requiring // that each particle satisfyies the IsFinalState predicate --- 67,74 ---- // we could do the same thing with the STL algorithm copy std::list allvertices2; ! std::copy( evt->vertices_begin(), evt->vertices_end(), // ANSI C++ FIX LESTER ! std::back_inserter(allvertices2) ); // ANSI C++ FIX LESTER // fill a list of all final state particles in the event, by requiring // that each particle satisfyies the IsFinalState predicate