mirror of
https://github.com/wassname/simpeg.git
synced 2026-07-30 12:30:18 +08:00
19 lines
391 B
Python
19 lines
391 B
Python
from SimPEG import Utils
|
|
from SimPEG.Data import BaseData
|
|
|
|
|
|
class DataTDEM1D(BaseData):
|
|
"""
|
|
docstring for DataTDEM1D
|
|
"""
|
|
|
|
txLoc = None #: txLoc
|
|
txType = None #: txType
|
|
rxLoc = None #: rxLoc
|
|
rxType = None #: rxType
|
|
timeCh = None #: timeCh
|
|
|
|
def __init__(self, **kwargs):
|
|
BaseData.__init__(self, **kwargs)
|
|
Utils.setKwargs(self, **kwargs)
|