# encoding: utf-8
# module vtkmodules.vtkIOHDF
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkIOHDF.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonExecutionModel as __vtkmodules_vtkCommonExecutionModel


# no functions
# classes

class vtkHDFReader(__vtkmodules_vtkCommonExecutionModel.vtkDataObjectAlgorithm):
    """
    vtkHDFReader - Read VTK HDF files.
    
    Superclass: vtkDataObjectAlgorithm
    
    Reads data saved using the VTK HDF format which supports all
    vtkDataSet types (image data and unstructured grid are currently
    implemented) and serial as well as parallel processing.
    """
    def CanReadFile(self, name): # real signature unknown; restored from __doc__
        """
        CanReadFile(self, name:str) -> int
        C++: virtual int CanReadFile(const char *name)
        
        Test whether the file (type) with the given name can be read by
        this reader. If the file has a newer version than the reader, we
        still say we can read the file type and we fail later, when we
        try to read the file. This enables clients (ParaView) to
        distinguish between failures when we need to look for another
        reader and failures when we don't.
        """
        return 0

    def GetCellArrayName(self, index): # real signature unknown; restored from __doc__
        """
        GetCellArrayName(self, index:int) -> str
        C++: const char *GetCellArrayName(int index)
        
        Get the name of the point or cell array with the given index in
        the input.
        """
        return ""

    def GetCellDataArraySelection(self): # real signature unknown; restored from __doc__
        """
        GetCellDataArraySelection(self) -> vtkDataArraySelection
        C++: virtual vtkDataArraySelection *GetCellDataArraySelection()
        
        Get the data array selection tables used to configure which data
        arrays are loaded by the reader.
        """
        pass

    def GetFieldDataArraySelection(self): # real signature unknown; restored from __doc__
        """
        GetFieldDataArraySelection(self) -> vtkDataArraySelection
        C++: virtual vtkDataArraySelection *GetFieldDataArraySelection()
        
        Get the data array selection tables used to configure which data
        arrays are loaded by the reader.
        """
        pass

    def GetFileName(self): # real signature unknown; restored from __doc__
        """
        GetFileName(self) -> str
        C++: virtual char *GetFileName()
        
        Get/Set the name of the input file.
        """
        return ""

    def GetMaximumLevelsToReadByDefaultForAMR(self): # real signature unknown; restored from __doc__
        """
        GetMaximumLevelsToReadByDefaultForAMR(self) -> int
        C++: virtual unsigned int GetMaximumLevelsToReadByDefaultForAMR()
        """
        return 0

    def GetNumberOfCellArrays(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfCellArrays(self) -> int
        C++: int GetNumberOfCellArrays()
        
        Get the number of point or cell arrays available in the input.
        """
        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 GetNumberOfPointArrays(self): # real signature unknown; restored from __doc__
        """
        GetNumberOfPointArrays(self) -> int
        C++: int GetNumberOfPointArrays()
        
        Get the number of point or cell arrays available in the input.
        """
        return 0

    def GetOutputAsDataSet(self): # real signature unknown; restored from __doc__
        """
        GetOutputAsDataSet(self) -> vtkDataSet
        C++: vtkDataSet *GetOutputAsDataSet()
        GetOutputAsDataSet(self, index:int) -> vtkDataSet
        C++: vtkDataSet *GetOutputAsDataSet(int index)
        
        Get the output as a vtkDataSet pointer.
        """
        pass

    def GetPointArrayName(self, index): # real signature unknown; restored from __doc__
        """
        GetPointArrayName(self, index:int) -> str
        C++: const char *GetPointArrayName(int index)
        
        Get the name of the point or cell array with the given index in
        the input.
        """
        return ""

    def GetPointDataArraySelection(self): # real signature unknown; restored from __doc__
        """
        GetPointDataArraySelection(self) -> vtkDataArraySelection
        C++: virtual vtkDataArraySelection *GetPointDataArraySelection()
        
        Get the data array selection tables used to configure which data
        arrays are loaded by the reader.
        """
        pass

    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 NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkHDFReader
        C++: vtkHDFReader *NewInstance()
        """
        return vtkHDFReader

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkHDFReader
        C++: static vtkHDFReader *SafeDownCast(vtkObjectBase *o)
        """
        return vtkHDFReader

    def SetFileName(self, _arg): # real signature unknown; restored from __doc__
        """
        SetFileName(self, _arg:str) -> None
        C++: virtual void SetFileName(const char *_arg)
        
        Get/Set the name of the input file.
        """
        pass

    def SetMaximumLevelsToReadByDefaultForAMR(self, _arg): # real signature unknown; restored from __doc__
        """
        SetMaximumLevelsToReadByDefaultForAMR(self, _arg:int) -> None
        C++: virtual void SetMaximumLevelsToReadByDefaultForAMR(
            unsigned int _arg)
        """
        pass

    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__': 'vtkHDFReader', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'SetFileName': <method 'SetFileName' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetFileName': <method 'GetFileName' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'CanReadFile': <method 'CanReadFile' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetOutputAsDataSet': <method 'GetOutputAsDataSet' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetPointDataArraySelection': <method 'GetPointDataArraySelection' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetCellDataArraySelection': <method 'GetCellDataArraySelection' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetFieldDataArraySelection': <method 'GetFieldDataArraySelection' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetNumberOfPointArrays': <method 'GetNumberOfPointArrays' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetNumberOfCellArrays': <method 'GetNumberOfCellArrays' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetPointArrayName': <method 'GetPointArrayName' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetCellArrayName': <method 'GetCellArrayName' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'SetMaximumLevelsToReadByDefaultForAMR': <method 'SetMaximumLevelsToReadByDefaultForAMR' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, 'GetMaximumLevelsToReadByDefaultForAMR': <method 'GetMaximumLevelsToReadByDefaultForAMR' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF86EFC7290>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkIOHDF.vtkHDFReader' objects>, '__doc__': 'vtkHDFReader - Read VTK HDF files.\\n\\nSuperclass: vtkDataObjectAlgorithm\\n\\nReads data saved using the VTK HDF format which supports all\\nvtkDataSet types (image data and unstructured grid are currently\\nimplemented) and serial as well as parallel processing.\\n\\n'})"
    __vtkname__ = 'vtkHDFReader'


# variables with complex values

__loader__ = None # (!) real value is '<_frozen_importlib_external.ExtensionFileLoader object at 0x000002C67061BC50>'

__spec__ = None # (!) real value is "ModuleSpec(name='vtkmodules.vtkIOHDF', loader=<_frozen_importlib_external.ExtensionFileLoader object at 0x000002C67061BC50>, origin='C:\\\\Users\\\\xukai\\\\Downloads\\\\??2\\\\venv\\\\Lib\\\\site-packages\\\\vtkmodules\\\\vtkIOHDF.cp311-win_amd64.pyd')"

