Skip to content
Snippets Groups Projects
Commit d5520adc authored by brusale's avatar brusale
Browse files

add collections typedefs

parent 33aaebb4
Branches
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
#define SimTrack_h
#include "Tools.h"
#include <vector>
/**
* @class SimTrack
* @brief Represents a simulated track in a particle physics event.
......@@ -76,4 +76,5 @@ private:
Vector4D momentumAtBoundary_;
};
typedef std::vector<SimTrack> SimTrackCollection;
#endif
......@@ -2,6 +2,7 @@
#define SimVertex_h
#include "Tools.h"
#include <vector>
/**
* @class SimVertex
......@@ -37,5 +38,7 @@ class SimVertex {
unsigned int event;
Vector4D theVertex;
};
};
typedef std::vector<SimVertex> SimVertexCollection;
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment