Changes between Version 10 and Version 11 of WorkBook/ConfigFile
- Timestamp:
- Aug 20, 2013, 11:40:38 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/ConfigFile
v10 v11 80 80 }}} 81 81 82 == Global parameters == 83 84 It is possible to specify the following global parameters: !MaxEvents, !SkipEvents and !RandomSeed. 85 86 For instance, the following configuration allows to specify a particular random seed, skip the first 100 events and process the following 1000 events. 87 88 {{{ 89 set RandomSeed 23 90 set SkipEvents 100 91 set MaxEvents 1000 92 }}} 93 94 82 95 == Comments == 83 96 … … 87 100 88 101 A dollar sign together with an immediately following variable name will be substituted by the value of the variable. 89