Skip to content
Snippets Groups Projects
Commit 5466f0c9 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Merge branch 'cherry-pick-365bf803' into 'master'

Fix sftfilenames and sftfilepath for multiple detectors

See merge request !5
parents e74d5b38 d1c55605
Branches
Tags
No related merge requests found
......@@ -940,10 +940,13 @@ class Writer(BaseSearchClass):
self.data_duration = self.maxStartTime - self.minStartTime
numSFTs = int(float(self.data_duration) / self.Tsft)
self.sftfilename = lalpulsar.OfficialSFTFilename(
'H', '1', numSFTs, self.Tsft, self.minStartTime,
self.sftfilenames = [
lalpulsar.OfficialSFTFilename(
dets[0], dets[1], numSFTs, self.Tsft, self.minStartTime,
self.data_duration, self.label)
self.sftfilepath = '{}/{}'.format(self.outdir, self.sftfilename)
for dets in self.detectors.split(',')]
self.sftfilepath = ';'.join([
'{}/{}'.format(self.outdir, fn) for fn in self.sftfilenames])
self.calculate_fmin_Band()
def check_inputs(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment