Skip to content
Snippets Groups Projects

ISFParticleVector to ISFParticleContainer

Merged Liza Mijovic requested to merge lmijovic/athena:isf_namesp into 22.0
25 files
+ 28
51
Compare changes
  • Side-by-side
  • Inline
Files
25
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
@@ -11,6 +11,7 @@
// STL includes
#include <list>
#include <vector>
// forward declarations
namespace ISF {
@@ -21,6 +22,9 @@ namespace ISF {
/** generic ISFParticle container (not necessarily a std::list!) */
typedef std::list<ISF::ISFParticle*> ISFParticleContainer;
typedef std::list<const ISF::ISFParticle*> ConstISFParticleContainer;
/** ISFParticle vector */
typedef std::vector<ISF::ISFParticle *> ISFParticleVector;
typedef std::vector<const ISF::ISFParticle *> ConstISFParticleVector;
}
#endif // ISF_EVENT_ISFPARTICLECONTAINER_H
Loading