| 62 | static std::map<df::reaction_product*, ProductInfo*> products; |
| 63 | |
| 64 | static ReactionInfo *find_reaction(const std::string &name) |
| 65 | { |
| 66 | auto it = reactions.find(name); |
| 67 | return (it != reactions.end()) ? &it->second : NULL; |
| 68 | } |
| 69 | |
| 70 | static bool is_add_spatter(const std::string &name) |
| 71 | { |
no test coverage detected