Program Listing for File PcaRegulationArtist.hpp¶
↰ Return to documentation for file (include/dish2/viz/artists/PcaRegulationArtist.hpp)
#pragma once
#ifndef DISH2_VIZ_ARTISTS_PCAREGULATIONARTIST_HPP_INCLUDE
#define DISH2_VIZ_ARTISTS_PCAREGULATIONARTIST_HPP_INCLUDE
#include <string_view>
#include "../border_colormaps/KinGroupIDBorderGrayColorMap.hpp"
#include "../fill_colormaps/IsAliveColorMap.hpp"
#include "../fill_colormaps/PcaRegulationColorMap.hpp"
#include "../getters/CardiCoordGetter.hpp"
#include "../getters/IsAliveGetter.hpp"
#include "../getters/KinGroupIDGetter.hpp"
#include "../renderers/CardinalFillRenderer.hpp"
#include "../renderers/CellBorderRenderer.hpp"
#include "../renderers/CellFillRenderer.hpp"
#include "Artist.hpp"
namespace dish2 {
namespace internal::pca_regulation_artist {
template<
typename Spec,
typename CardiCoordGetter,
typename IsAliveGetter,
typename KinGroupIDGetter
>
using parent_t = dish2::Artist<
dish2::CardinalFillRenderer<
dish2::PcaRegulationColorMap< Spec >,
CardiCoordGetter
>,
dish2::CellFillRenderer<
dish2::IsAliveColorMap,
IsAliveGetter
>,
dish2::CellBorderRenderer<
dish2::KinGroupIDBorderGrayColorMap,
KinGroupIDGetter
>
>;
} // namespace internal::pca_regulation_artist
template<
typename Spec,
typename CardiCoordGetter=dish2::CardiCoordGetter<Spec>,
typename IsAliveGetter=dish2::IsAliveGetter<Spec>,
typename KinGroupIDGetter=dish2::KinGroupIDGetter<Spec>
>
class PcaRegulationArtist
: public internal::pca_regulation_artist::parent_t<
Spec,
CardiCoordGetter,
IsAliveGetter,
KinGroupIDGetter
> {
using parent_t = internal::pca_regulation_artist::parent_t<
Spec,
CardiCoordGetter,
IsAliveGetter,
KinGroupIDGetter
>;
public:
// inherit constructors
using parent_t::parent_t;
static constexpr std::string_view GetName() { return "Module Regulation"; }
};
} // namespace dish2
#endif // #ifndef DISH2_VIZ_ARTISTS_PCAREGULATIONARTIST_HPP_INCLUDE