Data Structures | |
class | my_gps_class |
Functions | |
def | is_value_and_type (x, v, t) |
def | check_dynamic_vector_matrix (iv, ivl, rv, rvl, cm, cms1, cms2) |
def | check_input_view_type_safety (f, a, b, expect_exception) |
Variables | |
bool | expected_exception = False |
lal_c_si = lal.C_SI | |
lal_180_pi = lal.LAL_180_PI | |
mem1 = lal.Detector() | |
mem2 = lal.CreateCOMPLEX8Vector(5) | |
mem3 = lal.CreateREAL8Vector(3) | |
mem4 = lal.CreateREAL4TimeSeries("test", lal.LIGOTimeGPS(0), 100, 0.1, lal.DimensionlessUnit, 10) | |
a = lal.gsl_vector(3) | |
data | |
b = a.data | |
ts = lal.CreateREAL8TimeSeries("test", lal.LIGOTimeGPS(0), 0, 0.1, lal.DimensionlessUnit, 10) | |
v = ts.data | |
sv = lal.CreateStringVector("1") | |
sv2 = lal.AppendString2Vector(sv, "4") | |
ts2 = lal.ResizeREAL8TimeSeries(ts, 0, 40) | |
list | strs = ["a", "bc", "def"] |
sts = lal.swig_lal_test_struct() | |
check typemaps for strings and double pointers More... | |
vec | |
mat | |
swig_lal_test_INT4_vector | |
swig_lal_test_INT4_matrix | |
iv = lal.CreateINT4Vector(5) | |
rv = lal.CreateREAL8Vector(5) | |
cm = lal.CreateCOMPLEX8VectorSequence(4, 6) | |
rv0 = lal.CreateREAL8Vector(0) | |
rv1 = lal.CreateREAL8Vector(1) | |
a1in = numpy.array([1.2, 3.5, 7.9], dtype=numpy.double) | |
float | a1out = a1in * 2.5 |
a2in = numpy.array([[3,2], [7,6], [12,10]], dtype=numpy.int32) | |
int | a2out = a2in * 15 |
a3in = numpy.array([lal.LIGOTimeGPS(1234.5), lal.LIGOTimeGPS(678.9)]) | |
int | a3out = a3in * 3 |
list | svdat = ["a", "bc", "def"] |
check input views of string array structs More... | |
svout = lal.CreateEmptyStringVector(len(svdat)); | |
retn | |
r4dat = numpy.array([1.2, 2.3, 3.4, 4.5, 5.6], dtype=numpy.float32) | |
check input views of numeric array structs More... | |
r8dat = numpy.array([3.4, 4.5, 5.6, 6.7, 7.8, 8.9], dtype=numpy.float64) | |
c8dat = numpy.array(numpy.vectorize(complex)(r4dat, 8 + r4dat), dtype=numpy.complex64) | |
c16dat = numpy.array(numpy.vectorize(complex)(r8dat, 16 + r8dat), dtype=numpy.complex128) | |
r4 = lal.CreateREAL4Vector(len(r4dat)) | |
r4out = lal.CreateREAL4Vector(len(r4dat)) | |
dtype | |
r8 = lal.CreateREAL8Vector(len(r8dat)) | |
r8out = lal.CreateREAL8Vector(len(r8dat)) | |
c8 = lal.CreateCOMPLEX8Vector(len(c8dat)) | |
c8out = lal.CreateCOMPLEX8Vector(len(c8dat)) | |
c16 = lal.CreateCOMPLEX16Vector(len(c16dat)) | |
c16out = lal.CreateCOMPLEX16Vector(len(c16dat)) | |
vfdat = numpy.array([1.2, 2.3, 3.4, 4.5, 5.6], dtype=numpy.float32) | |
vddat = numpy.array([3.4, 4.5, 5.6, 6.7, 7.8, 8.9], dtype=numpy.float64) | |
vcfdat = numpy.array(numpy.vectorize(complex)(vfdat, 8 + vfdat), dtype=numpy.complex64) | |
vcddat = numpy.array(numpy.vectorize(complex)(vddat, 16 + vddat), dtype=numpy.complex128) | |
vf = lal.gsl_vector_float(len(vfdat)) | |
vfout = lal.gsl_vector_float(len(vfdat)) | |
vd = lal.gsl_vector(len(vddat)) | |
vdout = lal.gsl_vector(len(vddat)) | |
vcf = lal.gsl_vector_complex_float(len(vcfdat)) | |
vcfout = lal.gsl_vector_complex_float(len(vcfdat)) | |
vcd = lal.gsl_vector_complex(len(vcddat)) | |
vcdout = lal.gsl_vector_complex(len(vcddat)) | |
mfdat = numpy.array([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7]], dtype=numpy.float32) | |
mddat = numpy.array([[3.4, 4.5], [5.6, 6.7], [7.8, 8.9]], dtype=numpy.float64) | |
mcfdat = numpy.array(numpy.vectorize(complex)(mfdat, 8 + mfdat), dtype=numpy.complex64) | |
mcddat = numpy.array(numpy.vectorize(complex)(mddat, 16 + mddat), dtype=numpy.complex128) | |
mf = lal.gsl_matrix_float(mfdat.shape[0], mfdat.shape[1]) | |
mfout = lal.gsl_matrix_float(mfdat.shape[0], mfdat.shape[1]) | |
md = lal.gsl_matrix(mddat.shape[0], mddat.shape[1]) | |
mdout = lal.gsl_matrix(mddat.shape[0], mddat.shape[1]) | |
mcf = lal.gsl_matrix_complex_float(mcfdat.shape[0], mcfdat.shape[1]) | |
mcfout = lal.gsl_matrix_complex_float(mcfdat.shape[0], mcfdat.shape[1]) | |
mcd = lal.gsl_matrix_complex(mcddat.shape[0], mcddat.shape[1]) | |
mcdout = lal.gsl_matrix_complex(mcddat.shape[0], mcddat.shape[1]) | |
r4in = numpy.array(list(range(0, 32)), dtype=numpy.float32) | |
r8in = numpy.array(list(range(0, 64)), dtype=numpy.float64) | |
c8in = numpy.array(numpy.vectorize(complex)(8 + r4in, r4in), dtype=numpy.complex64) | |
c16in = numpy.array(numpy.vectorize(complex)(16 + r8in, r8in), dtype=numpy.complex128) | |
c8inv = lal.CreateCOMPLEX8Vector(len(c8in)) | |
c8outv = lal.CreateCOMPLEX8Vector(len(c8in)) | |
plan = lal.CreateForwardCOMPLEX8FFTPlan(len(c8in), 0) | |
c16inv = lal.CreateCOMPLEX16Vector(len(c16in)) | |
c16outv = lal.CreateCOMPLEX16Vector(len(c16in)) | |
r4inv = lal.CreateREAL4Vector(len(r4in)) | |
r4outv = lal.CreateREAL4Vector((len(c8in)-1)*2) | |
r8inv = lal.CreateREAL8Vector(len(r8in)) | |
r8outv = lal.CreateREAL8Vector((len(c16in)-1)*2) | |
ap = lal.swig_lal_test_Create_arrayofptrs(3) | |
ptr_ptr = 0 | |
ptr_null_ptr | |
null_ptr_ptr | |
list | ptr_ptr_list = [0] |
int | gps0 = 989168284 |
list | utc0 = [2011, 5, 11, 16, 57, 49, 2, 131, 0] |
int | gps = gps0 + i * 86400 |
utc = list(utc0) | |
dt = datetime.datetime(*utc[0:6]) | |
t0 = LIGOTimeGPS() | |
t1 = LIGOTimeGPS(10.5) | |
t2 = LIGOTimeGPS(10, 500000000) | |
t3 = +t1 | |
t4struct = lal.swig_lal_test_gps() | |
t | |
t5 = LIGOTimeGPS("1000") | |
tmy = my_gps_class(987, 654321) | |
tsw = LIGOTimeGPS(tmy) | |
u1 = lal.Unit("kg m s^-2") | |
int | u2 = lal.MeterUnit * lal.KiloGramUnit / lal.SecondUnit ** 2 |
creator = getattr(lal, 'Create{}FrequencySeries'.format(datatype)) | |
pickled = pickle.dumps(a, 0) | |
dictionary | pydict |
laldict = lal.CreateDict() | |
def SWIGTestLALPython.is_value_and_type | ( | x, | |
v, | |||
t | |||
) |
Definition at line 11 of file SWIGTestLALPython.py.
def SWIGTestLALPython.check_dynamic_vector_matrix | ( | iv, | |
ivl, | |||
rv, | |||
rvl, | |||
cm, | |||
cms1, | |||
cms2 | |||
) |
Definition at line 187 of file SWIGTestLALPython.py.
def SWIGTestLALPython.check_input_view_type_safety | ( | f, | |
a, | |||
b, | |||
expect_exception | |||
) |
Definition at line 828 of file SWIGTestLALPython.py.
bool SWIGTestLALPython.expected_exception = False |
Definition at line 8 of file SWIGTestLALPython.py.
SWIGTestLALPython.lal_c_si = lal.C_SI |
Definition at line 22 of file SWIGTestLALPython.py.
SWIGTestLALPython.lal_180_pi = lal.LAL_180_PI |
Definition at line 23 of file SWIGTestLALPython.py.
SWIGTestLALPython.mem1 = lal.Detector() |
Definition at line 30 of file SWIGTestLALPython.py.
SWIGTestLALPython.mem2 = lal.CreateCOMPLEX8Vector(5) |
Definition at line 31 of file SWIGTestLALPython.py.
SWIGTestLALPython.mem3 = lal.CreateREAL8Vector(3) |
Definition at line 32 of file SWIGTestLALPython.py.
SWIGTestLALPython.mem4 = lal.CreateREAL4TimeSeries("test", lal.LIGOTimeGPS(0), 100, 0.1, lal.DimensionlessUnit, 10) |
Definition at line 33 of file SWIGTestLALPython.py.
SWIGTestLALPython.a = lal.gsl_vector(3) |
Definition at line 53 of file SWIGTestLALPython.py.
SWIGTestLALPython.data |
Definition at line 54 of file SWIGTestLALPython.py.
SWIGTestLALPython.b = a.data |
Definition at line 55 of file SWIGTestLALPython.py.
SWIGTestLALPython.ts = lal.CreateREAL8TimeSeries("test", lal.LIGOTimeGPS(0), 0, 0.1, lal.DimensionlessUnit, 10) |
Definition at line 60 of file SWIGTestLALPython.py.
SWIGTestLALPython.v = ts.data |
Definition at line 63 of file SWIGTestLALPython.py.
list SWIGTestLALPython.sv = lal.CreateStringVector("1") |
Definition at line 73 of file SWIGTestLALPython.py.
SWIGTestLALPython.sv2 = lal.AppendString2Vector(sv, "4") |
Definition at line 79 of file SWIGTestLALPython.py.
SWIGTestLALPython.ts2 = lal.ResizeREAL8TimeSeries(ts, 0, 40) |
Definition at line 92 of file SWIGTestLALPython.py.
list SWIGTestLALPython.strs = ["a", "bc", "def"] |
Definition at line 103 of file SWIGTestLALPython.py.
SWIGTestLALPython.sts = lal.swig_lal_test_struct() |
check typemaps for strings and double pointers
Definition at line 132 of file SWIGTestLALPython.py.
SWIGTestLALPython.vec |
Definition at line 136 of file SWIGTestLALPython.py.
SWIGTestLALPython.mat |
Definition at line 138 of file SWIGTestLALPython.py.
SWIGTestLALPython.swig_lal_test_INT4_vector |
Definition at line 163 of file SWIGTestLALPython.py.
SWIGTestLALPython.swig_lal_test_INT4_matrix |
Definition at line 166 of file SWIGTestLALPython.py.
SWIGTestLALPython.iv = lal.CreateINT4Vector(5) |
Definition at line 240 of file SWIGTestLALPython.py.
SWIGTestLALPython.rv = lal.CreateREAL8Vector(5) |
Definition at line 241 of file SWIGTestLALPython.py.
SWIGTestLALPython.cm = lal.CreateCOMPLEX8VectorSequence(4, 6) |
Definition at line 242 of file SWIGTestLALPython.py.
SWIGTestLALPython.rv0 = lal.CreateREAL8Vector(0) |
Definition at line 248 of file SWIGTestLALPython.py.
SWIGTestLALPython.rv1 = lal.CreateREAL8Vector(1) |
Definition at line 252 of file SWIGTestLALPython.py.
SWIGTestLALPython.a1in = numpy.array([1.2, 3.5, 7.9], dtype=numpy.double) |
Definition at line 273 of file SWIGTestLALPython.py.
float SWIGTestLALPython.a1out = a1in * 2.5 |
Definition at line 274 of file SWIGTestLALPython.py.
SWIGTestLALPython.a2in = numpy.array([[3,2], [7,6], [12,10]], dtype=numpy.int32) |
Definition at line 276 of file SWIGTestLALPython.py.
int SWIGTestLALPython.a2out = a2in * 15 |
Definition at line 277 of file SWIGTestLALPython.py.
SWIGTestLALPython.a3in = numpy.array([lal.LIGOTimeGPS(1234.5), lal.LIGOTimeGPS(678.9)]) |
Definition at line 279 of file SWIGTestLALPython.py.
int SWIGTestLALPython.a3out = a3in * 3 |
Definition at line 280 of file SWIGTestLALPython.py.
list SWIGTestLALPython.svdat = ["a", "bc", "def"] |
check input views of string array structs
Definition at line 301 of file SWIGTestLALPython.py.
SWIGTestLALPython.svout = lal.CreateEmptyStringVector(len(svdat)); |
Definition at line 304 of file SWIGTestLALPython.py.
SWIGTestLALPython.retn |
Definition at line 315 of file SWIGTestLALPython.py.
SWIGTestLALPython.r4dat = numpy.array([1.2, 2.3, 3.4, 4.5, 5.6], dtype=numpy.float32) |
check input views of numeric array structs
Definition at line 330 of file SWIGTestLALPython.py.
SWIGTestLALPython.r8dat = numpy.array([3.4, 4.5, 5.6, 6.7, 7.8, 8.9], dtype=numpy.float64) |
Definition at line 331 of file SWIGTestLALPython.py.
SWIGTestLALPython.c8dat = numpy.array(numpy.vectorize(complex)(r4dat, 8 + r4dat), dtype=numpy.complex64) |
Definition at line 332 of file SWIGTestLALPython.py.
SWIGTestLALPython.c16dat = numpy.array(numpy.vectorize(complex)(r8dat, 16 + r8dat), dtype=numpy.complex128) |
Definition at line 333 of file SWIGTestLALPython.py.
SWIGTestLALPython.r4 = lal.CreateREAL4Vector(len(r4dat)) |
Definition at line 334 of file SWIGTestLALPython.py.
SWIGTestLALPython.r4out = lal.CreateREAL4Vector(len(r4dat)) |
Definition at line 336 of file SWIGTestLALPython.py.
SWIGTestLALPython.dtype |
Definition at line 337 of file SWIGTestLALPython.py.
SWIGTestLALPython.r8 = lal.CreateREAL8Vector(len(r8dat)) |
Definition at line 364 of file SWIGTestLALPython.py.
SWIGTestLALPython.r8out = lal.CreateREAL8Vector(len(r8dat)) |
Definition at line 366 of file SWIGTestLALPython.py.
SWIGTestLALPython.c8 = lal.CreateCOMPLEX8Vector(len(c8dat)) |
Definition at line 394 of file SWIGTestLALPython.py.
SWIGTestLALPython.c8out = lal.CreateCOMPLEX8Vector(len(c8dat)) |
Definition at line 396 of file SWIGTestLALPython.py.
SWIGTestLALPython.c16 = lal.CreateCOMPLEX16Vector(len(c16dat)) |
Definition at line 424 of file SWIGTestLALPython.py.
SWIGTestLALPython.c16out = lal.CreateCOMPLEX16Vector(len(c16dat)) |
Definition at line 426 of file SWIGTestLALPython.py.
SWIGTestLALPython.vfdat = numpy.array([1.2, 2.3, 3.4, 4.5, 5.6], dtype=numpy.float32) |
Definition at line 579 of file SWIGTestLALPython.py.
SWIGTestLALPython.vddat = numpy.array([3.4, 4.5, 5.6, 6.7, 7.8, 8.9], dtype=numpy.float64) |
Definition at line 580 of file SWIGTestLALPython.py.
SWIGTestLALPython.vcfdat = numpy.array(numpy.vectorize(complex)(vfdat, 8 + vfdat), dtype=numpy.complex64) |
Definition at line 581 of file SWIGTestLALPython.py.
SWIGTestLALPython.vcddat = numpy.array(numpy.vectorize(complex)(vddat, 16 + vddat), dtype=numpy.complex128) |
Definition at line 582 of file SWIGTestLALPython.py.
SWIGTestLALPython.vf = lal.gsl_vector_float(len(vfdat)) |
Definition at line 583 of file SWIGTestLALPython.py.
SWIGTestLALPython.vfout = lal.gsl_vector_float(len(vfdat)) |
Definition at line 585 of file SWIGTestLALPython.py.
SWIGTestLALPython.vd = lal.gsl_vector(len(vddat)) |
Definition at line 613 of file SWIGTestLALPython.py.
SWIGTestLALPython.vdout = lal.gsl_vector(len(vddat)) |
Definition at line 615 of file SWIGTestLALPython.py.
SWIGTestLALPython.vcf = lal.gsl_vector_complex_float(len(vcfdat)) |
Definition at line 643 of file SWIGTestLALPython.py.
SWIGTestLALPython.vcfout = lal.gsl_vector_complex_float(len(vcfdat)) |
Definition at line 645 of file SWIGTestLALPython.py.
SWIGTestLALPython.vcd = lal.gsl_vector_complex(len(vcddat)) |
Definition at line 673 of file SWIGTestLALPython.py.
SWIGTestLALPython.vcdout = lal.gsl_vector_complex(len(vcddat)) |
Definition at line 675 of file SWIGTestLALPython.py.
SWIGTestLALPython.mfdat = numpy.array([[1.2, 2.3, 3.4], [4.5, 5.6, 6.7]], dtype=numpy.float32) |
Definition at line 703 of file SWIGTestLALPython.py.
SWIGTestLALPython.mddat = numpy.array([[3.4, 4.5], [5.6, 6.7], [7.8, 8.9]], dtype=numpy.float64) |
Definition at line 704 of file SWIGTestLALPython.py.
SWIGTestLALPython.mcfdat = numpy.array(numpy.vectorize(complex)(mfdat, 8 + mfdat), dtype=numpy.complex64) |
Definition at line 705 of file SWIGTestLALPython.py.
SWIGTestLALPython.mcddat = numpy.array(numpy.vectorize(complex)(mddat, 16 + mddat), dtype=numpy.complex128) |
Definition at line 706 of file SWIGTestLALPython.py.
SWIGTestLALPython.mf = lal.gsl_matrix_float(mfdat.shape[0], mfdat.shape[1]) |
Definition at line 707 of file SWIGTestLALPython.py.
SWIGTestLALPython.mfout = lal.gsl_matrix_float(mfdat.shape[0], mfdat.shape[1]) |
Definition at line 709 of file SWIGTestLALPython.py.
SWIGTestLALPython.md = lal.gsl_matrix(mddat.shape[0], mddat.shape[1]) |
Definition at line 737 of file SWIGTestLALPython.py.
SWIGTestLALPython.mdout = lal.gsl_matrix(mddat.shape[0], mddat.shape[1]) |
Definition at line 739 of file SWIGTestLALPython.py.
SWIGTestLALPython.mcf = lal.gsl_matrix_complex_float(mcfdat.shape[0], mcfdat.shape[1]) |
Definition at line 767 of file SWIGTestLALPython.py.
SWIGTestLALPython.mcfout = lal.gsl_matrix_complex_float(mcfdat.shape[0], mcfdat.shape[1]) |
Definition at line 769 of file SWIGTestLALPython.py.
SWIGTestLALPython.mcd = lal.gsl_matrix_complex(mcddat.shape[0], mcddat.shape[1]) |
Definition at line 797 of file SWIGTestLALPython.py.
SWIGTestLALPython.mcdout = lal.gsl_matrix_complex(mcddat.shape[0], mcddat.shape[1]) |
Definition at line 799 of file SWIGTestLALPython.py.
SWIGTestLALPython.r4in = numpy.array(list(range(0, 32)), dtype=numpy.float32) |
Definition at line 891 of file SWIGTestLALPython.py.
SWIGTestLALPython.r8in = numpy.array(list(range(0, 64)), dtype=numpy.float64) |
Definition at line 892 of file SWIGTestLALPython.py.
SWIGTestLALPython.c8in = numpy.array(numpy.vectorize(complex)(8 + r4in, r4in), dtype=numpy.complex64) |
Definition at line 893 of file SWIGTestLALPython.py.
SWIGTestLALPython.c16in = numpy.array(numpy.vectorize(complex)(16 + r8in, r8in), dtype=numpy.complex128) |
Definition at line 894 of file SWIGTestLALPython.py.
SWIGTestLALPython.c8inv = lal.CreateCOMPLEX8Vector(len(c8in)) |
Definition at line 895 of file SWIGTestLALPython.py.
SWIGTestLALPython.c8outv = lal.CreateCOMPLEX8Vector(len(c8in)) |
Definition at line 897 of file SWIGTestLALPython.py.
SWIGTestLALPython.plan = lal.CreateForwardCOMPLEX8FFTPlan(len(c8in), 0) |
Definition at line 898 of file SWIGTestLALPython.py.
SWIGTestLALPython.c16inv = lal.CreateCOMPLEX16Vector(len(c16in)) |
Definition at line 907 of file SWIGTestLALPython.py.
SWIGTestLALPython.c16outv = lal.CreateCOMPLEX16Vector(len(c16in)) |
Definition at line 909 of file SWIGTestLALPython.py.
SWIGTestLALPython.r4inv = lal.CreateREAL4Vector(len(r4in)) |
Definition at line 919 of file SWIGTestLALPython.py.
SWIGTestLALPython.r4outv = lal.CreateREAL4Vector((len(c8in)-1)*2) |
Definition at line 933 of file SWIGTestLALPython.py.
SWIGTestLALPython.r8inv = lal.CreateREAL8Vector(len(r8in)) |
Definition at line 943 of file SWIGTestLALPython.py.
SWIGTestLALPython.r8outv = lal.CreateREAL8Vector((len(c16in)-1)*2) |
Definition at line 957 of file SWIGTestLALPython.py.
SWIGTestLALPython.ap = lal.swig_lal_test_Create_arrayofptrs(3) |
Definition at line 1019 of file SWIGTestLALPython.py.
int SWIGTestLALPython.ptr_ptr = 0 |
Definition at line 1032 of file SWIGTestLALPython.py.
SWIGTestLALPython.ptr_null_ptr |
Definition at line 1032 of file SWIGTestLALPython.py.
SWIGTestLALPython.null_ptr_ptr |
Definition at line 1032 of file SWIGTestLALPython.py.
list SWIGTestLALPython.ptr_ptr_list = [0] |
Definition at line 1048 of file SWIGTestLALPython.py.
int SWIGTestLALPython.gps0 = 989168284 |
Definition at line 1063 of file SWIGTestLALPython.py.
list SWIGTestLALPython.utc0 = [2011, 5, 11, 16, 57, 49, 2, 131, 0] |
Definition at line 1064 of file SWIGTestLALPython.py.
int SWIGTestLALPython.gps = gps0 + i * 86400 |
Definition at line 1068 of file SWIGTestLALPython.py.
SWIGTestLALPython.utc = list(utc0) |
Definition at line 1069 of file SWIGTestLALPython.py.
SWIGTestLALPython.dt = datetime.datetime(*utc[0:6]) |
Definition at line 1077 of file SWIGTestLALPython.py.
SWIGTestLALPython.t0 = LIGOTimeGPS() |
Definition at line 1085 of file SWIGTestLALPython.py.
SWIGTestLALPython.t1 = LIGOTimeGPS(10.5) |
Definition at line 1089 of file SWIGTestLALPython.py.
SWIGTestLALPython.t2 = LIGOTimeGPS(10, 500000000) |
Definition at line 1090 of file SWIGTestLALPython.py.
SWIGTestLALPython.t3 = +t1 |
Definition at line 1093 of file SWIGTestLALPython.py.
SWIGTestLALPython.t4struct = lal.swig_lal_test_gps() |
Definition at line 1133 of file SWIGTestLALPython.py.
SWIGTestLALPython.t |
Definition at line 1134 of file SWIGTestLALPython.py.
SWIGTestLALPython.t5 = LIGOTimeGPS("1000") |
Definition at line 1136 of file SWIGTestLALPython.py.
SWIGTestLALPython.tmy = my_gps_class(987, 654321) |
Definition at line 1174 of file SWIGTestLALPython.py.
SWIGTestLALPython.tsw = LIGOTimeGPS(tmy) |
Definition at line 1175 of file SWIGTestLALPython.py.
SWIGTestLALPython.u1 = lal.Unit("kg m s^-2") |
Definition at line 1194 of file SWIGTestLALPython.py.
int SWIGTestLALPython.u2 = lal.MeterUnit * lal.KiloGramUnit / lal.SecondUnit ** 2 |
Definition at line 1198 of file SWIGTestLALPython.py.
SWIGTestLALPython.creator = getattr(lal, 'Create{}FrequencySeries'.format(datatype)) |
Definition at line 1252 of file SWIGTestLALPython.py.
SWIGTestLALPython.pickled = pickle.dumps(a, 0) |
Definition at line 1256 of file SWIGTestLALPython.py.
dictionary SWIGTestLALPython.pydict |
Definition at line 1283 of file SWIGTestLALPython.py.
SWIGTestLALPython.laldict = lal.CreateDict() |
Definition at line 1296 of file SWIGTestLALPython.py.