![]() |
SUMO - Simulation of Urban MObility
|
#include <config.h>
#include <iostream>
#include <cassert>
#include <cmath>
#include <cstdlib>
#include <algorithm>
#include <map>
#include <utils/common/ToString.h>
#include <utils/common/FileHelpers.h>
#include <utils/vehicle/DijkstraRouterTT.h>
#include <utils/common/RandHelper.h>
#include <utils/emissions/PollutantsInterface.h>
#include <utils/emissions/HelpersHarmonoise.h>
#include <utils/common/StringUtils.h>
#include <utils/common/StdDefs.h>
#include <utils/geom/GeomHelper.h>
#include <utils/iodevices/OutputDevice.h>
#include <utils/iodevices/BinaryInputDevice.h>
#include <utils/xml/SUMOSAXAttributes.h>
#include <microsim/lcmodels/MSAbstractLaneChangeModel.h>
#include <microsim/pedestrians/MSPerson.h>
#include <microsim/devices/MSDevice_Transportable.h>
#include "MSVehicleControl.h"
#include "MSVehicleTransfer.h"
#include "MSGlobals.h"
#include "MSStoppingPlace.h"
#include "MSEdgeWeightsStorage.h"
#include "MSMoveReminder.h"
#include "MSTransportableControl.h"
#include "MSLane.h"
#include "MSJunction.h"
#include "MSVehicle.h"
#include "MSEdge.h"
#include "MSVehicleType.h"
#include "MSNet.h"
#include "MSRoute.h"
#include "MSLinkCont.h"
#include "MSLeaderInfo.h"
Go to the source code of this file.
Macros | |
#define | CRLL_LOOK_AHEAD 5 |
#define | DEBUG_COND (getID() == "disabled") |
#define | DIST_TO_STOPLINE_EXPECT_PRIORITY 1.0 |
#define | STOPPING_PLACE_OFFSET 0.5 |
Definition in file MSVehicle.cpp.
#define CRLL_LOOK_AHEAD 5 |
Definition at line 97 of file MSVehicle.cpp.
Referenced by MSVehicle::planMoveInternal().
#define DEBUG_COND (getID() == "disabled") |
Definition at line 93 of file MSVehicle.cpp.
Referenced by MSVehicle::adaptToLeader(), MSVehicle::adaptToLeaders(), MSVehicle::checkRewindLinkLanes(), MSVehicle::computeAngle(), MSVehicle::enterLaneAtLaneChange(), MSVehicle::executeMove(), MSVehicle::getBackPosition(), MSVehicle::getCenterOnEdge(), MSVehicle::getLatOffset(), MSVehicle::leaveLane(), MSVehicle::planMove(), MSVehicle::planMoveInternal(), MSVehicle::processNextStop(), MSVehicle::updateBestLanes(), and MSVehicle::updateFurtherLanes().
#define DIST_TO_STOPLINE_EXPECT_PRIORITY 1.0 |
Definition at line 100 of file MSVehicle.cpp.
Referenced by MSVehicle::planMoveInternal().
#define STOPPING_PLACE_OFFSET 0.5 |
Definition at line 95 of file MSVehicle.cpp.
Referenced by MSVehicle::processNextStop().