# encoding: utf-8
# module vtkmodules.vtkCommonExecutionModel
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkCommonExecutionModel.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore


from .vtkAlgorithm import vtkAlgorithm

class vtkEnsembleSource(vtkAlgorithm):
    """
    vtkEnsembleSource - source that manages dataset ensembles
    
    Superclass: vtkAlgorithm
    
    vtkEnsembleSource manages a collection of data sources in order to
    represent a dataset ensemble. It has the ability to provide meta-data
    about the ensemble in the form of a table, using the META_DATA key as
    well as accept a pipeline request using the UPDATE_MEMBER key. Note
    that it is expected that all ensemble members produce data of the
    same type.
    """
    def AddMember(self, __a): # real signature unknown; restored from __doc__
        """
        AddMember(self, __a:vtkAlgorithm) -> None
        C++: void AddMember(vtkAlgorithm *)
        
        Add an algorithm (source) that will produce the next ensemble
        member. This algorithm will be passed the REQUEST_INFORMATION,
        REQUEST_UPDATE_EXTENT and REQUEST_DATA pipeline passes for
        execution.
        """
        pass

    def GetCurrentMember(self): # real signature unknown; restored from __doc__
        """
        GetCurrentMember(self) -> int
        C++: virtual unsigned int GetCurrentMember()
        """
        return 0

    def GetNumberOfGenerationsFromBase(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBase(self, type:str) -> int
        C++: vtkIdType GetNumberOfGenerationsFromBase(const char *type)
            override;
        
        Given the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfGenerationsFromBaseType(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBaseType(type:str) -> int
        C++: static vtkIdType GetNumberOfGenerationsFromBaseType(
            const char *type)
        
        Given a the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfMembers(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfMembers(self) -> int
        C++: unsigned int GetNumberOfMembers()
        
        Returns the number of ensemble members.
        """
        return 0

    def IsA(self, type): # real signature unknown; restored from __doc__
        """
        IsA(self, type:str) -> int
        C++: vtkTypeBool IsA(const char *type) override;
        
        Return 1 if this class is the same type of (or a subclass of) the
        named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def IsTypeOf(self, type): # real signature unknown; restored from __doc__
        """
        IsTypeOf(type:str) -> int
        C++: static vtkTypeBool IsTypeOf(const char *type)
        
        Return 1 if this class type is the same type of (or a subclass
        of) the named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def META_DATA(self): # real signature unknown; restored from __doc__
        """
        META_DATA() -> vtkInformationDataObjectMetaDataKey
        C++: static vtkInformationDataObjectMetaDataKey *META_DATA()
        
        Meta-data for the ensemble. This is set with SetMetaData.
        """
        return vtkInformationDataObjectMetaDataKey

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkEnsembleSource
        C++: vtkEnsembleSource *NewInstance()
        """
        return vtkEnsembleSource

    def RemoveAllMembers(self): # real signature unknown; restored from __doc__
        """
        RemoveAllMembers(self) -> None
        C++: void RemoveAllMembers()
        
        Removes all ensemble members.
        """
        pass

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkEnsembleSource
        C++: static vtkEnsembleSource *SafeDownCast(vtkObjectBase *o)
        """
        return vtkEnsembleSource

    def SetCurrentMember(self, _arg): # real signature unknown; restored from __doc__
        """
        SetCurrentMember(self, _arg:int) -> None
        C++: virtual void SetCurrentMember(unsigned int _arg)
        
        Set/Get the current ensemble member to process. Note that this
        data member will not be used if the UPDATE_MEMBER key is present
        in the pipeline. Also, this data member may be removed in the
        future. Unless it is absolutely necessary to use this data
        member, use the UPDATE_MEMBER key instead.
        """
        pass

    def SetMetaData(self, __a): # real signature unknown; restored from __doc__
        """
        SetMetaData(self, __a:vtkTable) -> None
        C++: void SetMetaData(vtkTable *)
        
        Set the meta-data that will be propagated downstream. Make sure
        that this table has as many rows as the ensemble members and the
        meta-data for each row matches the corresponding ensemble source.
        """
        pass

    def UPDATE_MEMBER(self): # real signature unknown; restored from __doc__
        """
        UPDATE_MEMBER() -> vtkInformationIntegerRequestKey
        C++: static vtkInformationIntegerRequestKey *UPDATE_MEMBER()
        
        Key used to request a particular ensemble member.
        """
        return vtkInformationIntegerRequestKey

    def __delattr__(self, *args, **kwargs): # real signature unknown
        """ Implement delattr(self, name). """
        pass

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    def __setattr__(self, *args, **kwargs): # real signature unknown
        """ Implement setattr(self, name, value). """
        pass

    def __str__(self, *args, **kwargs): # real signature unknown
        """ Return str(self). """
        pass

    __this__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """Pointer to the C++ object."""


    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkEnsembleSource', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'AddMember': <method 'AddMember' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'RemoveAllMembers': <method 'RemoveAllMembers' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'GetNumberOfMembers': <method 'GetNumberOfMembers' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'SetCurrentMember': <method 'SetCurrentMember' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'GetCurrentMember': <method 'GetCurrentMember' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'SetMetaData': <method 'SetMetaData' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'META_DATA': <method 'META_DATA' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, 'UPDATE_MEMBER': <method 'UPDATE_MEMBER' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF82F4E14D0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkCommonExecutionModel.vtkEnsembleSource' objects>, '__doc__': 'vtkEnsembleSource - source that manages dataset ensembles\\n\\nSuperclass: vtkAlgorithm\\n\\nvtkEnsembleSource manages a collection of data sources in order to\\nrepresent a dataset ensemble. It has the ability to provide meta-data\\nabout the ensemble in the form of a table, using the META_DATA key as\\nwell as accept a pipeline request using the UPDATE_MEMBER key. Note\\nthat it is expected that all ensemble members produce data of the\\nsame type.\\n\\n'})"
    __vtkname__ = 'vtkEnsembleSource'


