1##############################################################################
2#
3# This is the setup file for the events system.  From here, you can
4# configure any actions that you want to have happen during the course of
5# an experiment, including setting the times for data collection.
6#
7# basic syntax: [trigger] [start:interval:stop] [action/event] [arguments...]
8#
9# This file is currently setup to record key information every 100 updates.
10#
11# For information on how to use this file, see:  doc/events.html
12# For other sample event configurations, see:  support/config/
13#
14##############################################################################
15
16u 0 InjectAll START_CREATURE
17u 80 ZeroMuts
18
19# Print all of the standard data files...
20# Print all of the standard data files...
21u 0:10:end PrintAverageData       # Save info about they average genotypes
22u 0:10:end PrintDominantData      # Save info about most abundant genotypes
23u 0:10:end PrintStatsData         # Collect satistics about entire pop.
24u 0:10:end PrintCountData         # Count organisms, genotypes, species, etc.
25u 0:10:end PrintTasksData         # Save organisms counts for each task.
26u 0:10:end PrintTimeData          # Track time conversion (generations, etc.)
27u 0:10:end PrintResourceData      # Track resource abundance.
28u 0:10:end PrintDominantGenotype      # Save the most abundant genotypes
29u 0:10:end PrintTasksExeData    # Num. times tasks have been executed.
30u 0:10:end PrintTasksQualData   # Task quality information
31
32# Setup the exit time and full population data collection.
33u 100:100 SavePopulation         # Save current state of population.
34u 100:100 SaveHistoricPopulation # Save ancestors of current population.
35u 100 exit                        # exit
36
37