Changes between Version 5 and Version 6 of WorkBook/ConfigFile
- Timestamp:
- Nov 20, 2012, 12:02:42 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/ConfigFile
v5 v6 1 1 == Delphes' Configuration File == 2 2 3 The Delphes' configuration file is based on [http://www.tcl.tk Tcl scripting language]. Delphes uses [http://www.tcl.tk/man/tcl8.0/TclCmd/contents.htm Tcl 8.0.5] with 2 additional commands: {{{module}}} and {{{add}}}. 3 The Delphes' configuration file is based on [http://www.tcl.tk/about/language.html Tcl scripting language]. 4 5 [http://www.beedub.com/book/3rd/Tclintro.pdf Tcl Fundamentals] chapter from [http://www.beedub.com/book/ Practical Programming in Tcl and Tk] describes the basic syntax rules for the Tcl scripting language. 6 7 Delphes uses [http://www.tcl.tk/man/tcl8.0/TclCmd/contents.htm Tcl 8.0.5] with 2 additional commands: {{{module}}} and {{{add}}}. 8 9 == Basic Commands == 4 10 5 11 Here are the most important commands: … … 60 66 } 61 67 }}} 68 69 == Comments == 70 71 A Tcl comment line begins with #. 72 73 == Variable Substitution == 74 75 A dollar sign together with an immediately following variable name will be substituted by the value of the variable. 76