Tools¶
Standard usage of gwtoolbox involves instantiating Tools from Earth or space
Earth¶
-
class
gwtoolbox.tools_earth.
Tools
(detID, popID, cosmos, det_setup=None)[source]¶ This is a class with tools to manipulate GW detectors and sources on Earth.
Parameters: -
detector
¶ detector setup class
Type: class
-
ant_pat
¶ detector shape
Type: array of dtype float
-
noise
¶ detector noise
Type: array of dtype float
-
list_param_errors
()[source]¶ Return array of final parameter errors. It can be used only after list_params is used.
Returns: errors m1,m2,chi Return type: (list of arrays of dtype float)
-
Space¶
-
class
gwtoolbox.tools_space.
Tools
(detID, popID, cosmos, det_setup=None)[source]¶ This is a class with tools to manipulate GW detectors and sources in space.
Parameters: -
detector
¶ detector setup class
Type: class
-
ant_pat
¶ detector shape
Type: array of dtype float
-
noise
¶ detector noise
Type: array of dtype float
-
list_param_errors
()[source]¶ Return array of final parameter errors. It can be used only when list_params was used before.
Returns: errors m1,m2,chi Return type: (array of dtype float)
-