Template Function Jet::Utilities::VectorConcatenation

Function Documentation

template<typename T>
inline std::vector<T> Jet::Utilities::VectorConcatenation(const std::vector<T> &v1, const std::vector<T> &v2)

Concatenates the elements in the two given vectors.

Template Parameters

T – Type of the elements in the vectors.

Parameters
  • v1 – Prefix of the concatenation.

  • v2 – Suffix of the concatenation.

Returns

Vector representing the contatentation of v1 and v2.