Editing Python Scheduling Application

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 30: Line 30:
  
 
Reading the section on design as well may help understand this section.
 
Reading the section on design as well may help understand this section.
=== Parameters ===
 
The general parameter setup is explained in [[Configuration Files For Python]]  and another example of its uses is discussed in [[Smart Terminal Parameter Examples]]  There are additional features of the parameter setup here:
 
  
* The additional use of a global dict is different in this application.
+
The general parameter setup is explained in [[Configuration Files For Python]]  and another example of its uses is discussed in [[Smart Terminal Parameter Examples]]  The additional use of a global dict is different in this application.
* Most of the parameters are set up almost as soon as the application starts, but a second set of parameters is run from the processing_helper ( if any ) to set up additional parameters.  This setup is delayed so that it can reference objects that have not be created until near the end of the application initialization. It is in the method:  init_from_helper( ).
 
 
 
=== A Dictionary ===
 
  
 
Each scheduling activity may have its own ( but sharable ) set of parameters for that activity.  These are stored in a dictionary, which is in turn stored in a master dictionary of all activity parameters.  It is set up in parameters.py and is called: AppGlobal.parameter_dicts.  When an event related function is called it is passed the name of the dictionary ( a string ) in AppGlobal.parameter_dicts and it gets out the correct dictionary it needs as in:
 
Each scheduling activity may have its own ( but sharable ) set of parameters for that activity.  These are stored in a dictionary, which is in turn stored in a master dictionary of all activity parameters.  It is set up in parameters.py and is called: AppGlobal.parameter_dicts.  When an event related function is called it is passed the name of the dictionary ( a string ) in AppGlobal.parameter_dicts and it gets out the correct dictionary it needs as in:

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)