summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LICENSE.txt (renamed from simpl/license.txt)0
-rw-r--r--README.md20
-rw-r--r--simpl/__init__.py16
-rw-r--r--simpl/audio.py16
-rw-r--r--simpl/basetypes.py16
-rw-r--r--simpl/examples/plotpartials.py16
-rw-r--r--simpl/examples/plotpeaks.py16
-rw-r--r--simpl/examples/residual.py16
-rw-r--r--simpl/examples/resynth.py16
-rw-r--r--simpl/examples/timestretch.py16
-rw-r--r--simpl/fx.py16
-rw-r--r--simpl/loris.py16
-rw-r--r--simpl/lp.py16
-rw-r--r--simpl/mq.py16
-rw-r--r--simpl/plot/__init__.py16
-rw-r--r--simpl/plot/colours.py16
-rw-r--r--simpl/sms.py16
-rw-r--r--simpl/sndobj.py16
-rw-r--r--src/mq/mq.cpp18
-rw-r--r--src/mq/mq.h16
-rw-r--r--src/simpl/base.cpp19
-rw-r--r--src/simpl/base.h18
-rw-r--r--src/simpl/exceptions.cpp19
-rw-r--r--src/simpl/exceptions.h20
-rw-r--r--src/simpl/simplloris.h18
-rw-r--r--tests/debug.py16
-rw-r--r--tests/signals.py16
-rw-r--r--tests/test_loris.py16
-rw-r--r--tests/test_lp.py16
-rw-r--r--tests/test_peakdetection.py16
-rw-r--r--tests/test_sms.py16
-rw-r--r--tests/test_sms_old.py16
-rw-r--r--tests/test_sndobj.py16
-rw-r--r--tests/testbase.cpp19
34 files changed, 2 insertions, 549 deletions
diff --git a/simpl/license.txt b/LICENSE.txt
index 408adcf..408adcf 100644
--- a/simpl/license.txt
+++ b/LICENSE.txt
diff --git a/README.md b/README.md
index 513e011..e7de851 100644
--- a/README.md
+++ b/README.md
@@ -3,29 +3,11 @@ Sinusoidal Modelling - A Python Library (SiMPL)
Version 0.3
-Copyright (c) 2011 John Glover, National University of Ireland, Maynooth
+Copyright (c) 2012 John Glover, National University of Ireland, Maynooth
http://simplsound.sourceforge.net
j@johnglover.net
-License
--------
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-
Introduction
------------
diff --git a/simpl/__init__.py b/simpl/__init__.py
index a58b248..9a1742b 100644
--- a/simpl/__init__.py
+++ b/simpl/__init__.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
from basetypes import Frame, Peak, Partial
from basetypes import PeakDetection, PartialTracking, Synthesis, Residual
from basetypes import compare_peak_amps, compare_peak_freqs
diff --git a/simpl/audio.py b/simpl/audio.py
index 63f2200..99bc439 100644
--- a/simpl/audio.py
+++ b/simpl/audio.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import numpy as np
from scipy.io.wavfile import read, write
import simpl
diff --git a/simpl/basetypes.py b/simpl/basetypes.py
index aa837f1..182be21 100644
--- a/simpl/basetypes.py
+++ b/simpl/basetypes.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import numpy as np
diff --git a/simpl/examples/plotpartials.py b/simpl/examples/plotpartials.py
index 279e576..b86b69a 100644
--- a/simpl/examples/plotpartials.py
+++ b/simpl/examples/plotpartials.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import matplotlib.pyplot as plt
from scipy.io.wavfile import read
diff --git a/simpl/examples/plotpeaks.py b/simpl/examples/plotpeaks.py
index d74dc1a..67cfb1b 100644
--- a/simpl/examples/plotpeaks.py
+++ b/simpl/examples/plotpeaks.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import matplotlib.pyplot as plt
from scipy.io.wavfile import read
diff --git a/simpl/examples/residual.py b/simpl/examples/residual.py
index 8956b85..6e7a0cb 100644
--- a/simpl/examples/residual.py
+++ b/simpl/examples/residual.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import numpy as np
from scipy.io.wavfile import read, write
diff --git a/simpl/examples/resynth.py b/simpl/examples/resynth.py
index b203e9c..7288049 100644
--- a/simpl/examples/resynth.py
+++ b/simpl/examples/resynth.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import numpy as np
from scipy.io.wavfile import read, write
diff --git a/simpl/examples/timestretch.py b/simpl/examples/timestretch.py
index c45fb5e..f5870ac 100644
--- a/simpl/examples/timestretch.py
+++ b/simpl/examples/timestretch.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
from simpl.fx import time_stretch
from scipy.io.wavfile import read, write
diff --git a/simpl/fx.py b/simpl/fx.py
index 069ce2c..d73d50d 100644
--- a/simpl/fx.py
+++ b/simpl/fx.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
from simpl import Partial
import numpy as np
diff --git a/simpl/loris.py b/simpl/loris.py
index 0e09d11..b8156ac 100644
--- a/simpl/loris.py
+++ b/simpl/loris.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import numpy as np
import simpl
from simpl.simplloris import LorisPeakDetection
diff --git a/simpl/lp.py b/simpl/lp.py
index 1f7720f..b458c69 100644
--- a/simpl/lp.py
+++ b/simpl/lp.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import numpy as np
diff --git a/simpl/mq.py b/simpl/mq.py
index f904c03..580966a 100644
--- a/simpl/mq.py
+++ b/simpl/mq.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import numpy as np
import operator as op
diff --git a/simpl/plot/__init__.py b/simpl/plot/__init__.py
index 0c485f0..d328886 100644
--- a/simpl/plot/__init__.py
+++ b/simpl/plot/__init__.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import matplotlib.pyplot as plt
import colours
diff --git a/simpl/plot/colours.py b/simpl/plot/colours.py
index b85d48d..e184341 100644
--- a/simpl/plot/colours.py
+++ b/simpl/plot/colours.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2010 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
# These colour maps are based on the colour schemes in gheat:
# http://code.google.com/p/gheat/
diff --git a/simpl/sms.py b/simpl/sms.py
index fa708ad..37d8f81 100644
--- a/simpl/sms.py
+++ b/simpl/sms.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
from simpl import simplsms
diff --git a/simpl/sndobj.py b/simpl/sndobj.py
index ef866b4..e64fcc3 100644
--- a/simpl/sndobj.py
+++ b/simpl/sndobj.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
from simpl import simplsndobj
import numpy as np
diff --git a/src/mq/mq.cpp b/src/mq/mq.cpp
index e842ac6..26b2674 100644
--- a/src/mq/mq.cpp
+++ b/src/mq/mq.cpp
@@ -1,23 +1,5 @@
-/* Copyright (c) 2010 John Glover, National University of Ireland, Maynooth
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
#include "mq.h"
-
/* -------------------------------------------------------------------------
* Initialisation and destruction
*/
diff --git a/src/mq/mq.h b/src/mq/mq.h
index e428f7e..611203d 100644
--- a/src/mq/mq.h
+++ b/src/mq/mq.h
@@ -1,19 +1,3 @@
-/* Copyright (c) 2010 John Glover, National University of Ireland, Maynooth
-
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
#ifndef _MQ_H
#define _MQ_H
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp
index 16a0f8a..2ec670e 100644
--- a/src/simpl/base.cpp
+++ b/src/simpl/base.cpp
@@ -1,22 +1,3 @@
-/*
- * Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
#include <iostream>
#include "base.h"
diff --git a/src/simpl/base.h b/src/simpl/base.h
index 6ca1b97..2657cf1 100644
--- a/src/simpl/base.h
+++ b/src/simpl/base.h
@@ -1,23 +1,5 @@
#ifndef BASE_H
#define BASE_H
-/*
- * Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
#include <vector>
#include <string>
diff --git a/src/simpl/exceptions.cpp b/src/simpl/exceptions.cpp
index d64ae6f..92b3840 100644
--- a/src/simpl/exceptions.cpp
+++ b/src/simpl/exceptions.cpp
@@ -1,22 +1,3 @@
-/*
- * Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
#include "exceptions.h"
#include <string>
diff --git a/src/simpl/exceptions.h b/src/simpl/exceptions.h
index f556b6a..90baafa 100644
--- a/src/simpl/exceptions.h
+++ b/src/simpl/exceptions.h
@@ -1,24 +1,6 @@
#ifndef EXCEPTIONS_H
#define EXCEPTIONS_H
-/*
- * Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
+//
// Mostly taken from the LorisException.h file in Loris (http://www.cerlsoundgroup.org/loris)
#include <stdexcept>
diff --git a/src/simpl/simplloris.h b/src/simpl/simplloris.h
index fe2f9fc..b54d155 100644
--- a/src/simpl/simplloris.h
+++ b/src/simpl/simplloris.h
@@ -1,23 +1,5 @@
#ifndef SIMPLLORIS_H
#define SIMPLLORIS_H
-/*
- * Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
#include <vector>
diff --git a/tests/debug.py b/tests/debug.py
index 084df72..d91b008 100644
--- a/tests/debug.py
+++ b/tests/debug.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2010 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
def print_peaks(frames):
for n, f in enumerate(frames):
for p in f:
diff --git a/tests/signals.py b/tests/signals.py
index 5b04c03..8083f94 100644
--- a/tests/signals.py
+++ b/tests/signals.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2010 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import numpy as np
diff --git a/tests/test_loris.py b/tests/test_loris.py
index 0ec6d75..e246bc1 100644
--- a/tests/test_loris.py
+++ b/tests/test_loris.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import loris
import scipy as sp
diff --git a/tests/test_lp.py b/tests/test_lp.py
index 8d80ba2..ee13b51 100644
--- a/tests/test_lp.py
+++ b/tests/test_lp.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2010 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
from simpl import lp
import numpy as np
diff --git a/tests/test_peakdetection.py b/tests/test_peakdetection.py
index 1257f02..d32423e 100644
--- a/tests/test_peakdetection.py
+++ b/tests/test_peakdetection.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
import numpy as np
from scipy.io.wavfile import read
diff --git a/tests/test_sms.py b/tests/test_sms.py
index ca51f3f..5b4cc4d 100644
--- a/tests/test_sms.py
+++ b/tests/test_sms.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import simpl
from simpl import simplsms
import pysms
diff --git a/tests/test_sms_old.py b/tests/test_sms_old.py
index 7ed8724..b28cd9f 100644
--- a/tests/test_sms_old.py
+++ b/tests/test_sms_old.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, M 02111-1307 USA
-
import unittest
from pysms import SMS_Header, SMS_Data, SMS_SndHeader, SMS_AnalParams, \
sms_openSF, sms_errorString, sms_getSound, \
diff --git a/tests/test_sndobj.py b/tests/test_sndobj.py
index 527a9d7..befcdb2 100644
--- a/tests/test_sndobj.py
+++ b/tests/test_sndobj.py
@@ -1,19 +1,3 @@
-# Copyright (c) 2009 John Glover, National University of Ireland, Maynooth
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
import unittest
import sndobj
import simpl
diff --git a/tests/testbase.cpp b/tests/testbase.cpp
index f214a30..a37024f 100644
--- a/tests/testbase.cpp
+++ b/tests/testbase.cpp
@@ -1,22 +1,3 @@
-/*
- * Copyright (c) 2009-2011 John Glover, National University of Ireland, Maynooth
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- */
-
#include <iostream>
#include <cppunit/ui/text/TextTestRunner.h>
#include <cppunit/TestResult.h>