Eclipse SUMO - Simulation of Urban MObility
MSFullExport.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2012-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 /****************************************************************************/
15 // Dumping a hugh List of Parameters available in the Simulation
16 /****************************************************************************/
17 #ifndef MSFullExport_h
18 #define MSFullExport_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 #include <config.h>
25 
26 #include <utils/common/SUMOTime.h>
27 
28 
29 // ===========================================================================
30 // class declarations
31 // ===========================================================================
32 class OutputDevice;
33 class MSEdgeControl;
34 class MSEdge;
35 class MSLane;
36 
37 
38 // ===========================================================================
39 // class definitions
40 // ===========================================================================
50 class MSFullExport {
51 public:
61  static void write(OutputDevice& of, SUMOTime timestep);
62 
63 
64 private:
66  MSFullExport(const MSFullExport&);
67 
70 
72  static void writeVehicles(OutputDevice& of);
73 
75  static void writeEdge(OutputDevice& of);
76 
78  static void writeLane(OutputDevice& of, const MSLane& lane);
79 
81  static void writeTLS(OutputDevice& of, SUMOTime timestep);
82 
83 };
84 
85 
86 #endif
87 
88 /****************************************************************************/
89 
MSFullExport::write
static void write(OutputDevice &of, SUMOTime timestep)
Dumping a hugh List of Parameters available in the Simulation.
Definition: MSFullExport.cpp:45
SUMOTime.h
MSLane
Representation of a lane in the micro simulation.
Definition: MSLane.h:83
OutputDevice
Static storage of an output device and its base (abstract) implementation.
Definition: OutputDevice.h:64
MSFullExport
Dumping a hugh List of Parameters available in the Simulation.
Definition: MSFullExport.h:50
MSFullExport::operator=
MSFullExport & operator=(const MSFullExport &)
Invalidated assignment operator.
SUMOTime
long long int SUMOTime
Definition: SUMOTime.h:35
MSFullExport::MSFullExport
MSFullExport(const MSFullExport &)
Invalidated copy constructor.
MSFullExport::writeEdge
static void writeEdge(OutputDevice &of)
Writes the XML Nodes for the edges (e.g. traveltime)
Definition: MSFullExport.cpp:86
MSFullExport::writeLane
static void writeLane(OutputDevice &of, const MSLane &lane)
Writes the XML Nodes for the lanes (e.g. emissions, occupancy)
Definition: MSFullExport.cpp:104
MSFullExport::writeTLS
static void writeTLS(OutputDevice &of, SUMOTime timestep)
Writes the XML Nodes for the traffic lights (e.g. actual state)
Definition: MSFullExport.cpp:116
MSEdge
A road/street connecting two junctions.
Definition: MSEdge.h:76
MSFullExport::writeVehicles
static void writeVehicles(OutputDevice &of)
Writes the XML Nodes for the vehicles (e.g. speed, position, emissions)
Definition: MSFullExport.cpp:58
config.h
MSEdgeControl
Stores edges and lanes, performs moving of vehicle.
Definition: MSEdgeControl.h:73