MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / ParamEntry

Method ParamEntry

src/openms/source/DATASTRUCTURES/Param.cpp:18–29  ·  view source on GitHub ↗

ParamEntry

Source from the content-addressed store, hash-verified

16
17 //********************************* ParamEntry **************************************
18 Param::ParamEntry::ParamEntry() :
19 name(),
20 description(),
21 value(),
22 tags(),
23 min_float(-std::numeric_limits<double>::max()),
24 max_float(std::numeric_limits<double>::max()),
25 min_int(-std::numeric_limits<int>::max()),
26 max_int(std::numeric_limits<int>::max()),
27 valid_strings()
28 {
29 }
30
31 Param::ParamEntry::ParamEntry(const std::string& n, const ParamValue& v, const std::string& d, const std::vector<std::string>& t) :
32 name(n),

Callers

nothing calls this directly

Calls 3

sizeMethod · 0.45
insertMethod · 0.45
findMethod · 0.45

Tested by

no test coverage detected