From 77f0c00c2f9b446807ca14f323f301263bf01b45 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Sat, 16 Mar 2019 13:22:06 -0500 Subject: add GPLv3 license --- src/calculate-csda-range.c | 16 ++++++++++++++++ src/calculate_limits.c | 16 ++++++++++++++++ src/db.c | 16 ++++++++++++++++ src/db.h | 16 ++++++++++++++++ src/dc.c | 16 ++++++++++++++++ src/dc.h | 16 ++++++++++++++++ src/dqxx.c | 16 ++++++++++++++++ src/dqxx.h | 16 ++++++++++++++++ src/electron.c | 16 ++++++++++++++++ src/electron.h | 16 ++++++++++++++++ src/event.h | 16 ++++++++++++++++ src/find_peaks.c | 16 ++++++++++++++++ src/find_peaks.h | 16 ++++++++++++++++ src/fit.c | 16 ++++++++++++++++ src/id_particles.h | 16 ++++++++++++++++ src/likelihood.c | 16 ++++++++++++++++ src/likelihood.h | 16 ++++++++++++++++ src/misc.c | 16 ++++++++++++++++ src/misc.h | 16 ++++++++++++++++ src/mt19937ar.h | 16 ++++++++++++++++ src/muon.c | 16 ++++++++++++++++ src/muon.h | 16 ++++++++++++++++ src/optics.c | 16 ++++++++++++++++ src/optics.h | 16 ++++++++++++++++ src/pack2b.c | 16 ++++++++++++++++ src/pack2b.h | 16 ++++++++++++++++ src/path.c | 16 ++++++++++++++++ src/path.h | 16 ++++++++++++++++ src/pdg.c | 16 ++++++++++++++++ src/pdg.h | 16 ++++++++++++++++ src/pmt.c | 16 ++++++++++++++++ src/pmt.h | 16 ++++++++++++++++ src/pmt_response.c | 16 ++++++++++++++++ src/pmt_response.h | 16 ++++++++++++++++ src/proton.c | 16 ++++++++++++++++ src/proton.h | 16 ++++++++++++++++ src/quad.c | 16 ++++++++++++++++ src/quad.h | 16 ++++++++++++++++ src/quantum_efficiency.c | 16 ++++++++++++++++ src/quantum_efficiency.h | 16 ++++++++++++++++ src/random.c | 16 ++++++++++++++++ src/random.h | 16 ++++++++++++++++ src/scattering.c | 16 ++++++++++++++++ src/scattering.h | 16 ++++++++++++++++ src/sno.h | 16 ++++++++++++++++ src/sno_charge.c | 16 ++++++++++++++++ src/sno_charge.h | 16 ++++++++++++++++ src/solid_angle.c | 16 ++++++++++++++++ src/solid_angle.h | 16 ++++++++++++++++ src/sort.c | 16 ++++++++++++++++ src/sort.h | 16 ++++++++++++++++ src/test-charge.c | 16 ++++++++++++++++ src/test-find-peaks.c | 16 ++++++++++++++++ src/test-likelihood.c | 16 ++++++++++++++++ src/test-path.c | 16 ++++++++++++++++ src/test-time-pdf.c | 16 ++++++++++++++++ src/test-vector.c | 16 ++++++++++++++++ src/test-zebra.c | 16 ++++++++++++++++ src/test.c | 16 ++++++++++++++++ src/util.c | 16 ++++++++++++++++ src/util.h | 16 ++++++++++++++++ src/vector.c | 16 ++++++++++++++++ src/vector.h | 16 ++++++++++++++++ src/zdab_utils.c | 16 ++++++++++++++++ src/zdab_utils.h | 16 ++++++++++++++++ src/zebra.c | 16 ++++++++++++++++ src/zebra.h | 16 ++++++++++++++++ 67 files changed, 1072 insertions(+) (limited to 'src') diff --git a/src/calculate-csda-range.c b/src/calculate-csda-range.c index 7d71096..5aa03c2 100644 --- a/src/calculate-csda-range.c +++ b/src/calculate-csda-range.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include /* for size_t, strtod() */ diff --git a/src/calculate_limits.c b/src/calculate_limits.c index 6dd37f0..c4e0528 100644 --- a/src/calculate_limits.c +++ b/src/calculate_limits.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include /* For M_PI */ diff --git a/src/db.c b/src/db.c index 5b29b66..2d5df99 100644 --- a/src/db.c +++ b/src/db.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "db.h" #include /* for fopen(), etc. */ #include /* for strerror(), etc. */ diff --git a/src/db.h b/src/db.h index 5488ae3..4344b94 100644 --- a/src/db.h +++ b/src/db.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef DB_H #define DB_H diff --git a/src/dc.c b/src/dc.c index 897a645..9d7ee8e 100644 --- a/src/dc.c +++ b/src/dc.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "event.h" #include "sort.h" #include /* for size_t */ diff --git a/src/dc.h b/src/dc.h index 34ddf09..503fb25 100644 --- a/src/dc.h +++ b/src/dc.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef DC_H #define DC_H diff --git a/src/dqxx.c b/src/dqxx.c index 8aa32c0..7cf77f3 100644 --- a/src/dqxx.c +++ b/src/dqxx.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "dqxx.h" #include "db.h" #include /* for uint32_t */ diff --git a/src/dqxx.h b/src/dqxx.h index f5ebe1b..15c9c7a 100644 --- a/src/dqxx.h +++ b/src/dqxx.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef DQXX_H #define DQXX_H diff --git a/src/electron.c b/src/electron.c index 2f6902e..957b278 100644 --- a/src/electron.c +++ b/src/electron.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include diff --git a/src/electron.h b/src/electron.h index 61de2a3..98201b8 100644 --- a/src/electron.h +++ b/src/electron.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef ELECTRON_H #define ELECTRON_H diff --git a/src/event.h b/src/event.h index 60bdbf7..a561a1f 100644 --- a/src/event.h +++ b/src/event.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef EVENT_H #define EVENT_H diff --git a/src/find_peaks.c b/src/find_peaks.c index 008e549..04bf40a 100644 --- a/src/find_peaks.c +++ b/src/find_peaks.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "find_peaks.h" #include "vector.h" #include "event.h" diff --git a/src/find_peaks.h b/src/find_peaks.h index 7ca798b..8511af6 100644 --- a/src/find_peaks.h +++ b/src/find_peaks.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef FIND_PEAKS #define FIND_PEAKS diff --git a/src/fit.c b/src/fit.c index 31c5daf..35d5950 100644 --- a/src/fit.c +++ b/src/fit.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "likelihood.h" #include #include "zebra.h" diff --git a/src/id_particles.h b/src/id_particles.h index df1bf93..d53b5fe 100644 --- a/src/id_particles.h +++ b/src/id_particles.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef ID_PARTICLES_H #define ID_PARTICLES_H diff --git a/src/likelihood.c b/src/likelihood.c index e3814a1..3e20b7e 100644 --- a/src/likelihood.c +++ b/src/likelihood.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "likelihood.h" #include /* for size_t */ #include "pmt.h" diff --git a/src/likelihood.h b/src/likelihood.h index 4b72742..4d0160d 100644 --- a/src/likelihood.h +++ b/src/likelihood.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef LIKELIHOOD_H #define LIKELIHOOD_H diff --git a/src/misc.c b/src/misc.c index ce27274..a36e9c9 100644 --- a/src/misc.c +++ b/src/misc.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "misc.h" #include #include /* for size_t */ diff --git a/src/misc.h b/src/misc.h index 20197bb..7dad51c 100644 --- a/src/misc.h +++ b/src/misc.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef MISC_H #define MISC_H diff --git a/src/mt19937ar.h b/src/mt19937ar.h index d544847..bad261e 100644 --- a/src/mt19937ar.h +++ b/src/mt19937ar.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef MT19937AR_H #define MT19937AR_H diff --git a/src/muon.c b/src/muon.c index 4b161ed..dabf9bc 100644 --- a/src/muon.c +++ b/src/muon.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include diff --git a/src/muon.h b/src/muon.h index 456c11e..e259999 100644 --- a/src/muon.h +++ b/src/muon.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef MUON_H #define MUON_H diff --git a/src/optics.c b/src/optics.c index 4a0722a..d626bf7 100644 --- a/src/optics.c +++ b/src/optics.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include "optics.h" #include "misc.h" diff --git a/src/optics.h b/src/optics.h index 64796c6..19db2b9 100644 --- a/src/optics.h +++ b/src/optics.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef OPTICS_H #define OPTICS_H diff --git a/src/pack2b.c b/src/pack2b.c index 25e154d..cd8d78c 100644 --- a/src/pack2b.c +++ b/src/pack2b.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include diff --git a/src/pack2b.h b/src/pack2b.h index b63807a..c497d36 100644 --- a/src/pack2b.h +++ b/src/pack2b.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef PACK2B_H #define PACK2B_H diff --git a/src/path.c b/src/path.c index 3904b44..2f168a1 100644 --- a/src/path.c +++ b/src/path.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "path.h" #include #include diff --git a/src/path.h b/src/path.h index b96945b..a3eb712 100644 --- a/src/path.h +++ b/src/path.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef PATH_H #define PATH_H diff --git a/src/pdg.c b/src/pdg.c index a3eb2d5..17a3647 100644 --- a/src/pdg.c +++ b/src/pdg.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "pdg.h" #include "math.h" #include "sno.h" diff --git a/src/pdg.h b/src/pdg.h index df73380..0e062f0 100644 --- a/src/pdg.h +++ b/src/pdg.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef PDG_H #define PDG_H diff --git a/src/pmt.c b/src/pmt.c index 13f3eea..9d284b0 100644 --- a/src/pmt.c +++ b/src/pmt.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "pmt.h" #include #include diff --git a/src/pmt.h b/src/pmt.h index 6be3905..6f5cb10 100644 --- a/src/pmt.h +++ b/src/pmt.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef PMT_H #define PMT_H diff --git a/src/pmt_response.c b/src/pmt_response.c index feda3a6..cedc341 100644 --- a/src/pmt_response.c +++ b/src/pmt_response.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "pmt_response.h" #include "dict.h" #include /* for uint32_t */ diff --git a/src/pmt_response.h b/src/pmt_response.h index 7fd1c1d..fd23ab2 100644 --- a/src/pmt_response.h +++ b/src/pmt_response.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef PMT_RESPONSE_H #define PMT_RESPONSE_H diff --git a/src/proton.c b/src/proton.c index 32b17a1..664d930 100644 --- a/src/proton.c +++ b/src/proton.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include diff --git a/src/proton.h b/src/proton.h index cffeb9f..f658c09 100644 --- a/src/proton.h +++ b/src/proton.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef PROTON_H #define PROTON_H diff --git a/src/quad.c b/src/quad.c index 848a12e..0c1f349 100644 --- a/src/quad.c +++ b/src/quad.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "quad.h" #include "event.h" #include diff --git a/src/quad.h b/src/quad.h index 730f45d..51ff6ee 100644 --- a/src/quad.h +++ b/src/quad.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef QUAD_H #define QUAD_H diff --git a/src/quantum_efficiency.c b/src/quantum_efficiency.c index 200ad2c..d30343f 100644 --- a/src/quantum_efficiency.c +++ b/src/quantum_efficiency.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include diff --git a/src/quantum_efficiency.h b/src/quantum_efficiency.h index bd05950..ae311aa 100644 --- a/src/quantum_efficiency.h +++ b/src/quantum_efficiency.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef QUANTUM_EFFICIENCY_H #define QUANTUM_EFFICIENCY_H diff --git a/src/random.c b/src/random.c index e2e5641..0112ebd 100644 --- a/src/random.c +++ b/src/random.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "random.h" #include diff --git a/src/random.h b/src/random.h index 733279c..dac48f8 100644 --- a/src/random.h +++ b/src/random.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef RANDOM_H #define RANDOM_H diff --git a/src/scattering.c b/src/scattering.c index 68256dc..92e5df0 100644 --- a/src/scattering.c +++ b/src/scattering.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "scattering.h" #include "quantum_efficiency.h" #include diff --git a/src/scattering.h b/src/scattering.h index 69d4c96..265f653 100644 --- a/src/scattering.h +++ b/src/scattering.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef SCATTERING_H #define SCATTERING_H diff --git a/src/sno.h b/src/sno.h index 02366f9..0a605c9 100644 --- a/src/sno.h +++ b/src/sno.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef SNO_H #define SNO_H diff --git a/src/sno_charge.c b/src/sno_charge.c index fcb43d3..f78da38 100644 --- a/src/sno_charge.c +++ b/src/sno_charge.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "sno_charge.h" #include #include diff --git a/src/sno_charge.h b/src/sno_charge.h index 6f513f9..7f7caa2 100644 --- a/src/sno_charge.h +++ b/src/sno_charge.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef SNO_CHARGE_H #define SNO_CHARGE_H diff --git a/src/solid_angle.c b/src/solid_angle.c index a8daa15..98ba0eb 100644 --- a/src/solid_angle.c +++ b/src/solid_angle.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "solid_angle.h" #include #include diff --git a/src/solid_angle.h b/src/solid_angle.h index d0c287c..4785fe6 100644 --- a/src/solid_angle.h +++ b/src/solid_angle.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef SOLID_ANGLE_H #define SOLID_ANGLE_H diff --git a/src/sort.c b/src/sort.c index 788c757..af2b48d 100644 --- a/src/sort.c +++ b/src/sort.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include "sort.h" diff --git a/src/sort.h b/src/sort.h index 4c4b734..b951147 100644 --- a/src/sort.h +++ b/src/sort.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef SORT_H #define SORT_H diff --git a/src/test-charge.c b/src/test-charge.c index 2373beb..b58e94a 100644 --- a/src/test-charge.c +++ b/src/test-charge.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include "sno_charge.h" #include diff --git a/src/test-find-peaks.c b/src/test-find-peaks.c index 361b5fc..e14a794 100644 --- a/src/test-find-peaks.c +++ b/src/test-find-peaks.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include "find_peaks.h" #include "misc.h" diff --git a/src/test-likelihood.c b/src/test-likelihood.c index 45bbfe2..5bb7788 100644 --- a/src/test-likelihood.c +++ b/src/test-likelihood.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "muon.h" #include "random.h" #include "optics.h" diff --git a/src/test-path.c b/src/test-path.c index f403c37..e01a1e2 100644 --- a/src/test-path.c +++ b/src/test-path.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include "path.h" #include /* for size_t */ diff --git a/src/test-time-pdf.c b/src/test-time-pdf.c index d0568f8..f754b49 100644 --- a/src/test-time-pdf.c +++ b/src/test-time-pdf.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include diff --git a/src/test-vector.c b/src/test-vector.c index 74aafa9..e9011f5 100644 --- a/src/test-vector.c +++ b/src/test-vector.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include #include #include "vector.h" diff --git a/src/test-zebra.c b/src/test-zebra.c index 86aff3c..7cd2528 100644 --- a/src/test-zebra.c +++ b/src/test-zebra.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "zebra.h" #include #include "Record_Info.h" diff --git a/src/test.c b/src/test.c index 0c69d81..2507546 100644 --- a/src/test.c +++ b/src/test.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "solid_angle.h" #include #include diff --git a/src/util.c b/src/util.c index cd39c3f..0a67e59 100644 --- a/src/util.c +++ b/src/util.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "util.h" #include /* for access() */ #include /* for getenv() */ diff --git a/src/util.h b/src/util.h index ef77df8..0a7c321 100644 --- a/src/util.h +++ b/src/util.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef UTIL_H #define UTIL_H diff --git a/src/vector.c b/src/vector.c index 061c3d6..b5c1e64 100644 --- a/src/vector.c +++ b/src/vector.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "vector.h" #include diff --git a/src/vector.h b/src/vector.h index 7dccc5b..5256fe9 100644 --- a/src/vector.h +++ b/src/vector.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef VECTOR_H #define VECTOR_H diff --git a/src/zdab_utils.c b/src/zdab_utils.c index 0f78e9c..dd377b9 100644 --- a/src/zdab_utils.c +++ b/src/zdab_utils.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "Record_Info.h" #include #include "zdab_utils.h" diff --git a/src/zdab_utils.h b/src/zdab_utils.h index c6b7808..ee4df6e 100644 --- a/src/zdab_utils.h +++ b/src/zdab_utils.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #ifndef ZDAB_UTILS #define ZDAB_UTILS diff --git a/src/zebra.c b/src/zebra.c index 42b507c..690294b 100644 --- a/src/zebra.c +++ b/src/zebra.c @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + #include "zebra.h" #include /* for FILE */ #include /* for size_t */ diff --git a/src/zebra.h b/src/zebra.h index c05f62d..321befa 100644 --- a/src/zebra.h +++ b/src/zebra.h @@ -1,3 +1,19 @@ +/* Copyright (c) 2019, Anthony Latorre + * + * 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 3 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, see . + */ + /* Library for reading ZEBRA files. * * The ZEBRA file format is an old file format used by FORTRAN programs for -- cgit