/// Returns a Jones faithful representation of the symmetry operation
/// characterized by the supplied matrix/column pair.
std::string SymmetryOperationSymbolParser::getNormalizedIdentifier(
    const std::pair<Kernel::IntMatrix, V3R> &data) {
  return getNormalizedIdentifier(data.first, data.second);
}
/// Returns a Jones faithful representation of the symmetry operation
/// characterized by the supplied matrix/column pair.
std::string SymmetryOperationSymbolParser::getNormalizedIdentifier(
    const MatrixVectorPair<int, V3R> &data) {
  return getNormalizedIdentifier(data.getMatrix(), data.getVector());
}