# encoding: utf-8
# module vtkmodules.vtkIOVPIC
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkIOVPIC.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonExecutionModel as __vtkmodules_vtkCommonExecutionModel


# no functions
# classes

class vtkVPICReader(__vtkmodules_vtkCommonExecutionModel.vtkImageAlgorithm):
    """
    vtkVPICReader - class for reading VPIC data files
    
    Superclass: vtkImageAlgorithm
    
    vtkDataReader is a helper superclass that reads the vtk data file
    header, dataset type, and attribute data (point and cell attributes
    such as scalars, vectors, normals, etc.) from a vtk data file.  See
    text for the format of the various vtk file types.
    
    @sa
    vtkPolyDataReader vtkStructuredPointsReader vtkStructuredGridReader
    vtkUnstructuredGridReader vtkRectilinearGridReader
    """
    def DisableAllPointArrays(self): # real signature unknown; restored from __doc__
        """
        DisableAllPointArrays(self) -> None
        C++: void DisableAllPointArrays()
        """
        pass

    def EnableAllPointArrays(self): # real signature unknown; restored from __doc__
        """
        EnableAllPointArrays(self) -> None
        C++: void EnableAllPointArrays()
        """
        pass

    def GetFileName(self): # real signature unknown; restored from __doc__
        """
        GetFileName(self) -> str
        C++: virtual char *GetFileName()
        """
        return ""

    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()
        
        The following methods allow selective reading of solutions
        fields. By default, ALL data fields on the nodes are read, but
        this can be modified.
        """
        return 0

    def GetOutput(self): # real signature unknown; restored from __doc__
        """
        GetOutput(self) -> vtkImageData
        C++: vtkImageData *GetOutput()
        GetOutput(self, index:int) -> vtkImageData
        C++: vtkImageData *GetOutput(int index)
        
        Get the reader's output
        """
        pass

    def GetPointArrayName(self, index): # real signature unknown; restored from __doc__
        """
        GetPointArrayName(self, index:int) -> str
        C++: const char *GetPointArrayName(int index)
        """
        return ""

    def GetPointArrayStatus(self, name): # real signature unknown; restored from __doc__
        """
        GetPointArrayStatus(self, name:str) -> int
        C++: int GetPointArrayStatus(const char *name)
        """
        return 0

    def GetStride(self): # real signature unknown; restored from __doc__
        """
        GetStride(self) -> (int, int, int)
        C++: virtual int *GetStride()
        """
        pass

    def GetXLayout(self): # real signature unknown; restored from __doc__
        """
        GetXLayout(self) -> (int, int)
        C++: virtual int *GetXLayout()
        """
        pass

    def GetYLayout(self): # real signature unknown; restored from __doc__
        """
        GetYLayout(self) -> (int, int)
        C++: virtual int *GetYLayout()
        """
        pass

    def GetZLayout(self): # real signature unknown; restored from __doc__
        """
        GetZLayout(self) -> (int, int)
        C++: virtual int *GetZLayout()
        """
        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) -> vtkVPICReader
        C++: vtkVPICReader *NewInstance()
        """
        return vtkVPICReader

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkVPICReader
        C++: static vtkVPICReader *SafeDownCast(vtkObjectBase *o)
        """
        return vtkVPICReader

    def SetFileName(self, _arg): # real signature unknown; restored from __doc__
        """
        SetFileName(self, _arg:str) -> None
        C++: virtual void SetFileName(const char *_arg)
        
        Specify file name of VPIC data file to read.
        """
        pass

    def SetPointArrayStatus(self, name, status): # real signature unknown; restored from __doc__
        """
        SetPointArrayStatus(self, name:str, status:int) -> None
        C++: void SetPointArrayStatus(const char *name, int status)
        """
        pass

    def SetStride(self, _arg1, _arg2, _arg3): # real signature unknown; restored from __doc__
        """
        SetStride(self, _arg1:int, _arg2:int, _arg3:int) -> None
        C++: virtual void SetStride(int _arg1, int _arg2, int _arg3)
        SetStride(self, _arg:(int, int, int)) -> None
        C++: virtual void SetStride(const int _arg[3])
        
        Set the stride in each dimension
        """
        pass

    def SetXExtent(self, _arg1, _arg2): # real signature unknown; restored from __doc__
        """
        SetXExtent(self, _arg1:int, _arg2:int) -> None
        C++: virtual void SetXExtent(int _arg1, int _arg2)
        SetXExtent(self, _arg:(int, int)) -> None
        C++: void SetXExtent(const int _arg[2])
        
        Set the simulation file decomposition in each dimension
        """
        pass

    def SetYExtent(self, _arg1, _arg2): # real signature unknown; restored from __doc__
        """
        SetYExtent(self, _arg1:int, _arg2:int) -> None
        C++: virtual void SetYExtent(int _arg1, int _arg2)
        SetYExtent(self, _arg:(int, int)) -> None
        C++: void SetYExtent(const int _arg[2])
        """
        pass

    def SetZExtent(self, _arg1, _arg2): # real signature unknown; restored from __doc__
        """
        SetZExtent(self, _arg1:int, _arg2:int) -> None
        C++: virtual void SetZExtent(int _arg1, int _arg2)
        SetZExtent(self, _arg:(int, int)) -> None
        C++: void SetZExtent(const int _arg[2])
        """
        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__': 'vtkVPICReader', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'SetFileName': <method 'SetFileName' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetFileName': <method 'GetFileName' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'SetStride': <method 'SetStride' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetStride': <method 'GetStride' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'SetXExtent': <method 'SetXExtent' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'SetYExtent': <method 'SetYExtent' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'SetZExtent': <method 'SetZExtent' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetXLayout': <method 'GetXLayout' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetYLayout': <method 'GetYLayout' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetZLayout': <method 'GetZLayout' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetOutput': <method 'GetOutput' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetNumberOfPointArrays': <method 'GetNumberOfPointArrays' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetPointArrayName': <method 'GetPointArrayName' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'GetPointArrayStatus': <method 'GetPointArrayStatus' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'SetPointArrayStatus': <method 'SetPointArrayStatus' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'DisableAllPointArrays': <method 'DisableAllPointArrays' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, 'EnableAllPointArrays': <method 'EnableAllPointArrays' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, '__new__': <built-in method __new__ of type object at 0x00007FF863A88310>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkIOVPIC.vtkVPICReader' objects>, '__doc__': 'vtkVPICReader - class for reading VPIC data files\\n\\nSuperclass: vtkImageAlgorithm\\n\\nvtkDataReader is a helper superclass that reads the vtk data file\\nheader, dataset type, and attribute data (point and cell attributes\\nsuch as scalars, vectors, normals, etc.) from a vtk data file.  See\\ntext for the format of the various vtk file types.\\n\\n@sa\\nvtkPolyDataReader vtkStructuredPointsReader vtkStructuredGridReader\\nvtkUnstructuredGridReader vtkRectilinearGridReader\\n\\n'})"
    __vtkname__ = 'vtkVPICReader'


# variables with complex values

__loader__ = None # (!) real value is '<_frozen_importlib_external.ExtensionFileLoader object at 0x000001500A8BBC50>'

__spec__ = None # (!) real value is "ModuleSpec(name='vtkmodules.vtkIOVPIC', loader=<_frozen_importlib_external.ExtensionFileLoader object at 0x000001500A8BBC50>, origin='C:\\\\Users\\\\xukai\\\\Downloads\\\\??2\\\\venv\\\\Lib\\\\site-packages\\\\vtkmodules\\\\vtkIOVPIC.cp311-win_amd64.pyd')"

