MATSIM
Classes | Functions
Package org.matsim.core.config.groups

Classes

class  ChangeLegModeConfigGroup
 
class  ChangeModeConfigGroup
 
class  ControllerConfigGroup
 
class  CountsConfigGroup
 
class  EventsManagerConfigGroup
 
class  FacilitiesConfigGroup
 
class  GlobalConfigGroup
 
class  HouseholdsConfigGroup
 
class  LinkStatsConfigGroup
 
class  NetworkConfigGroup
 
class  PlanInheritanceConfigGroup
 
class  PlansConfigGroup
 
class  PtCountsConfigGroup
 
class  QSimConfigGroup
 
class  ReplanningConfigGroup
 
class  RoutingConfigGroup
 
class  ScenarioConfigGroup
 
class  ScoringConfigGroup
 
class  SubtourModeChoiceConfigGroup
 
class  TimeAllocationMutatorConfigGroup
 
class  TravelTimeCalculatorConfigGroup
 
class  VehiclesConfigGroup
 
class  VspExperimentalConfigGroup
 
class  ZoomEntry
 

Functions

void setSimulationPeriodInDays (final double simulationPeriodInDays)
 
double getSimulationPeriodInDays ()
 
static String getMessage (String module)
 

Detailed Description

This package contains the core config-groups that are loaded by the org.matsim.core.controler.Controler, or when calling org.matsim.core.config.Config#addCoreModules(). This means that every config-group in this package should also be added to the method mentioned above.

Function Documentation

◆ setSimulationPeriodInDays()

void org.matsim.core.config.groups.setSimulationPeriodInDays ( final double  simulationPeriodInDays)

Definition at line 123 of file ScenarioConfigGroup.java.

References org.matsim.core.config.groups.ScenarioConfigGroup.SIMULATION_PERIOD_DAYS, and org.matsim.core.config.groups.ScenarioConfigGroup.simulationPeriodInDays.

123  {
124  this.simulationPeriodInDays = simulationPeriodInDays;
125  }

◆ getSimulationPeriodInDays()

double org.matsim.core.config.groups.getSimulationPeriodInDays ( )

Definition at line 128 of file ScenarioConfigGroup.java.

References org.matsim.core.config.groups.ScenarioConfigGroup.simulationPeriodInDays.

128  {
129  return this.simulationPeriodInDays;
130  }

◆ getMessage()

static String org.matsim.core.config.groups.getMessage ( String  module)
staticprivate

Definition at line 133 of file ScenarioConfigGroup.java.

Referenced by org.matsim.core.config.groups.ScenarioConfigGroup.getParams().

133  {
134  return "The " + module + " switch is no longer operational. The file is loaded if the file name"
135  + " is different from null. If you needed this for the creation of the container, use the ScenarioBuilder in "
136  + "ScenarioUtils. Note that loading the file does not mean that it is used anywhere; such functionality needs to be "
137  + "switched on elsewhere (e.g. in qsim, in transit, ...). If this does not work for you, please let us know. kai, jun'15";
138  }