Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
IDataMonitor.h
Go to the documentation of this file.
1#ifndef IDATAMONITOR_H
2#define IDATAMONITOR_H
3
4#include <unordered_set>
5#include <map>
6#include <vector>
7#include "scalar.h"
8
9#include "Include.h"
10
32public:
33 virtual ~IDataMonitor() = default;
34
39 virtual std::unordered_set<BlockName> get_all_blocks() = 0;
40
46 virtual std::unordered_set<BlockName> get_blocks_list(ParameterType param_type = ParameterType::SM) = 0;
47
54 virtual std::map<LhaID, scalar_t> get_block_infos(const BlockName& block, ParameterType param_type = ParameterType::SM) = 0;
55
56
62 virtual std::vector<ParameterType> get_type_of_block(const BlockName& block) = 0;
63};
64
65
66#endif // IDATAMONITOR_H
ParameterType
Block identifier with alias support.
Definition BlockName.h:59
Interface for monitoring and retrieving information about parameter blocks.
virtual ~IDataMonitor()=default
virtual std::vector< ParameterType > get_type_of_block(const BlockName &block)=0
Retrieves the model types owning a specific block.
virtual std::unordered_set< BlockName > get_all_blocks()=0
Retrieves the names of all parameter blocks across all models.
virtual std::map< LhaID, scalar_t > get_block_infos(const BlockName &block, ParameterType param_type=ParameterType::SM)=0
Retrieves all parameter values within a block.
virtual std::unordered_set< BlockName > get_blocks_list(ParameterType param_type=ParameterType::SM)=0
Retrieves the list of blocks for a specific model type.