Salome HOME
Ajout de l'executable
[modules/adao.git] / src / daSalome / daYacsSchemaCreator / infos_daComposant.py
1 #-*-coding:iso-8859-1-*-
2 #  Copyright (C) 2010 EDF R&D
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # --
19 # Author : AndrĂ© RIBES (EDF R&D)
20 # --
21
22
23 # -- Infos from daCore --
24 AssimData = ["Background", "BackgroundError",
25              "Observation", "ObservationError", "ObservationOperator", "ObservationOperatorAppliedToX",
26              "EvolutionModel", "EvolutionError"]
27
28 AssimType = {}
29 AssimType["Background"] = ["Vector"]
30 AssimType["BackgroundError"] = ["Matrix"]
31 AssimType["Observation"] = ["Vector"]
32 AssimType["ObservationError"] = ["Matrix"]
33 AssimType["ObservationOperator"] = ["Matrix", "Function"]
34 AssimType["ObservationOperatorAppliedToX"] = ["List"]
35
36 FromNumpyList = {}
37 FromNumpyList["Vector"] = ["string"]
38 FromNumpyList["Matrix"] = ["string"]
39 FromNumpyList["Function"] = ["Dict"]
40 FromNumpyList["List"] = ["List"]
41
42 # -- Infos from daAlgorithms --
43 AssimAlgos = ["Blue", "EnsembleBlue", "Kalman", "LinearLeastSquares", "3DVAR"]
44
45 AlgoDataRequirements = {}
46 AlgoDataRequirements["Blue"] = ["Background", "BackgroundError",
47                                 "Observation", "ObservationOperator", "ObservationError"]
48