From 929d5922d98794f4b2a838737fc6c4bf9694f164 Mon Sep 17 00:00:00 2001
From: Jameson Graef Rollins <jrollins@finestructure.net>
Date: Wed, 23 May 2018 22:20:31 -0700
Subject: [PATCH] make deepcopy of ifo object for matlab processing

---
 gwinc/gwinc_matlab.py | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gwinc/gwinc_matlab.py b/gwinc/gwinc_matlab.py
index d3e87e47..d980f2d6 100644
--- a/gwinc/gwinc_matlab.py
+++ b/gwinc/gwinc_matlab.py
@@ -1,4 +1,5 @@
 import os
+import copy
 import tempfile
 import scipy.io
 import numpy as np
@@ -143,7 +144,7 @@ def _rename_noises(d):
     return nd
 
 
-def gwinc_matlab(f, ifo, plot=False):
+def gwinc_matlab(f, ifoin, plot=False):
     """Execute gwinc in MATLAB with the specified ifo model.
 
     This uses the python matlab.engine (see Matlab class) to calculate
@@ -157,11 +158,12 @@ def gwinc_matlab(f, ifo, plot=False):
     the noise budget.
 
     """
-    matlab = Matlab()
+    ifo = copy.deepcopy(ifoin)
 
-    # add Constants attribute to ifo structure
     ifo_matlab_transform(ifo)
 
+    matlab = Matlab()
+
     matlab.load_array('f', f)
     matlab.load_struct('ifo', ifo)
 
-- 
GitLab