コード例 #1
0
ファイル: gen_kw_keys.py プロジェクト: Ensembles/ert
    def __init__(self, parent):
        super(GenKWKeys, self).__init__("gen_kw", parent)
        self.addShellFunction(name="list", function=GenKWKeys.list, help_message="Shows a list of all available GenKW keys.")

        self.__plot_data_gatherer = None

        ShellPlot.addPrintSupport(self, "GenKW")
        ShellPlot.addHistogramPlotSupport(self, "GenKW")
        ShellPlot.addGaussianKDEPlotSupport(self, "GenKW")
        ShellPlot.addDistributionPlotSupport(self, "GenKW")
        ShellPlot.addCrossCaseStatisticsPlotSupport(self, "GenKW")
コード例 #2
0
ファイル: custom_kw_keys.py プロジェクト: Ensembles/ert
    def __init__(self, parent):
        super(CustomKWKeys, self).__init__("custom_kw", parent)

        self.addShellFunction(**{"name": "list",
                                 "function": CustomKWKeys.list,
                                 "help_message": "List all CustomKW keys."})

        self.__plot_data_gatherer = None

        ShellPlot.addPrintSupport(self, "CustomKW")
        ShellPlot.addHistogramPlotSupport(self, "CustomKW")
        ShellPlot.addGaussianKDEPlotSupport(self, "CustomKW")
        ShellPlot.addDistributionPlotSupport(self, "CustomKW")
        ShellPlot.addCrossCaseStatisticsPlotSupport(self, "CustomKW")
コード例 #3
0
ファイル: gen_kw_keys.py プロジェクト: stefoss23/ert-1
    def __init__(self, parent):
        super(GenKWKeys, self).__init__("gen_kw", parent)
        self.addShellFunction(
            name="list",
            function=GenKWKeys.list,
            help_message="Shows a list of all available GenKW keys.")

        self.__plot_data_gatherer = None

        ShellPlot.addPrintSupport(self, "GenKW")
        ShellPlot.addHistogramPlotSupport(self, "GenKW")
        ShellPlot.addGaussianKDEPlotSupport(self, "GenKW")
        ShellPlot.addDistributionPlotSupport(self, "GenKW")
        ShellPlot.addCrossCaseStatisticsPlotSupport(self, "GenKW")
コード例 #4
0
ファイル: custom_kw_keys.py プロジェクト: blattms/ert-debian
    def __init__(self, parent):
        super(CustomKWKeys, self).__init__("custom_kw", parent)

        self.addShellFunction(
            **{
                "name": "list",
                "function": CustomKWKeys.list,
                "help_message": "List all CustomKW keys."
            })

        self.__plot_data_gatherer = None

        ShellPlot.addPrintSupport(self, "CustomKW")
        ShellPlot.addHistogramPlotSupport(self, "CustomKW")
        ShellPlot.addGaussianKDEPlotSupport(self, "CustomKW")
        ShellPlot.addDistributionPlotSupport(self, "CustomKW")
        ShellPlot.addCrossCaseStatisticsPlotSupport(self, "CustomKW")