Back to home page

EIC code displayed by LXR

 
 

    


Warning, /swf-testbed/workflows/testbed.toml is written in an unsupported language. File is not indexed.

0001 # Testbed Instance Configuration
0002 #
0003 # [testbed] section: required, defines the testbed instance context
0004 #
0005 # Override sections: Any section matching a workflow config section will override
0006 # those values. Section names are descriptive (e.g., [daq_state_machine],
0007 # [fast_processing]) so overrides are unambiguous.
0008 
0009 [testbed]
0010 # Namespace for this testbed instance.
0011 # Must be set before running workflows - empty string will cause an error.
0012 # Examples: "epic-fastmon-dev", "collab-dec29", "wenauseic-test1"
0013 #
0014 # Multiple users can collaborate in one namespace.
0015 # Users are responsible for namespace uniqueness.
0016 namespace = "torre1"
0017 
0018 # Example: Override fast_processing settings for this testbed
0019 # [fast_processing]
0020 # stf_count = 5                   # Fewer STF files for quick testing
0021 #
0022 # Example: Override daq_state_machine timing for this testbed
0023 # [daq_state_machine]
0024 # stf_interval = 1.0              # Faster STF generation
0025 
0026 # =============================================================================
0027 # Agent Configuration
0028 # =============================================================================
0029 # Agents managed by supervisord. Enable the ones needed for your workflow.
0030 # Scripts are relative to swf-testbed root.
0031 
0032 [agents.data]
0033 enabled = false
0034 script = "example_agents/example_data_agent.py"
0035 
0036 [agents.processing]
0037 enabled = true
0038 script = "example_agents/example_processing_agent.py"
0039 
0040 [agents.fastmon]
0041 enabled = false
0042 script = "example_agents/example_fastmon_agent.py"
0043 
0044 [agents.fast_processing]
0045 enabled = false
0046 script = "example_agents/fast_processing_agent.py"
0047 
0048 # =============================================================================
0049 # Workflow Configuration (for testbed run command)
0050 # =============================================================================
0051 
0052 [workflow]
0053 # Default workflow to run with 'testbed run'
0054 name = "stf_datataking"
0055 config = "fast_processing_default"
0056 realtime = true
0057 
0058 # Optional parameter overrides
0059 # [parameters]
0060 # stf_count = 5
0061 # physics_period_count = 2