SUMO - Simulation of Urban MObility
|
Class representing a detector within the DFROUTER. More...
#include <RODFDetector.h>
Public Member Functions | |
void | addFollowingDetector (RODFDetector *det) |
void | addPriorDetector (RODFDetector *det) |
void | addRoute (RODFRouteDesc &nrd) |
void | addRoutes (RODFRouteCont *routes) |
void | addTo (const StoringVisitor &cont) const |
Adds this object to the given container. More... | |
void | buildDestinationDistribution (const RODFDetectorCon &detectors, SUMOTime startTime, SUMOTime endTime, SUMOTime stepOffset, const RODFNet &net, std::map< size_t, RandomDistributor< size_t > * > &into) const |
void | computeSplitProbabilities (const RODFNet *net, const RODFDetectorCon &detectors, const RODFDetectorFlows &flows, SUMOTime startTime, SUMOTime endTime, SUMOTime stepOffset) |
const std::vector < RODFDetector * > & | getFollowerDetectors () const |
const std::string & | getID () const |
Returns the id. More... | |
const std::vector < RODFDetector * > & | getPriorDetectors () const |
const std::vector < RODFRouteDesc > & | getRouteVector () const |
const std::vector< std::map < RODFEdge *, SUMOReal > > & | getSplitProbabilities () const |
bool | hasRoutes () const |
RODFDetector (const std::string &id, const std::string &laneID, SUMOReal pos, const RODFDetectorType type) | |
Constructor. More... | |
RODFDetector (const std::string &id, const RODFDetector &f) | |
Constructor. More... | |
void | setID (const std::string &newID) |
resets the id More... | |
void | setType (RODFDetectorType type) |
~RODFDetector () | |
Destructor. More... | |
Atomar getter methods | |
const std::string & | getLaneID () const |
Returns the id of the lane this detector is placed on. More... | |
std::string | getEdgeID () const |
Returns the id of the edge this detector is placed on. More... | |
SUMOReal | getPos () const |
Returns the position at which the detector lies. More... | |
RODFDetectorType | getType () const |
Returns the type of the detector. More... | |
Writing methods | |
bool | writeEmitterDefinition (const std::string &file, const std::map< size_t, RandomDistributor< size_t > * > &dists, const RODFDetectorFlows &flows, SUMOTime startTime, SUMOTime endTime, SUMOTime stepOffset, bool includeUnusedRoutes, SUMOReal scale, bool insertionsOnly, SUMOReal defaultSpeed) const |
bool | writeRoutes (std::vector< std::string > &saved, OutputDevice &out) |
void | writeSingleSpeedTrigger (const std::string &file, const RODFDetectorFlows &flows, SUMOTime startTime, SUMOTime endTime, SUMOTime stepOffset, SUMOReal defaultSpeed) |
void | writeEndRerouterDetectors (const std::string &file) |
Protected Member Functions | |
SUMOReal | computeDistanceFactor (const RODFRouteDesc &rd) const |
int | getFlowFor (const ROEdge *edge, SUMOTime time) const |
Protected Attributes | |
std::vector< RODFDetector * > | myFollowingDetectors |
std::string | myID |
The name of the object. More... | |
std::string | myLaneID |
SUMOReal | myPosition |
std::vector< RODFDetector * > | myPriorDetectors |
std::map< std::string, RODFEdge * > | myRoute2Edge |
RODFRouteCont * | myRoutes |
std::vector< std::map < RODFEdge *, SUMOReal > > | mySplitProbabilities |
RODFDetectorType | myType |
Private Member Functions | |
RODFDetector & | operator= (const RODFDetector &src) |
Invalidated assignment operator. More... | |
RODFDetector (const RODFDetector &src) | |
Invalidated copy constructor. More... | |
Class representing a detector within the DFROUTER.
Definition at line 87 of file RODFDetector.h.
RODFDetector::RODFDetector | ( | const std::string & | id, |
const std::string & | laneID, | ||
SUMOReal | pos, | ||
const RODFDetectorType | type | ||
) |
Constructor.
This constructor is used when detectors are read from a file
[in] | id | The id of the detector |
[in] | laneID | The id of the lane the detector is placed at |
[in] | pos | The position of the detector at the lane |
[in] | type | The df-router type of the detector |
Definition at line 64 of file RODFDetector.cpp.
RODFDetector::RODFDetector | ( | const std::string & | id, |
const RODFDetector & | f | ||
) |
Constructor.
This constructor is used when detectors shall be joined
[in] | id | The id of the detector |
[in] | f | A detector from which routes shall be copied |
Definition at line 69 of file RODFDetector.cpp.
References myRoutes.
RODFDetector::~RODFDetector | ( | ) |
|
private |
Invalidated copy constructor.
void RODFDetector::addFollowingDetector | ( | RODFDetector * | det) |
Definition at line 205 of file RODFDetector.cpp.
References myFollowingDetectors.
void RODFDetector::addPriorDetector | ( | RODFDetector * | det) |
Definition at line 199 of file RODFDetector.cpp.
References myPriorDetectors.
void RODFDetector::addRoute | ( | RODFRouteDesc & | nrd) |
Definition at line 231 of file RODFDetector.cpp.
References RODFRouteCont::addRouteDesc(), and myRoutes.
void RODFDetector::addRoutes | ( | RODFRouteCont * | routes) |
Definition at line 224 of file RODFDetector.cpp.
References myRoutes.
|
inlineinherited |
Adds this object to the given container.
in,filled] | cont The container to add this item to |
Definition at line 114 of file Named.h.
References Named::StoringVisitor::add().
void RODFDetector::buildDestinationDistribution | ( | const RODFDetectorCon & | detectors, |
SUMOTime | startTime, | ||
SUMOTime | endTime, | ||
SUMOTime | stepOffset, | ||
const RODFNet & | net, | ||
std::map< size_t, RandomDistributor< size_t > * > & | into | ||
) | const |
Definition at line 149 of file RODFDetector.cpp.
References BETWEEN_DETECTOR, DISCARDED_DETECTOR, RODFRouteCont::get(), RODFDetectorCon::getAnyDetectorForEdge(), getSplitProbabilities(), RODFNet::hasDetector(), Named::myID, myRoutes, myType, SUMOReal, and WRITE_ERROR.
Referenced by RODFDetectorCon::writeEmitters().
|
protected |
Definition at line 90 of file RODFDetector.cpp.
References RODFRouteDesc::edges2Pass, and SUMOReal.
void RODFDetector::computeSplitProbabilities | ( | const RODFNet * | net, |
const RODFDetectorCon & | detectors, | ||
const RODFDetectorFlows & | flows, | ||
SUMOTime | startTime, | ||
SUMOTime | endTime, | ||
SUMOTime | stepOffset | ||
) |
Definition at line 101 of file RODFDetector.cpp.
References RODFRouteDesc::edges2Pass, RODFRouteCont::get(), RODFDetectorCon::getAggFlowFor(), RODFNet::hasDetector(), myRoute2Edge, myRoutes, mySplitProbabilities, RODFRouteDesc::routename, and SUMOReal.
|
inline |
Returns the id of the edge this detector is placed on.
Definition at line 132 of file RODFDetector.h.
References myLaneID.
Referenced by RODFDetectorCon::writeEmitters(), and RODFDetectorCon::writeSpeedTrigger().
const std::vector< RODFDetector * > & RODFDetector::getFollowerDetectors | ( | ) | const |
Definition at line 217 of file RODFDetector.cpp.
References myFollowingDetectors.
Referenced by RODFDetectorCon::guessEmptyFlows().
|
inlineinherited |
Returns the id.
Definition at line 60 of file Named.h.
References Named::myID.
Referenced by NIImporter_SUMO::_loadNetwork(), Named::StoringVisitor::add(), MSDetectorControl::add(), RORouteDef::addAlternative(), MSNet::addBusStop(), NBLoadedSUMOTLDef::addConnection(), NLHandler::addConnection(), RODFDetectorCon::addDetector(), RONet::addEdge(), ROJTREdge::addFollowerProbability(), MSTLLogicControl::TLSLogicVariants::addLogic(), RONet::addNode(), NIImporter_SUMO::addPhase(), RONet::addRouteDef(), NBDistrict::addSink(), NBDistrict::addSource(), NBTrafficLightLogic::addStep(), MSRouteHandler::addStop(), NIXMLTrafficLightsHandler::addTlConnection(), NIVissimDisturbance::addToNode(), MSVehicle::addTraciStop(), GUITrafficLightLogicWrapper::begin2TrackPhases(), MSPerson::MSPersonStage_Driving::beginEventOutput(), MSPerson::MSPersonStage_Waiting::beginEventOutput(), NIVisumTL::build(), RODFNet::buildApproachList(), MS_E2_ZS_CollectorOverLanes::buildCollector(), NIImporter_VISUM::buildDistrictNode(), NIVissimConnection::buildEdgeConnections(), RODFNet::buildEdgeFlowMap(), NBEdge::buildInnerEdges(), NGEdge::buildNBEdge(), NIVissimEdge::buildNBEdge(), NBRampsComputer::buildOffRamp(), NBRampsComputer::buildOnRamp(), MSSimpleTrafficLightLogic::changeStepAndDuration(), NBEdge::checkGeometry(), MSVehicleTransfer::checkInsertions(), ODDistrictHandler::closeDistrict(), NLHandler::closeEdge(), RORouteHandler::closeRouteDistribution(), RORouteHandler::closeVehicle(), NBTrafficLightDefinition::collectAllLinks(), NBTrafficLightDefinition::collectEdges(), ROJTRRouter::compute(), NBTrafficLightDefinition::compute(), NBNode::computeInternalLaneShape(), NBEdge::computeLaneShapes(), NBNode::computeLogic(), NBNode::computeNodeShape(), RODFNet::computeRoutesFor(), NBTrafficLightLogicCont::computeSingleLogic(), NBTurningDirectionsComputer::computeTurnDirectionsForNode(), NGNet::connect(), NBEdge::connections_sorter(), MSAbstractLaneChangeModel::continueLaneChangeManeuver(), NLDetectorBuilder::convUncontE2PosLength(), GUINet::createTLWrapper(), MSLane::detectCollisions(), NIVissimDistrictConnection::dict_BuildDistricts(), MSPerson::MSPersonStage_Driving::endEventOutput(), MSPerson::MSPersonStage_Waiting::endEventOutput(), MSE3Collector::enter(), MSCalibrator::execute(), Command_SaveTLSState::execute(), Command_SaveTLSSwitchStates::execute(), Command_SaveTLSSwitches::execute(), MSVTypeProbe::execute(), MSVehicle::executeMove(), MSLane::executeMovements(), NBNodeCont::extract(), NBTrafficLightLogicCont::extract(), NBEdgeCont::extract(), RODFDetectorCon::getAggFlowFor(), RODFDetectorCon::getAnyDetectorForEdge(), MSNet::getBusStopID(), RODFNet::getDetectorEdge(), MS_E2_ZS_CollectorOverLanes::getLanePredeccessorLanes(), AGStreet::getName(), NIImporter_VISUM::getNamedEdgeContinuating(), GUITrafficLightLogicWrapper::getPopUpMenu(), NLTriggerBuilder::getPosition(), NLDetectorBuilder::getPositionChecking(), NBNode::getPossiblySplittedIncoming(), NBNode::getPossiblySplittedOutgoing(), NIImporter_VISUM::getReversedContinuating(), RODFDetectorCon::guessEmptyFlows(), GUITLLogicPhasesTrackerWindow::GUITLLogicPhasesTrackerWindow(), NBEdgeCont::ignoreFilterMatch(), MSActuatedTrafficLightLogic::init(), MSAgentbasedTrafficLightLogic::init(), NIImporter_SUMO::initTrafficLightLogic(), NIXMLTrafficLightsHandler::initTrafficLightLogic(), NBDistrictCont::insert(), NBTrafficLightLogicCont::insert(), NBNodeCont::insert(), NBEdgeCont::insert(), NBNode::invalidateTLS(), MSTLLogicControl::isActive(), RODFNet::isDestination(), RODFNet::isFalseSource(), RODFNet::isSource(), NBEdgeCont::joinSameNodeConnectingEdges(), MSE3Collector::leave(), NIImporter_OpenDrive::loadNetwork(), NBRampsComputer::moveRampRight(), MSPerson::MSPersonStage_Waiting::MSPersonStage_Waiting(), MSVehicle::MSVehicle(), NBOwnTLDef::myCompute(), NBLoadedTLDef::myCompute(), NIXMLTrafficLightsHandler::myEndElement(), NIXMLEdgesHandler::myEndElement(), NIImporter_SUMO::myEndElement(), NIXMLConnectionsHandler::myStartElement(), MSLaneSpeedTrigger::myStartElement(), MSTriggeredRerouter::myStartElement(), NBConnection::NBConnection(), NBRequest::NBRequest(), MSDevice_Example::notifyEnter(), MSDevice_Tripinfo::notifyEnter(), MSCalibrator::VehicleRemover::notifyEnter(), MSDevice_Person::notifyLeave(), MSDevice_Example::notifyLeave(), MSDevice_Tripinfo::notifyLeave(), MSDevice_Example::notifyMove(), GUIViewTraffic::onGamingClick(), RORouteHandler::openRoute(), Named::ComparatorIdLess::operator()(), NBTurningDirectionsComputer::combination_by_angle_sorter::operator()(), RODFNet::idComp::operator()(), NBOwnTLDef::edge_by_incoming_priority_sorter::operator()(), NBNetBuilder::by_id_sorter::operator()(), NBContHelper::same_connection_edge_sorter::operator()(), NBNode::nodes_by_id_sorter::operator()(), MSEdge::by_id_sorter::operator()(), NIImporter_VISUM::parse_EdgePolys(), NIImporter_VISUM::parse_Lanes(), NIImporter_VISUM::parse_LanesConnections(), NIImporter_VISUM::parse_Turns(), NIImporter_VISUM::parse_TurnsToSignalGroups(), NIXMLConnectionsHandler::parseDeprecatedLaneDefinition(), NIXMLConnectionsHandler::parseLaneBound(), NBLoadedTLDef::SignalGroup::patchTYellow(), AGStreet::print(), TraCIServerAPI_TLS::processGet(), TraCIServerAPI_Lane::processGet(), TraCIServerAPI_InductionLoop::processGet(), TraCIServerAPI_Vehicle::processGet(), TraCIServerAPI_Vehicle::processSet(), NWWriter_SUMO::prohibitionConnection(), NBEdgeCont::recheckPostProcessConnections(), NBLoadedTLDef::SignalGroup::remapIncoming(), NBLoadedTLDef::SignalGroup::remapOutgoing(), NBLoadedSUMOTLDef::removeConnection(), NBNode::removeSelfLoops(), NBEdgeCont::removeUnwishedEdges(), NBNodeCont::removeUnwishedNodes(), NBNodeCont::rename(), NBEdgeCont::rename(), NBConnection::replaceFrom(), MSBaseVehicle::replaceRouteEdges(), NBConnection::replaceTo(), NIImporter_DlrNavteq::TrafficlightsHandler::report(), NIXMLTrafficLightsHandler::retrieveLaneIndex(), RODFNet::revalidateFlows(), PCPolyContainer::save(), RONet::saveAndRemoveRoutesUntil(), MSBaseVehicle::saveState(), NBNodeCont::setAsTLControlled(), NBEdge::setControllingTLInformation(), NIXMLEdgesHandler::setNodes(), NBOwnTLDef::setTLControllingInformation(), NBLoadedSUMOTLDef::setTLControllingInformation(), NBLoadedTLDef::setTLControllingInformation(), NBEdgeCont::splitAt(), GUITrafficLightLogicWrapper::switchTLSLogic(), NIXMLConnectionsHandler::validateLaneInfo(), TraCIServerAPI_Vehicle::vtdMap_matchingEdgeLane(), TraCIServerAPI_Vehicle::vtdMap_matchingRoutePosition(), MSEmissionExport::write(), MSFCDExport::write(), MSInstantInductLoop::write(), NBSign::writeAsPOI(), NWWriter_SUMO::writeConnection(), NWWriter_SUMO::writeDistrict(), MSFullExport::writeEdge(), MSXMLRawOut::writeEdge(), NWWriter_SUMO::writeEdge(), MSMeanData::writeEdge(), NWWriter_XML::writeEdgesAndConnections(), writeEmitterDefinition(), RODFDetectorCon::writeEmitterPOIs(), RODFDetectorCon::writeEmitters(), RODFDetectorCon::writeEndRerouterDetectors(), NWWriter_SUMO::writeInternalConnections(), NWWriter_SUMO::writeJunction(), MSQueueExport::writeLane(), MSFullExport::writeLane(), NWWriter_DlrNavteq::writeLinksUnsplitted(), NWWriter_OpenDrive::writeNetwork(), NWWriter_XML::writeNodes(), NWWriter_DlrNavteq::writeNodesUnsplitted(), NWWriter_SUMO::writeRoundabout(), RODFDetectorCon::writeSpeedTrigger(), NWWriter_DlrNavteq::writeTrafficSignals(), MSInductLoop::writeTypedXMLOutput(), RODFDetectorCon::writeValidationDetectors(), MSFullExport::writeVehicles(), MSRouteProbe::writeXMLOutput(), and MSE2Collector::writeXMLOutput().
|
inline |
Returns the id of the lane this detector is placed on.
Definition at line 124 of file RODFDetector.h.
References myLaneID.
Referenced by RODFDetectorCon::addDetector(), RODFNet::getDetectorEdge(), RODFDetectorCon::writeEmitters(), RODFDetectorCon::writeEndRerouterDetectors(), RODFDetectorCon::writeSpeedTrigger(), and RODFDetectorCon::writeValidationDetectors().
|
inline |
Returns the position at which the detector lies.
Definition at line 140 of file RODFDetector.h.
References myPosition.
Referenced by RODFNet::buildEdgeFlowMap(), RODFNet::getAbsPos(), RODFNet::mesoJoin(), RODFDetectorCon::writeEmitters(), and RODFDetectorCon::writeValidationDetectors().
const std::vector< RODFDetector * > & RODFDetector::getPriorDetectors | ( | ) | const |
Definition at line 211 of file RODFDetector.cpp.
References myPriorDetectors.
Referenced by RODFDetectorCon::guessEmptyFlows().
const std::vector< RODFRouteDesc > & RODFDetector::getRouteVector | ( | ) | const |
Definition at line 193 of file RODFDetector.cpp.
References RODFRouteCont::get(), and myRoutes.
Referenced by RODFNet::buildDetectorDependencies().
|
inline |
Definition at line 193 of file RODFDetector.h.
References mySplitProbabilities.
Referenced by buildDestinationDistribution().
|
inline |
Returns the type of the detector.
Definition at line 149 of file RODFDetector.h.
References myType.
Referenced by RODFNet::buildRoutes(), RODFNet::hasInBetweenDetectorsOnly(), RODFNet::hasSourceDetector(), RODFNet::isFalseSource(), writeEmitterDefinition(), RODFDetectorCon::writeEmitters(), RODFDetectorCon::writeEndRerouterDetectors(), RODFDetectorCon::writeSpeedTrigger(), and RODFDetectorCon::writeValidationDetectors().
bool RODFDetector::hasRoutes | ( | ) | const |
Definition at line 240 of file RODFDetector.cpp.
References RODFRouteCont::get(), and myRoutes.
Referenced by RODFNet::buildDetectorDependencies().
|
private |
Invalidated assignment operator.
|
inlineinherited |
resets the id
[in] | newID | The new id of this object |
Definition at line 68 of file Named.h.
References Named::myID.
Referenced by NBNodeCont::rename(), and NBEdgeCont::rename().
void RODFDetector::setType | ( | RODFDetectorType | type) |
Definition at line 84 of file RODFDetector.cpp.
References myType.
bool RODFDetector::writeEmitterDefinition | ( | const std::string & | file, |
const std::map< size_t, RandomDistributor< size_t > * > & | dists, | ||
const RODFDetectorFlows & | flows, | ||
SUMOTime | startTime, | ||
SUMOTime | endTime, | ||
SUMOTime | stepOffset, | ||
bool | includeUnusedRoutes, | ||
SUMOReal | scale, | ||
bool | insertionsOnly, | ||
SUMOReal | defaultSpeed | ||
) | const |
Definition at line 246 of file RODFDetector.cpp.
References TplConvert::_2int(), TplConvert::_2SUMOReal(), OutputDevice::close(), OutputDevice::closeTag(), RODFRouteCont::get(), RandomDistributor< T >::get(), OutputDevice::getDevice(), RODFDetectorFlows::getFlowDefs(), Named::getID(), OptionsCont::getOptions(), RandomDistributor< T >::getOverallProb(), OptionsCont::getString(), getType(), OptionsCont::isSet(), RODFDetectorFlows::knows(), Named::myID, myLaneID, myPosition, myRoutes, OutputDevice::openTag(), SOURCE_DETECTOR, SUMO_ATTR_ARRIVALLANE, SUMO_ATTR_ARRIVALPOS, SUMO_ATTR_ARRIVALSPEED, SUMO_ATTR_DEPART, SUMO_ATTR_DEPARTLANE, SUMO_ATTR_DEPARTPOS, SUMO_ATTR_DEPARTSPEED, SUMO_ATTR_ID, SUMO_ATTR_PROB, SUMO_ATTR_REFID, SUMO_ATTR_ROUTE, SUMO_TAG_ROUTE, SUMO_TAG_ROUTE_DISTRIBUTION, SUMO_TAG_VEHICLE, SUMOReal, time2string(), toString(), WRITE_ERROR, OutputDevice::writeAttr(), OutputDevice::writeNonEmptyAttr(), and OutputDevice::writeXMLHeader().
Referenced by RODFDetectorCon::writeEmitters().
void RODFDetector::writeEndRerouterDetectors | ( | const std::string & | file) |
bool RODFDetector::writeRoutes | ( | std::vector< std::string > & | saved, |
OutputDevice & | out | ||
) |
Definition at line 385 of file RODFDetector.cpp.
References myRoutes, and RODFRouteCont::save().
void RODFDetector::writeSingleSpeedTrigger | ( | const std::string & | file, |
const RODFDetectorFlows & | flows, | ||
SUMOTime | startTime, | ||
SUMOTime | endTime, | ||
SUMOTime | stepOffset, | ||
SUMOReal | defaultSpeed | ||
) |
Definition at line 395 of file RODFDetector.cpp.
References OutputDevice::close(), OutputDevice::closeTag(), OutputDevice::getDevice(), RODFDetectorFlows::getFlowDefs(), MAX2(), Named::myID, OutputDevice::openTag(), SUMO_ATTR_SPEED, SUMO_ATTR_TIME, SUMO_TAG_STEP, SUMOReal, time2string(), OutputDevice::writeAttr(), and OutputDevice::writeXMLHeader().
Referenced by RODFDetectorCon::writeSpeedTrigger().
|
protected |
Definition at line 207 of file RODFDetector.h.
Referenced by addFollowingDetector(), and getFollowerDetectors().
|
protectedinherited |
The name of the object.
Definition at line 121 of file Named.h.
Referenced by GUI_E2_ZS_CollectorOverLanes::buildCollector(), buildDestinationDistribution(), NGEdge::buildNBEdge(), NGNode::buildNBNode(), MSCalibrator::execute(), Named::getID(), NBEdge::getLaneID(), NBEdge::getLaneIDInsecure(), ROEdge::getStoredEffort(), ROEdge::getTravelTime(), MSActuatedTrafficLightLogic::init(), MSAgentbasedTrafficLightLogic::init(), MSCalibrator::init(), NBEdge::init(), MSCalibrator::myStartElement(), MSCalibrator::VehicleRemover::notifyEnter(), RORouteDef::preComputeCurrentRoute(), NBEdge::reinitNodes(), MSRoute::release(), RORouteDef::repairCurrentRoute(), Named::setID(), NBEdge::splitGeometry(), writeEmitterDefinition(), MSXMLRawOut::writeLane(), NBNode::writeLogic(), writeSingleSpeedTrigger(), MSCalibrator::writeXMLOutput(), MSE3Collector::writeXMLOutput(), and MSMeanData::writeXMLOutput().
|
protected |
Definition at line 203 of file RODFDetector.h.
Referenced by getEdgeID(), getLaneID(), and writeEmitterDefinition().
|
protected |
Definition at line 204 of file RODFDetector.h.
Referenced by getPos(), and writeEmitterDefinition().
|
protected |
Definition at line 207 of file RODFDetector.h.
Referenced by addPriorDetector(), and getPriorDetectors().
|
protected |
Definition at line 209 of file RODFDetector.h.
Referenced by computeSplitProbabilities().
|
protected |
Definition at line 206 of file RODFDetector.h.
Referenced by addRoute(), addRoutes(), buildDestinationDistribution(), computeSplitProbabilities(), getRouteVector(), hasRoutes(), RODFDetector(), writeEmitterDefinition(), writeRoutes(), and ~RODFDetector().
Definition at line 208 of file RODFDetector.h.
Referenced by computeSplitProbabilities(), and getSplitProbabilities().
|
protected |
Definition at line 205 of file RODFDetector.h.
Referenced by buildDestinationDistribution(), getType(), and setType().