aiida.orm.nodes.process.calculation.calcfunction 源代码

###########################################################################
# Copyright (c), The AiiDA team. All rights reserved.                     #
# This file is part of the AiiDA code.                                    #
#                                                                         #
# The code is hosted on GitHub at https://github.com/aiidateam/aiida-core #
# For further information on the license, see the LICENSE.txt file        #
# For further information please visit http://www.aiida.net               #
###########################################################################
"""Module with `Node` sub class for calculation function processes."""

from typing import TYPE_CHECKING

from aiida.common.links import LinkType
from aiida.orm.utils.mixins import FunctionCalculationMixin

from ..process import ProcessNodeLinks
from .calculation import CalculationNode

if TYPE_CHECKING:
    from aiida.orm import Node

__all__ = ('CalcFunctionNode',)






[文档] class CalcFunctionNode(FunctionCalculationMixin, CalculationNode): # type: ignore[misc] """ORM class for all nodes representing the execution of a calcfunction.""" _CLS_NODE_LINKS = CalcFunctionNodeLinks