Helpful parent class for row objects. Also used as the default row
class by Table instances. Provides an __init__() method that accepts
keyword arguments from which the object's attributes are initialized.
Also provides .__getstate__() and .__setstate__() methods to allow row
objects to be pickled (otherwise, because they all use __slots__ to
reduce their memory footprint, they aren't pickleable).
|
get_bestnr(self,
index=4.0,
nhigh=3.0,
null_snr_threshold=4.25,
null_grad_thresh=20.0,
null_grad_val=0.2)
Return the BestNR statistic for this row. |
source code
|
|
|
get_coinc_chisq(self)
@returns the coincident chisq for this row |
source code
|
|
|
get_coinc_snr(self)
Get the coincident SNR for this row. |
source code
|
|
|
|
|
get_id_parts(self)
Return the three pieces of the int_8s-style event_id. |
source code
|
|
|
get_ifos(self)
Return a set of the instruments for this row. |
source code
|
|
|
get_new_snr(self,
index=4.0,
nhigh=3.0,
column=' chisq ' ) |
source code
|
|
|
get_null_chisq(self)
@returns the coherent null chisq for this row |
source code
|
|
|
get_null_snr(self)
Get the coherent Null SNR for this row. |
source code
|
|
|
|
|
|
|
get_reduced_coinc_chisq(self)
@returns the coincident chisq per degree of freedom for this row |
source code
|
|
|
|
|
get_reduced_sngl_bank_chisq(self,
instrument) |
source code
|
|
|
|
|
get_reduced_sngl_cont_chisq(self,
instrument) |
source code
|
|
|
get_slide_number(self)
Return the slide-number for this trigger |
source code
|
|
|
get_sngl_chisq(self,
instrument)
@returns the single-detector chisq for the given instrument for this
row |
source code
|
|
|
get_sngl_chisqs(self)
@returns a dictionary of single-detector chisqs for this row. |
source code
|
|
|
get_sngl_new_snr(self,
ifo,
column=' chisq ' ,
index=4.0,
nhigh=3.0) |
source code
|
|
|
get_sngl_new_snrs(self,
column=' chisq ' ,
index=4.0,
nhigh=3.0)
@returns a dictionary of single-detector newSNRs for this row. |
source code
|
|
|
get_sngl_snr(self,
instrument)
Get the single-detector SNR for the given instrument for this row |
source code
|
|
|
get_sngl_snrs(self)
Return a dictionary of single-detector SNRs for this row. |
source code
|
|
|
set_ifos(self,
instruments)
Serialize a sequence of instruments into the ifos attribute. |
source code
|
|
Inherited from table.Table.RowType :
__getstate__ ,
__init__ ,
__setstate__
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|