LSSTApplications  11.0-13-gbb96280,12.1.rc1,12.1.rc1+1,12.1.rc1+2,12.1.rc1+5,12.1.rc1+8,12.1.rc1-1-g06d7636+1,12.1.rc1-1-g253890b+5,12.1.rc1-1-g3d31b68+7,12.1.rc1-1-g3db6b75+1,12.1.rc1-1-g5c1385a+3,12.1.rc1-1-g83b2247,12.1.rc1-1-g90cb4cf+6,12.1.rc1-1-g91da24b+3,12.1.rc1-2-g3521f8a,12.1.rc1-2-g39433dd+4,12.1.rc1-2-g486411b+2,12.1.rc1-2-g4c2be76,12.1.rc1-2-gc9c0491,12.1.rc1-2-gda2cd4f+6,12.1.rc1-3-g3391c73+2,12.1.rc1-3-g8c1bd6c+1,12.1.rc1-3-gcf4b6cb+2,12.1.rc1-4-g057223e+1,12.1.rc1-4-g19ed13b+2,12.1.rc1-4-g30492a7
LSSTDataManagementBasePackage
PipelineDefinitionConfig.py
Go to the documentation of this file.
1 import lsst.pex.config as pexConfig
2 
3 ## execution configuration
4 class ExecuteConfig(pexConfig.Config):
5  ## shutdown topic
6  shutdownTopic = pexConfig.Field("shutdown topic",str)
7  ## host name of event broker
8  eventBrokerHost = pexConfig.Field("event broker host",str)
9 
10 ## framework configuration
11 class FrameworkConfig(pexConfig.Config):
12  ## script to invoke for program execution
13  script = pexConfig.Field("program to execute",str)
14  ## type name
15  type = pexConfig.Field("type",str)
16  ## environment to set up for program execution
17  environment = pexConfig.Field("environment to set up",str)
18 
19 ## pipeline definition configuration
20 class PipelineDefinitionConfig(pexConfig.Config):
21  ## execute configuration
22  execute = pexConfig.ConfigField("execute",ExecuteConfig)
23  ## framework configuration
24  framework = pexConfig.ConfigField("execute",FrameworkConfig)