Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
Distribution_Parameterized.h
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2024 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
19// A distribution described by parameters such as the mean value and std-dev
20/****************************************************************************/
21#pragma once
22#include <config.h>
23
24#include <vector>
25#include <random>
26
27#include "Distribution.h"
28
29
30// ===========================================================================
31// class definitions
32// ===========================================================================
41
42public:
44 Distribution_Parameterized(const std::string& description);
45
47 Distribution_Parameterized(const std::string& id, double mean, double deviation);
48
50 Distribution_Parameterized(const std::string& id, double mean, double deviation, double min, double max);
51
54
56 void parse(const std::string& description, const bool hardFail);
57
65 double sample(SumoRNG* which = 0) const;
66
68 double getMax() const;
69
71 double getMin() const;
72
74 std::vector<double>& getParameter();
75
77 const std::vector<double>& getParameter() const;
78
80 const std::string isValid() const;
81
83 std::string toStr(std::streamsize accuracy) const;
84
86 static bool isValidDescription(const std::string& description);
87
88private:
90 std::vector<double> myParameter;
91};
double sample(SumoRNG *which=0) const
Draw a sample of the distribution.
void parse(const std::string &description, const bool hardFail)
Overwrite by parsable distribution description.
virtual ~Distribution_Parameterized()
Destructor.
double getMax() const
Returns the maximum value of this distribution.
double getMin() const
Returns the minimum value of this distribution.
std::string toStr(std::streamsize accuracy) const
Returns the string representation of this distribution.
static bool isValidDescription(const std::string &description)
validate input description
std::vector< double > & getParameter()
Returns the parameters of this distribution.
const std::string isValid() const
check whether the distribution is valid
std::vector< double > myParameter
The distribution's parameters.