Config:ContextConfig

From SUMOwiki
Revision as of 14:53, 13 February 2008 by Icouckuy (talk | contribs)
Jump to navigationJump to search

ContextConfig

OutputDirectory

TODO OutputDirectory DOC

<!--TODO OutputDirectory DOC-->
<[[Config:OutputDirectory|OutputDirectory]]>output</[[Config:OutputDirectory|OutputDirectory]]>

Custom Options

Available options:

<!--save model to disk as Matlab .mat file-->
<Option key="saveModels" value="true"/>

PlotOptions

TODO PlotOptions DOC

<!--TODO PlotOptions DOC-->
<[[Config:PlotOptions|PlotOptions]]>

   <!-- do any plot at all ? -->
   <Option key="plotModels" value="true"/>

   <!-- contours, only available for 2 dimensions -->
   <!-- plot contours on same plot as model -->
   <Option key="withContour" value="true"/>
   <!-- plot separate contour of model, never saved to disk -->
   <Option key="plotContour" value="false"/>

   <!--
   <Option key="plotPoints" value="true"/>
   <Option key="lighting" value="false"/>
   <Option key="slices" value="3"/>
   <Option key="grayScale" value="false"/>
   <Option key="meshSize" value="41"/>
   <Option key="fontSize" value="14"/>
   <Option key="logScale" value="false"/>
   -->

   <!-- Save all plots to disk -->
   <Option key="saveModelPlots" value="true"/>
   <!-- Output file format of the plot: png (default),eps,bmp,jpg,... -->
   <Option key="outputType" value="png"/>
</[[Config:PlotOptions|PlotOptions]]>

Path

Empty by default, but a user can add directories to the path as he wishes.

<!--Empty by default, but a user can add directories to the path as he wishes.-->
<[[Config:Path|Path]]>
   <!--AddPath recurse="true">/home/myPath</[[Config:AddPath|AddPath]]-->
</[[Config:Path|Path]]>

Profiling

Configuration options for the profiler: Within a profiler block, one or more <Output type="type"/> specifiers should be present. Possible types are toFile, toPanel, Docked, and toImage. When using the toPanel, Docked, and toImage output specifiers, an extra `chartType' option can be used. See the types present in the Docked view to see which types are available.

<!--Configuration options for the profiler: Within a profiler block, one or more <[[Config:Output|Output]] type="[[Output#type|type]]"/> specifiers should be present. Possible types are toFile, toPanel, Docked, and toImage. When using the toPanel, Docked, and toImage output specifiers, an extra `chartType' option can be used. See the types present in the Docked view to see which types are available.-->
<[[Config:Profiling|Profiling]]>
   <!-- Only enable if you are using levelplots -->
   <[[Config:Profiler|Profiler]] name="LevelPlotProfiler.*" enabled="false">
      <[[Config:Output|Output]] type="[[Output#Docked|Docked]]">
         <Option key="chartType" value="level"/>
      </[[Config:Output|Output]]>
      <[[Config:Output|Output]] type="[[Output#toImage|toImage]]">
         <Option key="chartType" value="level"/>
      </[[Config:Output|Output]]>
      <[[Config:Output|Output]] type="[[Output#toFile|toFile]]"/>
   </[[Config:Profiler|Profiler]]>

   <!--
   You can restrict the available profilers to use by specifying a wildcard
   to disable the docked output if you dont want a window containing all the profilers.
   To select all profilers, simply put ".*"
   -->
   <[[Config:Profiler|Profiler]] name=".*Measure.*|.*BestModel.*|.*ElapsedTime.*|.*Resources.*" enabled="true">
      <[[Config:Output|Output]] type="[[Output#Docked|Docked]]"/>
      <[[Config:Output|Output]] type="[[Output#toImage|toImage]]"/>
      <[[Config:Output|Output]] type="[[Output#toFile|toFile]]"/>
   </[[Config:Profiler|Profiler]]>
            
</[[Config:Profiling|Profiling]]>