Program Listing for File nest_config.hpp

Return to documentation for file (cosm/repr/config/nest_config.hpp)

#pragma once

/*******************************************************************************
 * Includes
 ******************************************************************************/
#include <vector>

#include "rcppsw/config/base_config.hpp"
#include "rcppsw/math/vector2.hpp"
#include "rcppsw/spatial/euclidean_dist.hpp"

#include "cosm/cosm.hpp"

/*******************************************************************************
 * Namespaces
 ******************************************************************************/
namespace cosm::repr::config {

/*******************************************************************************
 * Structure Definitions
 ******************************************************************************/
struct nest_config final : public rconfig::base_config {
  rmath::vector2d center{};
  rmath::vector2d dims{};
};

} /* namespace cosm::repr::config */