SUMO - Simulation of Urban MObility
MSSOTLPhaseTrafficLightLogic.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2010-2018 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 // The class for SOTL Phase logics
16 /****************************************************************************/
17 #ifndef MSSOTLPhaseTrafficLightLogic_h
18 #define MSSOTLPhaseTrafficLightLogic_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 #include <config.h>
25 
29 public:
40  const std::string& id, const std::string& programID,
41  const Phases& phases, int step, SUMOTime delay, const std::map<std::string, std::string>& parameters);
42 
53  const std::string& id, const std::string& programID,
54  const Phases& phases, int step, SUMOTime delay, const std::map<std::string, std::string>& parameters, MSSOTLSensors* sensors);
55 
56 protected:
57 
58  /*
59  * @brief Contains the logic to decide the phase change
60  */
61  bool canRelease();
62 };
63 
64 #endif
65 /****************************************************************************/
long long int SUMOTime
Definition: SUMOTime.h:36
A class that stores and controls tls and switching of their programs.
A self-organizing traffic light logic.
std::vector< MSPhaseDefinition * > Phases
Definition of a list of phases, being the junction logic.
MSSOTLPhaseTrafficLightLogic(MSTLLogicControl &tlcontrol, const std::string &id, const std::string &programID, const Phases &phases, int step, SUMOTime delay, const std::map< std::string, std::string > &parameters)
Constructor without sensors passed.