Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Keitel
PyFstat
Commits
f8f2b07e
Commit
f8f2b07e
authored
Jan 31, 2018
by
David Keitel
Browse files
writer function for atoms (TransientGridSearch)
parent
d952cd3e
Changes
2
Hide whitespace changes
Inline
Side-by-side
pyfstat/core.py
View file @
f8f2b07e
...
...
@@ -907,6 +907,18 @@ class ComputeFstat(BaseSearchClass):
else
:
return
ax
def
write_atoms_to_file
(
self
,
fnamebase
=
''
):
multiFatoms
=
getattr
(
self
.
FstatResults
,
'multiFatoms'
,
None
)
if
multiFatoms
and
multiFatoms
[
0
]:
dopplerName
=
lalpulsar
.
PulsarDopplerParams2String
(
self
.
PulsarDopplerParams
)
#fnameAtoms = os.path.join(self.outdir,'Fstatatoms_%s.dat' % dopplerName)
fnameAtoms
=
fnamebase
+
'_Fstatatoms_%s.dat'
%
dopplerName
fo
=
lal
.
FileOpen
(
fnameAtoms
,
'w'
)
lalpulsar
.
write_MultiFstatAtoms_to_fp
(
fo
,
multiFatoms
[
0
]
)
del
fo
# instead of lal.FileClose() which is not SWIG-exported
else
:
raise
RuntimeError
(
'Cannot print atoms vector to file: no FstatResults.multiFatoms, or it is None!'
)
class
SemiCoherentSearch
(
ComputeFstat
):
""" A semi-coherent search """
...
...
pyfstat/grid_based_searches.py
View file @
f8f2b07e
...
...
@@ -354,7 +354,8 @@ class TransientGridSearch(GridSearch):
input_arrays
=
False
,
assumeSqrtSX
=
None
,
transientWindowType
=
None
,
t0Band
=
None
,
tauBand
=
None
,
dt0
=
None
,
dtau
=
None
,
outputTransientFstatMap
=
False
):
outputTransientFstatMap
=
False
,
outputAtoms
=
False
):
"""
Parameters
----------
...
...
@@ -442,6 +443,8 @@ class TransientGridSearch(GridSearch):
thisCand
+=
[
windowRange
.
t0
+
maxidx
[
0
]
*
windowRange
.
dt0
,
windowRange
.
tau
+
maxidx
[
1
]
*
windowRange
.
dtau
]
data
.
append
(
thisCand
)
if
self
.
outputAtoms
:
self
.
search
.
write_atoms_to_file
(
os
.
path
.
splitext
(
self
.
out_file
)[
0
])
data
=
np
.
array
(
data
,
dtype
=
np
.
float
)
if
return_data
:
...
...
Write
Preview
Supports
Markdown
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