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
bb9b5904
There was a problem fetching the pipeline summary.
Commit
bb9b5904
authored
6 years ago
by
Sylvia Biscoveanu
Browse files
Options
Downloads
Patches
Plain Diff
Add two extra seconds of data when reading from frame
parent
8c1dcfe5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!73
Add two extra seconds of data when reading from frame
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tupak/gw/detector.py
+1
-1
1 addition, 1 deletion
tupak/gw/detector.py
with
1 addition
and
1 deletion
tupak/gw/detector.py
+
1
−
1
View file @
bb9b5904
...
...
@@ -501,7 +501,7 @@ class Interferometer(object):
elif
frame_file
is
not
None
:
logging
.
info
(
'
Reading data from frame, {}.
'
.
format
(
self
.
name
))
strain
=
tupak
.
gw
.
utils
.
read_frame_file
(
frame_file
,
t1
=
epoch
,
t2
=
epoch
+
duration
,
channel
=
channel_name
,
resample
=
sampling_frequency
)
frame_file
,
t1
=
epoch
-
1
,
t2
=
epoch
+
duration
+
1
,
channel
=
channel_name
,
resample
=
sampling_frequency
)
frequency_domain_strain
,
frequencies
=
tupak
.
gw
.
utils
.
process_strain_data
(
strain
,
**
kwargs
)
if
overwrite_psd
:
self
.
power_spectral_density
=
PowerSpectralDensity
(
...
...
This diff is collapsed.
Click to expand it.
Gregory Ashton
@gregory.ashton
mentioned in commit
ef251ed6
·
6 years ago
mentioned in commit
ef251ed6
mentioned in commit ef251ed66e91abf2651149bba2685a1762bb6b68
Toggle commit list
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