MCPcopy Create free account
hub / github.com/PlotJuggler/PlotJuggler / transformRecipes

Method transformRecipes

pj_runtime/src/DataProcessorService.cpp:711–722  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

709}
710
711std::vector<DataProcessorService::TransformRecipe> DataProcessorService::transformRecipes() const {
712 std::vector<TransformRecipe> out;
713 out.reserve(transform_recipes_.size());
714 for (const auto& [key, recipe] : transform_recipes_) {
715 (void)key;
716 if (recipe.ephemeral) {
717 continue; // preview node — never persisted
718 }
719 out.push_back(recipe);
720 }
721 return out;
722}
723
724std::unordered_set<TopicId> DataProcessorService::ephemeralOutputTopics() const {
725 std::unordered_set<TopicId> out;

Callers 5

TESTFunction · 0.80
TESTFunction · 0.80
MainWindowMethod · 0.80
saveDataProcessorsMethod · 0.80
launchToolboxMethod · 0.80

Calls 2

reserveMethod · 0.80
sizeMethod · 0.45

Tested by 2

TESTFunction · 0.64
TESTFunction · 0.64