Eclipse SUMO - Simulation of Urban MObility
SUMOVTypeParameter.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
16 // Structure representing possible vehicle parameter
17 /****************************************************************************/
18 #ifndef SUMOVTypeParameter_h
19 #define SUMOVTypeParameter_h
20 
21 
22 // ===========================================================================
23 // included modules
24 // ===========================================================================
25 #include <config.h>
26 
27 #include <string>
28 #include <map>
30 #include <utils/common/RGBColor.h>
31 #include <utils/common/SUMOTime.h>
34 
35 // ===========================================================================
36 // class declarations
37 // ===========================================================================
38 class OutputDevice;
39 class OptionsCont;
40 
41 
42 // ===========================================================================
43 // value definitions
44 // ===========================================================================
45 const int VTYPEPARS_LENGTH_SET = 1;
46 const int VTYPEPARS_MINGAP_SET = 1 << 1;
47 const int VTYPEPARS_MAXSPEED_SET = 1 << 2;
48 const int VTYPEPARS_PROBABILITY_SET = 1 << 3;
49 const int VTYPEPARS_SPEEDFACTOR_SET = 1 << 4;
50 const int VTYPEPARS_EMISSIONCLASS_SET = 1 << 5;
51 const int VTYPEPARS_COLOR_SET = 1 << 6;
52 const int VTYPEPARS_VEHICLECLASS_SET = 1 << 7;
53 const int VTYPEPARS_WIDTH_SET = 1 << 8;
54 const int VTYPEPARS_HEIGHT_SET = 1 << 9;
55 const int VTYPEPARS_SHAPE_SET = 1 << 10;
56 const int VTYPEPARS_OSGFILE_SET = 1 << 11;
57 const int VTYPEPARS_IMGFILE_SET = 1 << 12;
58 const int VTYPEPARS_IMPATIENCE_SET = 1 << 13;
59 const int VTYPEPARS_LANE_CHANGE_MODEL_SET = 1 << 14;
60 const int VTYPEPARS_PERSON_CAPACITY = 1 << 15;
61 const int VTYPEPARS_BOARDING_DURATION = 1 << 16;
62 const int VTYPEPARS_CONTAINER_CAPACITY = 1 << 17;
63 const int VTYPEPARS_LOADING_DURATION = 1 << 18;
64 const int VTYPEPARS_CAR_FOLLOW_MODEL = 1 << 19;
65 const int VTYPEPARS_MAXSPEED_LAT_SET = 1 << 20;
66 const int VTYPEPARS_LATALIGNMENT_SET = 1 << 21;
67 const int VTYPEPARS_MINGAP_LAT_SET = 1 << 22;
68 const int VTYPEPARS_ACTIONSTEPLENGTH_SET = 1 << 23;
69 
70 const int VTYPEPARS_CARRIAGE_LENGTH_SET = 1 << 25;
71 const int VTYPEPARS_LOCOMOTIVE_LENGTH_SET = 1 << 26;
72 const int VTYPEPARS_CARRIAGE_GAP_SET = 1 << 27;
74 
75 
78 
79 // ===========================================================================
80 // struct definitions
81 // ===========================================================================
87 public:
92 
94  double length;
95 
97  double minGap;
98 
100  double maxSpeed;
101 
103  double width;
104 
106  double height;
107 
110 
113 
116 
119 
122 
124  std::string osgFile;
125 
128 
131 
132  private:
135  };
136 
141  SUMOVTypeParameter(const std::string& vtid, const SUMOVehicleClass vc = SVC_IGNORING);
142 
144  virtual ~SUMOVTypeParameter() {};
145 
150  bool wasSet(int what) const {
151  return (parametersSet & what) != 0;
152  }
153 
159  void write(OutputDevice& dev) const;
160 
166  double getCFParam(const SumoXMLAttr attr, const double defaultValue) const;
167 
173  std::string getCFParamString(const SumoXMLAttr attr, const std::string defaultValue) const;
174 
180  double getLCParam(const SumoXMLAttr attr, const double defaultValue) const;
181 
187  std::string getLCParamString(const SumoXMLAttr attr, const std::string& defaultValue) const;
188 
190  typedef std::map<SumoXMLAttr, std::string> SubParams;
191 
193  const SubParams& getLCParams() const;
194 
200  double getJMParam(const SumoXMLAttr attr, const double defaultValue) const;
201 
207  std::string getJMParamString(const SumoXMLAttr attr, const std::string defaultValue) const;
208 
209  void cacheParamRestrictions(const std::vector<std::string>& restrictionKeys);
210 
212  std::string id;
213 
215  double length;
216 
218  double minGap;
219 
221  double maxSpeed;
222 
226 
229 
232 
235 
238 
241 
243  double impatience;
244 
247 
250 
253 
256 
259 
261  double width;
262 
264  double height;
265 
268 
270  std::string osgFile;
271 
273  std::string imgFile;
275 
276 
279 
282 
285 
288 
291 
293  double maxSpeedLat;
294 
297 
299  double minGapLat;
300 
304  double carriageGap;
305 
308 
310  mutable bool saved;
311 
314 
316  std::vector<double> paramRestrictions;
317 
323  static double getDefaultAccel(const SUMOVehicleClass vc = SVC_IGNORING);
324 
330  static double getDefaultDecel(const SUMOVehicleClass vc = SVC_IGNORING);
331 
338  static double getDefaultEmergencyDecel(const SUMOVehicleClass vc, double decel, double defaultOption);
339 
345  static double getDefaultImperfection(const SUMOVehicleClass vc = SVC_IGNORING);
346 
348  static const SUMOVTypeParameter& getDefault();
349 
351  std::map<int, std::pair<SUMOTime, SUMOTime>> myManoeuverAngleTimes;
352 
362  void setManoeuverAngleTimes(const SUMOVehicleClass vclass);
363 
368  SUMOTime getEntryManoeuvreTime(const int angle) const;
369 
374  SUMOTime getExitManoeuvreTime(const int angle) const;
375 
379  std::string getManoeuverAngleTimesS() const;
380 };
381 
382 #endif
383 
384 /****************************************************************************/
385 
VTYPEPARS_LATALIGNMENT_SET
const int VTYPEPARS_LATALIGNMENT_SET
Definition: SUMOVTypeParameter.h:66
SUMOVTypeParameter::SubParams
std::map< SumoXMLAttr, std::string > SubParams
sub-model parameters
Definition: SUMOVTypeParameter.h:190
SUMOVTypeParameter::cacheParamRestrictions
void cacheParamRestrictions(const std::vector< std::string > &restrictionKeys)
Definition: SUMOVTypeParameter.cpp:566
SUMOVehicleClass
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
Definition: SUMOVehicleClass.h:133
SUMOVTypeParameter::lcParameter
SubParams lcParameter
Lane-changing parameter.
Definition: SUMOVTypeParameter.h:284
Distribution_Parameterized
Definition: Distribution_Parameterized.h:42
SUMOVTypeParameter::VClassDefaultValues::carriageLength
double carriageLength
the length of train carriages
Definition: SUMOVTypeParameter.h:127
VTYPEPARS_CARRIAGE_LENGTH_SET
const int VTYPEPARS_CARRIAGE_LENGTH_SET
Definition: SUMOVTypeParameter.h:70
SUMOVTypeParameter::getExitManoeuvreTime
SUMOTime getExitManoeuvreTime(const int angle) const
Returns the time that will be needed for the vehicle type to execute the (exit) manoeuvre (and be blo...
Definition: SUMOVTypeParameter.cpp:536
SUMOVTypeParameter::locomotiveLength
double locomotiveLength
Definition: SUMOVTypeParameter.h:303
SUMOVTypeParameter::SUMOVTypeParameter
SUMOVTypeParameter(const std::string &vtid, const SUMOVehicleClass vc=SVC_IGNORING)
Constructor.
Definition: SUMOVTypeParameter.cpp:254
SUMOVTypeParameter::length
double length
The physical vehicle length.
Definition: SUMOVTypeParameter.h:215
VTYPEPARS_MINGAP_SET
const int VTYPEPARS_MINGAP_SET
Definition: SUMOVTypeParameter.h:46
Parameterised
An upper class for objects with additional parameters.
Definition: Parameterised.h:42
SUMOTime.h
OutputDevice
Static storage of an output device and its base (abstract) implementation.
Definition: OutputDevice.h:63
SUMOVTypeParameter::actionStepLength
SUMOTime actionStepLength
The vehicle type's default actionStepLength [ms], i.e. the interval between two control actions....
Definition: SUMOVTypeParameter.h:225
SUMOVTypeParameter::VClassDefaultValues::emissionClass
SUMOEmissionClass emissionClass
The emission class of this vehicle.
Definition: SUMOVTypeParameter.h:112
LateralAlignment
LateralAlignment
Numbers representing special SUMO-XML-attribute values Information how vehicles align themselves with...
Definition: SUMOXMLDefinitions.h:1328
SUMOVTypeParameter::cfModel
SumoXMLTag cfModel
The enum-representation of the car-following model to use.
Definition: SUMOVTypeParameter.h:278
LaneChangeModel
LaneChangeModel
Definition: SUMOXMLDefinitions.h:1303
VTYPEPARS_BOARDING_DURATION
const int VTYPEPARS_BOARDING_DURATION
Definition: SUMOVTypeParameter.h:61
SUMOVTypeParameter::impatience
double impatience
The vehicle's impatience (willingness to obstruct others)
Definition: SUMOVTypeParameter.h:243
SUMOVTypeParameter::~SUMOVTypeParameter
virtual ~SUMOVTypeParameter()
virtual destructor
Definition: SUMOVTypeParameter.h:144
SUMOVTypeParameter::osgFile
std::string osgFile
3D model file for this class
Definition: SUMOVTypeParameter.h:270
VTYPEPARS_MINGAP_LAT_SET
const int VTYPEPARS_MINGAP_LAT_SET
Definition: SUMOVTypeParameter.h:67
SUMOTime
long long int SUMOTime
Definition: SUMOTime.h:34
SUMOVTypeParameter::saved
bool saved
Information whether this type was already saved (needed by routers)
Definition: SUMOVTypeParameter.h:310
SUMOEmissionClass
int SUMOEmissionClass
Definition: SUMOVehicleClass.h:231
VTYPEPARS_OSGFILE_SET
const int VTYPEPARS_OSGFILE_SET
Definition: SUMOVTypeParameter.h:56
SUMOVTypeParameter::carriageLength
double carriageLength
the length of train carriages and locomotive
Definition: SUMOVTypeParameter.h:302
VTYPEPARS_DEFAULT_EMERGENCYDECEL_DECEL
const int VTYPEPARS_DEFAULT_EMERGENCYDECEL_DECEL
Definition: SUMOVTypeParameter.h:77
SUMOVTypeParameter::myManoeuverAngleTimes
std::map< int, std::pair< SUMOTime, SUMOTime > > myManoeuverAngleTimes
Map of manoeuver angles versus the times (entry, exit) to execute the manoeuver.
Definition: SUMOVTypeParameter.h:351
SUMOVTypeParameter::shape
SUMOVehicleShape shape
This class' shape.
Definition: SUMOVTypeParameter.h:267
VTYPEPARS_PROBABILITY_SET
const int VTYPEPARS_PROBABILITY_SET
Definition: SUMOVTypeParameter.h:48
SUMOVTypeParameter::getDefaultImperfection
static double getDefaultImperfection(const SUMOVehicleClass vc=SVC_IGNORING)
Returns the default driver's imperfection (sigma or epsilon in Krauss' model) for the given vehicle c...
Definition: SUMOVTypeParameter.cpp:686
SUMOVTypeParameter::VClassDefaultValues::length
double length
The physical vehicle length.
Definition: SUMOVTypeParameter.h:94
VTYPEPARS_LOCOMOTIVE_LENGTH_SET
const int VTYPEPARS_LOCOMOTIVE_LENGTH_SET
Definition: SUMOVTypeParameter.h:71
SUMOVTypeParameter::containerCapacity
int containerCapacity
The container capacity of the vehicle.
Definition: SUMOVTypeParameter.h:249
SumoXMLTag
SumoXMLTag
Numbers representing SUMO-XML - element names.
Definition: SUMOXMLDefinitions.h:41
RGBColor.h
SUMOVTypeParameter::getLCParams
const SubParams & getLCParams() const
Returns the LC parameter.
Definition: SUMOVTypeParameter.cpp:498
VTYPEPARS_CAR_FOLLOW_MODEL
const int VTYPEPARS_CAR_FOLLOW_MODEL
Definition: SUMOVTypeParameter.h:64
SUMOVTypeParameter::onlyReferenced
bool onlyReferenced
Information whether this is a type-stub, being only referenced but not defined (needed by routers)
Definition: SUMOVTypeParameter.h:313
SUMOVTypeParameter::wasSet
bool wasSet(int what) const
Returns whether the given parameter was set.
Definition: SUMOVTypeParameter.h:150
SUMOVTypeParameter::parametersSet
int parametersSet
Information for the router which parameter were set.
Definition: SUMOVTypeParameter.h:307
VTYPEPARS_MAXSPEED_LAT_SET
const int VTYPEPARS_MAXSPEED_LAT_SET
Definition: SUMOVTypeParameter.h:65
RGBColor
Definition: RGBColor.h:39
VTYPEPARS_LANE_CHANGE_MODEL_SET
const int VTYPEPARS_LANE_CHANGE_MODEL_SET
Definition: SUMOVTypeParameter.h:59
SUMOVTypeParameter::imgFile
std::string imgFile
Image file for this class.
Definition: SUMOVTypeParameter.h:273
SUMOVTypeParameter::getLCParamString
std::string getLCParamString(const SumoXMLAttr attr, const std::string &defaultValue) const
Returns the named value from the map, or the default if it is not contained there.
Definition: SUMOVTypeParameter.cpp:488
SUMOVTypeParameter::VClassDefaultValues::containerCapacity
int containerCapacity
The container capacity of the vehicle.
Definition: SUMOVTypeParameter.h:121
SUMOVTypeParameter::height
double height
This class' height.
Definition: SUMOVTypeParameter.h:264
SUMOVTypeParameter
Structure representing possible vehicle parameter.
Definition: SUMOVTypeParameter.h:86
SUMOVTypeParameter::jmParameter
SubParams jmParameter
Junction-model parameter.
Definition: SUMOVTypeParameter.h:287
Parameterised.h
SUMOVTypeParameter::getDefaultAccel
static double getDefaultAccel(const SUMOVehicleClass vc=SVC_IGNORING)
Returns the default acceleration for the given vehicle class This needs to be a function because the ...
Definition: SUMOVTypeParameter.cpp:574
SUMOVehicleShape
SUMOVehicleShape
Definition of vehicle classes to differ between different appearences.
Definition: SUMOVehicleClass.h:50
SUMOVTypeParameter::cfParameter
SubParams cfParameter
Car-following parameter.
Definition: SUMOVTypeParameter.h:281
SUMOVTypeParameter::defaultProbability
double defaultProbability
The probability when being added to a distribution without an explicit probability.
Definition: SUMOVTypeParameter.h:228
SUMOVTypeParameter::VClassDefaultValues::maxSpeed
double maxSpeed
The vehicle type's maximum speed [m/s].
Definition: SUMOVTypeParameter.h:100
SUMOVehicleClass.h
SUMOVTypeParameter::getDefaultDecel
static double getDefaultDecel(const SUMOVehicleClass vc=SVC_IGNORING)
Returns the default deceleration for the given vehicle class This needs to be a function because the ...
Definition: SUMOVTypeParameter.cpp:610
VTYPEPARS_ACTIONSTEPLENGTH_SET
const int VTYPEPARS_ACTIONSTEPLENGTH_SET
Definition: SUMOVTypeParameter.h:68
SUMOVTypeParameter::paramRestrictions
std::vector< double > paramRestrictions
cached value of parameters which may restrict access to certain edges
Definition: SUMOVTypeParameter.h:316
SUMOVTypeParameter::VClassDefaultValues::width
double width
This class' width.
Definition: SUMOVTypeParameter.h:103
VTYPEPARS_CARRIAGE_GAP_SET
const int VTYPEPARS_CARRIAGE_GAP_SET
Definition: SUMOVTypeParameter.h:72
SUMOVTypeParameter::boardingDuration
SUMOTime boardingDuration
The time a person needs to board the vehicle.
Definition: SUMOVTypeParameter.h:252
SUMOVTypeParameter::VClassDefaultValues::minGap
double minGap
This class' free space in front of the vehicle itself.
Definition: SUMOVTypeParameter.h:97
SUMOVTypeParameter::minGap
double minGap
This class' free space in front of the vehicle itself.
Definition: SUMOVTypeParameter.h:218
SUMOVTypeParameter::getJMParamString
std::string getJMParamString(const SumoXMLAttr attr, const std::string defaultValue) const
Returns the named value from the map, or the default if it is not contained there.
Definition: SUMOVTypeParameter.cpp:514
SUMOVTypeParameter::width
double width
This class' width.
Definition: SUMOVTypeParameter.h:261
OptionsCont
A storage for options typed value containers)
Definition: OptionsCont.h:89
SUMOVTypeParameter::maxSpeedLat
double maxSpeedLat
The vehicle type's maximum lateral speed [m/s].
Definition: SUMOVTypeParameter.h:293
SUMOVTypeParameter::getCFParam
double getCFParam(const SumoXMLAttr attr, const double defaultValue) const
Returns the named value from the map, or the default if it is not contained there.
Definition: SUMOVTypeParameter.cpp:458
SUMOVTypeParameter::maxSpeed
double maxSpeed
The vehicle type's maximum speed [m/s].
Definition: SUMOVTypeParameter.h:221
SUMOVTypeParameter::getEntryManoeuvreTime
SUMOTime getEntryManoeuvreTime(const int angle) const
Returns the time that will be needed for the vehicle type to execute the (entry) manoeuvre (and be bl...
Definition: SUMOVTypeParameter.cpp:523
SUMOVTypeParameter::personCapacity
int personCapacity
The person capacity of the vehicle.
Definition: SUMOVTypeParameter.h:246
SUMOVTypeParameter::VClassDefaultValues::shape
SUMOVehicleShape shape
This class' shape.
Definition: SUMOVTypeParameter.h:109
VTYPEPARS_SPEEDFACTOR_SET
const int VTYPEPARS_SPEEDFACTOR_SET
Definition: SUMOVTypeParameter.h:49
SUMOVTypeParameter::write
void write(OutputDevice &dev) const
Writes the vtype.
Definition: SUMOVTypeParameter.cpp:348
Distribution_Parameterized.h
SUMOVTypeParameter::speedFactor
Distribution_Parameterized speedFactor
The factor by which the maximum speed may deviate from the allowed max speed on the street.
Definition: SUMOVTypeParameter.h:231
SUMOVTypeParameter::VClassDefaultValues::osgFile
std::string osgFile
3D model file for this class
Definition: SUMOVTypeParameter.h:124
VTYPEPARS_LOADING_DURATION
const int VTYPEPARS_LOADING_DURATION
Definition: SUMOVTypeParameter.h:63
SUMOVTypeParameter::VClassDefaultValues::locomotiveLength
double locomotiveLength
the length of train locomotive
Definition: SUMOVTypeParameter.h:130
VTYPEPARS_CONTAINER_CAPACITY
const int VTYPEPARS_CONTAINER_CAPACITY
Definition: SUMOVTypeParameter.h:62
SUMOVTypeParameter::carriageGap
double carriageGap
Definition: SUMOVTypeParameter.h:304
SUMOVTypeParameter::getLCParam
double getLCParam(const SumoXMLAttr attr, const double defaultValue) const
Returns the named value from the map, or the default if it is not contained there.
Definition: SUMOVTypeParameter.cpp:478
SUMOVTypeParameter::getDefaultEmergencyDecel
static double getDefaultEmergencyDecel(const SUMOVehicleClass vc, double decel, double defaultOption)
Returns the default emergency deceleration for the given vehicle class This needs to be a function be...
Definition: SUMOVTypeParameter.cpp:641
SUMOVTypeParameter::latAlignment
LateralAlignment latAlignment
The vehicles desired lateral alignment.
Definition: SUMOVTypeParameter.h:296
SUMOVTypeParameter::id
std::string id
The vehicle type's id.
Definition: SUMOVTypeParameter.h:212
SUMOVTypeParameter::VClassDefaultValues
struct for default values that depend of VClass
Definition: SUMOVTypeParameter.h:89
VTYPEPARS_DEFAULT_EMERGENCYDECEL_DEFAULT
const int VTYPEPARS_DEFAULT_EMERGENCYDECEL_DEFAULT
Definition: SUMOVTypeParameter.h:76
VTYPEPARS_PERSON_CAPACITY
const int VTYPEPARS_PERSON_CAPACITY
Definition: SUMOVTypeParameter.h:60
VTYPEPARS_HEIGHT_SET
const int VTYPEPARS_HEIGHT_SET
Definition: SUMOVTypeParameter.h:54
SUMOVTypeParameter::VClassDefaultValues::personCapacity
int personCapacity
The person capacity of the vehicle.
Definition: SUMOVTypeParameter.h:118
SUMOVTypeParameter::lcModel
LaneChangeModel lcModel
The lane-change model to use.
Definition: SUMOVTypeParameter.h:290
VTYPEPARS_IMGFILE_SET
const int VTYPEPARS_IMGFILE_SET
Definition: SUMOVTypeParameter.h:57
config.h
SUMOVTypeParameter::getCFParamString
std::string getCFParamString(const SumoXMLAttr attr, const std::string defaultValue) const
Returns the named value from the map, or the default if it is not contained there.
Definition: SUMOVTypeParameter.cpp:468
SUMOVTypeParameter::setManoeuverAngleTimes
void setManoeuverAngleTimes(const SUMOVehicleClass vclass)
Initialise the default mapping between manoeuver angle and times dependant on vehicle class.
Definition: SUMOVTypeParameter.cpp:300
SUMOVTypeParameter::loadingDuration
SUMOTime loadingDuration
The time a container needs to get loaded on the vehicle.
Definition: SUMOVTypeParameter.h:255
SUMOVTypeParameter::color
RGBColor color
The color.
Definition: SUMOVTypeParameter.h:237
VTYPEPARS_LENGTH_SET
const int VTYPEPARS_LENGTH_SET
Definition: SUMOVTypeParameter.h:45
VTYPEPARS_MANEUVER_ANGLE_TIMES_SET
const int VTYPEPARS_MANEUVER_ANGLE_TIMES_SET
Definition: SUMOVTypeParameter.h:73
SUMOVTypeParameter::emissionClass
SUMOEmissionClass emissionClass
The emission class of this vehicle.
Definition: SUMOVTypeParameter.h:234
VTYPEPARS_EMISSIONCLASS_SET
const int VTYPEPARS_EMISSIONCLASS_SET
Definition: SUMOVTypeParameter.h:50
VTYPEPARS_COLOR_SET
const int VTYPEPARS_COLOR_SET
Definition: SUMOVTypeParameter.h:51
VTYPEPARS_SHAPE_SET
const int VTYPEPARS_SHAPE_SET
Definition: SUMOVTypeParameter.h:55
SUMOVTypeParameter::VClassDefaultValues::height
double height
This class' height.
Definition: SUMOVTypeParameter.h:106
SumoXMLAttr
SumoXMLAttr
Numbers representing SUMO-XML - attributes.
Definition: SUMOXMLDefinitions.h:372
SVC_IGNORING
@ SVC_IGNORING
vehicles ignoring classes
Definition: SUMOVehicleClass.h:135
VTYPEPARS_WIDTH_SET
const int VTYPEPARS_WIDTH_SET
Definition: SUMOVTypeParameter.h:53
SUMOVTypeParameter::vehicleClass
SUMOVehicleClass vehicleClass
The vehicle's class.
Definition: SUMOVTypeParameter.h:240
VTYPEPARS_IMPATIENCE_SET
const int VTYPEPARS_IMPATIENCE_SET
Definition: SUMOVTypeParameter.h:58
SUMOVTypeParameter::getJMParam
double getJMParam(const SumoXMLAttr attr, const double defaultValue) const
Returns the named value from the map, or the default if it is not contained there.
Definition: SUMOVTypeParameter.cpp:504
SUMOVTypeParameter::VClassDefaultValues::speedFactor
Distribution_Parameterized speedFactor
The factor by which the maximum speed may deviate from the allowed max speed on the street.
Definition: SUMOVTypeParameter.h:115
VTYPEPARS_MAXSPEED_SET
const int VTYPEPARS_MAXSPEED_SET
Definition: SUMOVTypeParameter.h:47
VTYPEPARS_VEHICLECLASS_SET
const int VTYPEPARS_VEHICLECLASS_SET
Definition: SUMOVTypeParameter.h:52
SUMOVTypeParameter::getDefault
static const SUMOVTypeParameter & getDefault()
return the default parameters, this is a function due to the http://www.parashift....
Definition: SUMOVTypeParameter.cpp:702
SUMOVTypeParameter::minGapLat
double minGapLat
The vehicle type's minimum lateral gap [m].
Definition: SUMOVTypeParameter.h:299
SUMOVTypeParameter::getManoeuverAngleTimesS
std::string getManoeuverAngleTimesS() const
Returns myManoeuverAngleTimes as a string for xml output.
Definition: SUMOVTypeParameter.cpp:549
SUMOVTypeParameter::VClassDefaultValues::VClassDefaultValues
VClassDefaultValues()
default constructor
Definition: SUMOVTypeParameter.cpp:250