Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
PyFstat
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
David Keitel
PyFstat
Commits
4a640fbc
Commit
4a640fbc
authored
Apr 23, 2018
by
Gregory Ashton
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop-GA' of gitlab.aei.uni-hannover.de:GregAshton/PyFstat into develop-GA
parents
f7aab64d
81bedf04
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
pyfstat/core.py
pyfstat/core.py
+4
-8
No files found.
pyfstat/core.py
View file @
4a640fbc
...
@@ -136,7 +136,7 @@ def _get_dictionary_from_lines(lines, comments, raise_error):
...
@@ -136,7 +136,7 @@ def _get_dictionary_from_lines(lines, comments, raise_error):
def
predict_fstat
(
h0
,
cosi
,
psi
,
Alpha
,
Delta
,
Freq
,
sftfilepattern
,
def
predict_fstat
(
h0
,
cosi
,
psi
,
Alpha
,
Delta
,
Freq
,
sftfilepattern
,
minStartTime
,
maxStartTime
,
IFO
=
None
,
assumeSqrtSX
=
None
,
minStartTime
,
maxStartTime
,
IFO
s
=
None
,
assumeSqrtSX
=
None
,
tempory_filename
=
'fs.tmp'
,
**
kwargs
):
tempory_filename
=
'fs.tmp'
,
**
kwargs
):
""" Wrapper to lalapps_PredictFstat
""" Wrapper to lalapps_PredictFstat
...
@@ -147,7 +147,7 @@ def predict_fstat(h0, cosi, psi, Alpha, Delta, Freq, sftfilepattern,
...
@@ -147,7 +147,7 @@ def predict_fstat(h0, cosi, psi, Alpha, Delta, Freq, sftfilepattern,
sftfilepattern : str
sftfilepattern : str
Pattern matching the sftfiles to use.
Pattern matching the sftfiles to use.
minStartTime, maxStartTime : int
minStartTime, maxStartTime : int
IFO : str
IFO
s
: str
See `lalapps_PredictFstat --help`
See `lalapps_PredictFstat --help`
assumeSqrtSX : float or None
assumeSqrtSX : float or None
See `lalapps_PredictFstat --help`, if None this option is not used
See `lalapps_PredictFstat --help`, if None this option is not used
...
@@ -171,12 +171,8 @@ def predict_fstat(h0, cosi, psi, Alpha, Delta, Freq, sftfilepattern,
...
@@ -171,12 +171,8 @@ def predict_fstat(h0, cosi, psi, Alpha, Delta, Freq, sftfilepattern,
cl_pfs
.
append
(
"--DataFiles='{}'"
.
format
(
sftfilepattern
))
cl_pfs
.
append
(
"--DataFiles='{}'"
.
format
(
sftfilepattern
))
if
assumeSqrtSX
:
if
assumeSqrtSX
:
cl_pfs
.
append
(
"--assumeSqrtSX={}"
.
format
(
assumeSqrtSX
))
cl_pfs
.
append
(
"--assumeSqrtSX={}"
.
format
(
assumeSqrtSX
))
if
IFO
:
#if IFOs:
if
','
in
IFO
:
# cl_pfs.append("--IFOs={}".format(IFOs))
logging
.
warning
(
'Multiple detector selection not available, using'
' all available data'
)
else
:
cl_pfs
.
append
(
"--IFO={}"
.
format
(
IFO
))
cl_pfs
.
append
(
"--minStartTime={}"
.
format
(
int
(
minStartTime
)))
cl_pfs
.
append
(
"--minStartTime={}"
.
format
(
int
(
minStartTime
)))
cl_pfs
.
append
(
"--maxStartTime={}"
.
format
(
int
(
maxStartTime
)))
cl_pfs
.
append
(
"--maxStartTime={}"
.
format
(
int
(
maxStartTime
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment