Eclipse SUMO - Simulation of Urban MObility
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 
42 public:
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  std::vector<double>& getParameter();
72 
74  const std::vector<double>& getParameter() const;
75 
77  bool isValid(std::string& error);
78 
80  std::string toStr(std::streamsize accuracy) const;
81 
83  static bool isValidDescription(const std::string& description);
84 
85 private:
87  std::vector<double> myParameter;
88 };
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.
Distribution_Parameterized(const std::string &description)
Constructor for any temporary distribution parsed directly from the description.
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.
bool isValid(std::string &error)
check whether the distribution is valid
std::vector< double > myParameter
The distribution's parameters.