Source code for pycif.plugins.domains.iconart.create_domain

import os
from logging import info
import numpy as np
import shutil
from ....utils.check.errclass import CifNotImplementedError


[docs] def create_domain(domain, **kwargs): """Creates a grid if needed Args: domain (dictionary): dictionary defining the domain. """ raise CifNotImplementedError( "Cannot create an ICON grid as ICON-ART should be used with " "pre-defined grids only." )