Source code for intermol.forces.abstract_2_virtual_type

from abstract_type import AbstractType


[docs]class Abstract2VirtualType(AbstractType): __slots__ = ['bondingtype1', 'bondingtype2', 'bondingtype2', 'placeholder'] def __init__(self, bondingtype1, bondingtype2, bondingtype3): super(Abstract2VirtualType, self).__init__() self.bondingtype1 = bondingtype1 self.bondingtype2 = bondingtype2 self.bondingtype3 = bondingtype3