Skip to content
Snippets Groups Projects
Commit 990a909d authored by Vadim Kostyukhin's avatar Vadim Kostyukhin :angry: Committed by Graeme Stewart
Browse files

m_SVOwnership becomes mutable (VxSecVertex-00-04-04)

	* m_SVOwnership is mutable
	* Tagged as VxSecVertex-00-04-04

2014-08-15  Marcin Nowak  <Marcin.Nowak@cern.ch>
	* VxSecVertex\VxSecVertexDict.h: add #include "TrackParticle.h" for ROOT6
	* Tagged as VxSecVertex-00-04-03
parent 0928c085
No related branches found
No related tags found
No related merge requests found
...@@ -9,4 +9,8 @@ ...@@ -9,4 +9,8 @@
#include "VxSecVertex/VxSecVKalVertexInfo.h" #include "VxSecVertex/VxSecVKalVertexInfo.h"
#include "VxSecVertex/VxJetFitterVertexInfo.h" #include "VxSecVertex/VxJetFitterVertexInfo.h"
// MN: ROOT6 needs that
#include "xAODTracking/TrackParticle.h"
#endif #endif
...@@ -68,12 +68,12 @@ namespace Trk { ...@@ -68,12 +68,12 @@ namespace Trk {
/* set the list of Vertices */ /* set the list of Vertices */
void setVertices(const std::vector<xAOD::Vertex*> &); void setVertices(const std::vector<xAOD::Vertex*> &);
void getSVOwnership(bool Ownership){ m_SVOwnership=Ownership; } void getSVOwnership(bool Ownership) const { m_SVOwnership=Ownership; }
protected: protected:
std::vector<xAOD::Vertex*> m_vertices; std::vector<xAOD::Vertex*> m_vertices;
bool m_SVOwnership; mutable bool m_SVOwnership;
}; };
......
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