Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
dd16f583
There was a problem fetching the pipeline summary.
Commit
dd16f583
authored
6 years ago
by
Gregory Ashton
Browse files
Options
Downloads
Plain Diff
Merge branch 'clean-up-of-detectors' of git.ligo.org:Monash/tupak into clean-up-of-detectors
parents
d78e4bf5
44f4fcdf
No related branches found
No related tags found
1 merge request
!72
Clean up of detectors
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tupak/gw/detector.py
+9
-6
9 additions, 6 deletions
tupak/gw/detector.py
with
9 additions
and
6 deletions
tupak/gw/detector.py
+
9
−
6
View file @
dd16f583
...
...
@@ -18,7 +18,7 @@ class InterferometerSet(list):
def
__init__
(
self
,
interferometers
):
"""
Instantiate a InterferometerSet
The InterferometerSet contain
e
s a list of Interferometer objects, each
The InterferometerSet contains a list of Interferometer objects, each
object has the data used in evaluating the likelihood
Parameters
...
...
@@ -32,16 +32,15 @@ class InterferometerSet(list):
if
type
(
ifo
)
!=
Interferometer
:
raise
ValueError
(
"
Input list of interferometers are not all Interferometer objects
"
)
self
.
interferometers
=
interferometers
self
.
number_of_interferometers
=
len
(
interferometers
)
self
.
_check_interferometers
()
def
_check_interferometers
(
self
):
"""
Check certain aspects of the set are the same
"""
samesi
es
=
[
'
duration
'
,
'
start_time
'
,
'
sampling_frequency
'
]
for
attribute
in
samesi
es
:
consistent_attribut
es
=
[
'
duration
'
,
'
start_time
'
,
'
sampling_frequency
'
]
for
attribute
in
consistent_attribut
es
:
x
=
[
getattr
(
interferometer
.
strain_data
,
attribute
)
for
interferometer
in
self
.
interferometers
]
if
n
p
.
mean
(
x
)
!=
x
[
0
]
:
if
n
ot
all
(
y
==
x
[
0
]
for
y
in
x
)
:
raise
ValueError
(
"
The {} of all interferometers are not the same
"
.
format
(
attribute
))
def
__iter__
(
self
):
...
...
@@ -50,6 +49,10 @@ class InterferometerSet(list):
yield
self
.
interferometers
[
i
]
i
+=
1
@property
def
number_of_interferometers
(
self
):
return
len
(
self
.
interferometers
)
@property
def
duration
(
self
):
return
self
.
interferometers
[
0
].
strain_data
.
duration
...
...
@@ -167,7 +170,7 @@ class InterferometerStrainData(object):
Parameters
----------
power_spectral_density: tupak.gw.detect
e
r.PowerSpectralDensity
power_spectral_density: tupak.gw.detect
o
r.PowerSpectralDensity
A PowerSpectralDensity object used to generate the data
sampling_frequency: float
The sampling frequency (in Hz)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment