IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 5a7c0f69 authored by Remy Prechelt's avatar Remy Prechelt
Browse files

Delete YAML.hpp

parent b0bca118
No related branches found
No related tags found
1 merge request!317Output infrastructure and Python analysis library.
Pipeline #2640 failed
/*
* (c) Copyright 2020 CORSIKA Project, corsika-project@lists.kit.edu
*
* This software is distributed under the terms of the GNU General Public
* Licence version 3 (GPL Version 3). See file LICENSE for a full version of
* the license.
*/
#pragma once
#include <corsika/geometry/QuantityVector.h>
namespace corsika {
template <typename TDim>
YAML::Emitter& operator<<(YAML::Emitter& out,
geometry::QuantityVector<TDim> const& vec) {
out << YAML::Flow;
out << YAML::BeginSeq << v.x << v.y << v.z << YAML::EndSeq;
return out;
}
} // namespace corsika
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