Skip to content
Snippets Groups Projects
Commit 874afcd9 authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

fix FilterCavity checking quantum.py

don't look for FilterCavity if "Freq Dependent" not defined.
parent b3ed73c2
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ def shotrad(f, ifo, verbose=False):
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Inject squeezed field into the IFO via some filter cavities
if 'FilterCavity' in ifo.Squeezer.__dict__ and sqzType == 'Freq Dependent':
if sqzType == 'Freq Dependent' and 'FilterCavity' in ifo.Squeezer.__dict__:
if verbose:
print(' Applying %d input filter cavities' % np.atleast_1d(ifo.Squeezer.FilterCavity).size)
Mr, Msqz = sqzFilterCavityChain(f, np.atleast_1d(ifo.Squeezer.FilterCavity), Msqz)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment