예제 #1
0
 def global_list(self):
     """
     IntVector instance with global indices in the region.
     """
     c_ptr = cfunc.get_global_list(self)
     global_list = IntVector.ref(c_ptr, self)
     return global_list
예제 #2
0
 def active_list(self):
     """
     IntVector instance with active indices in the region.
     """
     c_ptr = cfunc.get_active_list(self)
     active_list = IntVector.ref(c_ptr, self)
     return active_list
예제 #3
0
 def global_list(self):
     """
     IntVector instance with global indices in the region.
     """
     c_ptr = cfunc.get_global_list( self )
     global_list = IntVector.ref( c_ptr , self )    
     return global_list
예제 #4
0
 def active_list(self):
     """
     IntVector instance with active indices in the region.
     """
     c_ptr = cfunc.get_active_list( self )
     active_list = IntVector.ref( c_ptr , self )
     return active_list
예제 #5
0
 def kw_index_list(self, ecl_kw, force_active):
     c_ptr = cfunc.get_kw_index_list(self, ecl_kw, force_active)
     index_list = IntVector.ref(c_ptr, self)
     return index_list
예제 #6
0
 def kw_index_list(self , ecl_kw , force_active):
     c_ptr = cfunc.get_kw_index_list( self , ecl_kw , force_active)
     index_list = IntVector.ref( c_ptr , self )
     return index_list