From 200ae916228581fd7bc8c034b7f99af2f0994538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Fr=C3=B6jdh?= Date: Fri, 21 Nov 2025 10:14:14 +0100 Subject: [PATCH] also hpp --- etc/add_license.py | 2 +- include/aare/ArrayExpr.hpp | 1 + include/aare/CalculateEta.hpp | 1 + include/aare/CircularFifo.hpp | 1 + include/aare/Cluster.hpp | 1 + include/aare/ClusterCollector.hpp | 1 + include/aare/ClusterFile.hpp | 1 + include/aare/ClusterFileSink.hpp | 1 + include/aare/ClusterFinder.hpp | 1 + include/aare/ClusterFinderMT.hpp | 1 + include/aare/ClusterVector.hpp | 1 + include/aare/CtbRawFile.hpp | 1 + include/aare/DetectorGeometry.hpp | 1 + include/aare/Dtype.hpp | 1 + include/aare/File.hpp | 1 + include/aare/FileInterface.hpp | 1 + include/aare/FilePtr.hpp | 1 + include/aare/Fit.hpp | 1 + include/aare/Frame.hpp | 1 + include/aare/GainMap.hpp | 1 + include/aare/Interpolator.hpp | 1 + include/aare/JungfrauDataFile.hpp | 1 + include/aare/NDArray.hpp | 1 + include/aare/NDView.hpp | 1 + include/aare/NumpyFile.hpp | 1 + include/aare/NumpyHelpers.hpp | 1 + include/aare/Pedestal.hpp | 1 + include/aare/PixelMap.hpp | 1 + include/aare/ProducerConsumerQueue.hpp | 1 + include/aare/RawFile.hpp | 1 + include/aare/RawMasterFile.hpp | 1 + include/aare/RawSubFile.hpp | 1 + include/aare/VarClusterFinder.hpp | 1 + include/aare/algorithm.hpp | 1 + include/aare/calibration.hpp | 1 + include/aare/decode.hpp | 1 + include/aare/defs.hpp | 1 + include/aare/logger.hpp | 1 + include/aare/utils/ifstream_helpers.hpp | 1 + include/aare/utils/par.hpp | 1 + include/aare/utils/task.hpp | 1 + python/src/bind_Cluster.hpp | 1 + python/src/bind_ClusterCollector.hpp | 1 + python/src/bind_ClusterFile.hpp | 1 + python/src/bind_ClusterFileSink.hpp | 1 + python/src/bind_ClusterFinder.hpp | 1 + python/src/bind_ClusterFinderMT.hpp | 1 + python/src/bind_ClusterVector.hpp | 1 + python/src/bind_calibration.hpp | 1 + python/src/ctb_raw_file.hpp | 1 + python/src/file.hpp | 1 + python/src/fit.hpp | 1 + python/src/interpolation.hpp | 1 + python/src/jungfrau_data_file.hpp | 1 + python/src/np_helper.hpp | 1 + python/src/pedestal.hpp | 1 + python/src/pixel_map.hpp | 1 + python/src/raw_file.hpp | 1 + python/src/raw_master_file.hpp | 1 + python/src/raw_sub_file.hpp | 1 + python/src/var_cluster.hpp | 1 + tests/friend_test.hpp | 1 + tests/test_macros.hpp | 1 + 63 files changed, 63 insertions(+), 1 deletion(-) diff --git a/etc/add_license.py b/etc/add_license.py index d7d9063..f43b6cd 100644 --- a/etc/add_license.py +++ b/etc/add_license.py @@ -4,7 +4,7 @@ import fnmatch import os from pathlib import Path -CPP_PATTERNS = ["*.h", "*.cpp"] +CPP_PATTERNS = ["*.h", "*.hpp", "*.cpp"] PY_PATTERNS = ["*.py"] CMAKE_PATTERNS = ["CMakeLists.txt"] diff --git a/include/aare/ArrayExpr.hpp b/include/aare/ArrayExpr.hpp index e5fb5d7..368f691 100644 --- a/include/aare/ArrayExpr.hpp +++ b/include/aare/ArrayExpr.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/defs.hpp" #include diff --git a/include/aare/CalculateEta.hpp b/include/aare/CalculateEta.hpp index 93902fa..0c07187 100644 --- a/include/aare/CalculateEta.hpp +++ b/include/aare/CalculateEta.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Cluster.hpp" diff --git a/include/aare/CircularFifo.hpp b/include/aare/CircularFifo.hpp index 853a89f..03d289d 100644 --- a/include/aare/CircularFifo.hpp +++ b/include/aare/CircularFifo.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include diff --git a/include/aare/Cluster.hpp b/include/aare/Cluster.hpp index f0507d2..c548634 100755 --- a/include/aare/Cluster.hpp +++ b/include/aare/Cluster.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /************************************************ * @file Cluster.hpp diff --git a/include/aare/ClusterCollector.hpp b/include/aare/ClusterCollector.hpp index a1cbcff..23666b7 100644 --- a/include/aare/ClusterCollector.hpp +++ b/include/aare/ClusterCollector.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include #include diff --git a/include/aare/ClusterFile.hpp b/include/aare/ClusterFile.hpp index 1295252..d94be1c 100644 --- a/include/aare/ClusterFile.hpp +++ b/include/aare/ClusterFile.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Cluster.hpp" diff --git a/include/aare/ClusterFileSink.hpp b/include/aare/ClusterFileSink.hpp index 1900774..6c028c8 100644 --- a/include/aare/ClusterFileSink.hpp +++ b/include/aare/ClusterFileSink.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include #include diff --git a/include/aare/ClusterFinder.hpp b/include/aare/ClusterFinder.hpp index 0fda340..d6812d0 100644 --- a/include/aare/ClusterFinder.hpp +++ b/include/aare/ClusterFinder.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/ClusterFile.hpp" #include "aare/ClusterVector.hpp" diff --git a/include/aare/ClusterFinderMT.hpp b/include/aare/ClusterFinderMT.hpp index 0340973..18184d0 100644 --- a/include/aare/ClusterFinderMT.hpp +++ b/include/aare/ClusterFinderMT.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include #include diff --git a/include/aare/ClusterVector.hpp b/include/aare/ClusterVector.hpp index 9da5392..6427561 100644 --- a/include/aare/ClusterVector.hpp +++ b/include/aare/ClusterVector.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Cluster.hpp" //TODO maybe store in seperate file !!! #include diff --git a/include/aare/CtbRawFile.hpp b/include/aare/CtbRawFile.hpp index afae0a2..ebcfa46 100644 --- a/include/aare/CtbRawFile.hpp +++ b/include/aare/CtbRawFile.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/FileInterface.hpp" diff --git a/include/aare/DetectorGeometry.hpp b/include/aare/DetectorGeometry.hpp index 0511319..31bba94 100644 --- a/include/aare/DetectorGeometry.hpp +++ b/include/aare/DetectorGeometry.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/RawMasterFile.hpp" //ROI refactor away #include "aare/defs.hpp" diff --git a/include/aare/Dtype.hpp b/include/aare/Dtype.hpp index 7047264..bb21457 100644 --- a/include/aare/Dtype.hpp +++ b/include/aare/Dtype.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include #include diff --git a/include/aare/File.hpp b/include/aare/File.hpp index e8f1589..6e65fa2 100644 --- a/include/aare/File.hpp +++ b/include/aare/File.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/FileInterface.hpp" #include diff --git a/include/aare/FileInterface.hpp b/include/aare/FileInterface.hpp index 6ca4755..654ad0b 100644 --- a/include/aare/FileInterface.hpp +++ b/include/aare/FileInterface.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Dtype.hpp" #include "aare/Frame.hpp" diff --git a/include/aare/FilePtr.hpp b/include/aare/FilePtr.hpp index 2ffc293..2cd0849 100644 --- a/include/aare/FilePtr.hpp +++ b/include/aare/FilePtr.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include #include diff --git a/include/aare/Fit.hpp b/include/aare/Fit.hpp index 1beec0a..c6091ad 100644 --- a/include/aare/Fit.hpp +++ b/include/aare/Fit.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include diff --git a/include/aare/Frame.hpp b/include/aare/Frame.hpp index 16e9f44..d619594 100644 --- a/include/aare/Frame.hpp +++ b/include/aare/Frame.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Dtype.hpp" #include "aare/NDArray.hpp" diff --git a/include/aare/GainMap.hpp b/include/aare/GainMap.hpp index ac558d0..ff88891 100644 --- a/include/aare/GainMap.hpp +++ b/include/aare/GainMap.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /************************************************ * @file GainMap.hpp * @short function to apply gain map of image size to a vector of clusters - diff --git a/include/aare/Interpolator.hpp b/include/aare/Interpolator.hpp index 3a84ae1..833b71d 100644 --- a/include/aare/Interpolator.hpp +++ b/include/aare/Interpolator.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/CalculateEta.hpp" diff --git a/include/aare/JungfrauDataFile.hpp b/include/aare/JungfrauDataFile.hpp index f871b86..0911c28 100644 --- a/include/aare/JungfrauDataFile.hpp +++ b/include/aare/JungfrauDataFile.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include #include diff --git a/include/aare/NDArray.hpp b/include/aare/NDArray.hpp index 731ba2f..57c0087 100644 --- a/include/aare/NDArray.hpp +++ b/include/aare/NDArray.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once /* Container holding image data, or a time series of image data in contigious diff --git a/include/aare/NDView.hpp b/include/aare/NDView.hpp index 0aa4f78..42a83a5 100644 --- a/include/aare/NDView.hpp +++ b/include/aare/NDView.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/ArrayExpr.hpp" #include "aare/defs.hpp" diff --git a/include/aare/NumpyFile.hpp b/include/aare/NumpyFile.hpp index 481a1a0..76d5321 100644 --- a/include/aare/NumpyFile.hpp +++ b/include/aare/NumpyFile.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Dtype.hpp" #include "aare/FileInterface.hpp" diff --git a/include/aare/NumpyHelpers.hpp b/include/aare/NumpyHelpers.hpp index 2facc4c..d5ab8f9 100644 --- a/include/aare/NumpyHelpers.hpp +++ b/include/aare/NumpyHelpers.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include diff --git a/include/aare/Pedestal.hpp b/include/aare/Pedestal.hpp index 0efc4b7..5753176 100644 --- a/include/aare/Pedestal.hpp +++ b/include/aare/Pedestal.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Frame.hpp" #include "aare/NDArray.hpp" diff --git a/include/aare/PixelMap.hpp b/include/aare/PixelMap.hpp index 9c30680..41f0952 100644 --- a/include/aare/PixelMap.hpp +++ b/include/aare/PixelMap.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/NDArray.hpp" diff --git a/include/aare/ProducerConsumerQueue.hpp b/include/aare/ProducerConsumerQueue.hpp index f189cec..bf24c25 100644 --- a/include/aare/ProducerConsumerQueue.hpp +++ b/include/aare/ProducerConsumerQueue.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright (c) Meta Platforms, Inc. and affiliates. * diff --git a/include/aare/RawFile.hpp b/include/aare/RawFile.hpp index b63095a..d0b164d 100644 --- a/include/aare/RawFile.hpp +++ b/include/aare/RawFile.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/DetectorGeometry.hpp" #include "aare/FileInterface.hpp" diff --git a/include/aare/RawMasterFile.hpp b/include/aare/RawMasterFile.hpp index a30ace5..a6c04e6 100644 --- a/include/aare/RawMasterFile.hpp +++ b/include/aare/RawMasterFile.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/defs.hpp" #include diff --git a/include/aare/RawSubFile.hpp b/include/aare/RawSubFile.hpp index c38f540..50db61f 100644 --- a/include/aare/RawSubFile.hpp +++ b/include/aare/RawSubFile.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Frame.hpp" #include "aare/defs.hpp" diff --git a/include/aare/VarClusterFinder.hpp b/include/aare/VarClusterFinder.hpp index a002f9b..7cd20c8 100644 --- a/include/aare/VarClusterFinder.hpp +++ b/include/aare/VarClusterFinder.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include diff --git a/include/aare/algorithm.hpp b/include/aare/algorithm.hpp index c590e91..9c4b032 100644 --- a/include/aare/algorithm.hpp +++ b/include/aare/algorithm.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include diff --git a/include/aare/calibration.hpp b/include/aare/calibration.hpp index 3b18da6..d187172 100644 --- a/include/aare/calibration.hpp +++ b/include/aare/calibration.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/NDArray.hpp" diff --git a/include/aare/decode.hpp b/include/aare/decode.hpp index ec24447..fc2b1e1 100644 --- a/include/aare/decode.hpp +++ b/include/aare/decode.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include diff --git a/include/aare/defs.hpp b/include/aare/defs.hpp index 041dbc9..1f75131 100644 --- a/include/aare/defs.hpp +++ b/include/aare/defs.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include "aare/Dtype.hpp" diff --git a/include/aare/logger.hpp b/include/aare/logger.hpp index 0bedd7a..382ebd4 100644 --- a/include/aare/logger.hpp +++ b/include/aare/logger.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once /*Utility to log to console*/ diff --git a/include/aare/utils/ifstream_helpers.hpp b/include/aare/utils/ifstream_helpers.hpp index a8d0d21..42c34d6 100644 --- a/include/aare/utils/ifstream_helpers.hpp +++ b/include/aare/utils/ifstream_helpers.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include diff --git a/include/aare/utils/par.hpp b/include/aare/utils/par.hpp index 55f60f4..116b32b 100644 --- a/include/aare/utils/par.hpp +++ b/include/aare/utils/par.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include #include diff --git a/include/aare/utils/task.hpp b/include/aare/utils/task.hpp index 63fe691..5ad0105 100644 --- a/include/aare/utils/task.hpp +++ b/include/aare/utils/task.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include #include diff --git a/python/src/bind_Cluster.hpp b/python/src/bind_Cluster.hpp index c672a95..346f250 100644 --- a/python/src/bind_Cluster.hpp +++ b/python/src/bind_Cluster.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/Cluster.hpp" #include diff --git a/python/src/bind_ClusterCollector.hpp b/python/src/bind_ClusterCollector.hpp index 84172cb..2e621ed 100644 --- a/python/src/bind_ClusterCollector.hpp +++ b/python/src/bind_ClusterCollector.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/ClusterCollector.hpp" #include "aare/ClusterFileSink.hpp" #include "aare/ClusterFinder.hpp" diff --git a/python/src/bind_ClusterFile.hpp b/python/src/bind_ClusterFile.hpp index f4a692c..da5adec 100644 --- a/python/src/bind_ClusterFile.hpp +++ b/python/src/bind_ClusterFile.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/CalculateEta.hpp" #include "aare/ClusterFile.hpp" #include "aare/defs.hpp" diff --git a/python/src/bind_ClusterFileSink.hpp b/python/src/bind_ClusterFileSink.hpp index f717de6..ade574d 100644 --- a/python/src/bind_ClusterFileSink.hpp +++ b/python/src/bind_ClusterFileSink.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/ClusterCollector.hpp" #include "aare/ClusterFileSink.hpp" #include "aare/ClusterFinder.hpp" diff --git a/python/src/bind_ClusterFinder.hpp b/python/src/bind_ClusterFinder.hpp index 5f0fe8d..49e203b 100644 --- a/python/src/bind_ClusterFinder.hpp +++ b/python/src/bind_ClusterFinder.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/ClusterCollector.hpp" #include "aare/ClusterFileSink.hpp" #include "aare/ClusterFinder.hpp" diff --git a/python/src/bind_ClusterFinderMT.hpp b/python/src/bind_ClusterFinderMT.hpp index 0ecbbd1..c03eeeb 100644 --- a/python/src/bind_ClusterFinderMT.hpp +++ b/python/src/bind_ClusterFinderMT.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/ClusterCollector.hpp" #include "aare/ClusterFileSink.hpp" #include "aare/ClusterFinder.hpp" diff --git a/python/src/bind_ClusterVector.hpp b/python/src/bind_ClusterVector.hpp index 662cd49..a07f147 100644 --- a/python/src/bind_ClusterVector.hpp +++ b/python/src/bind_ClusterVector.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/ClusterCollector.hpp" #include "aare/ClusterFileSink.hpp" #include "aare/ClusterFinder.hpp" diff --git a/python/src/bind_calibration.hpp b/python/src/bind_calibration.hpp index 836a6de..a4a3f16 100644 --- a/python/src/bind_calibration.hpp +++ b/python/src/bind_calibration.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/calibration.hpp" #include diff --git a/python/src/ctb_raw_file.hpp b/python/src/ctb_raw_file.hpp index 5eb9652..6e6aa51 100644 --- a/python/src/ctb_raw_file.hpp +++ b/python/src/ctb_raw_file.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/CtbRawFile.hpp" #include "aare/File.hpp" diff --git a/python/src/file.hpp b/python/src/file.hpp index 262b4f8..64ba74d 100644 --- a/python/src/file.hpp +++ b/python/src/file.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/CtbRawFile.hpp" #include "aare/File.hpp" #include "aare/Frame.hpp" diff --git a/python/src/fit.hpp b/python/src/fit.hpp index 47568d6..57f49ac 100644 --- a/python/src/fit.hpp +++ b/python/src/fit.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include #include #include diff --git a/python/src/interpolation.hpp b/python/src/interpolation.hpp index e667015..815efe3 100644 --- a/python/src/interpolation.hpp +++ b/python/src/interpolation.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/Interpolator.hpp" #include "aare/NDArray.hpp" #include "aare/NDView.hpp" diff --git a/python/src/jungfrau_data_file.hpp b/python/src/jungfrau_data_file.hpp index 62a95c9..9b0f188 100644 --- a/python/src/jungfrau_data_file.hpp +++ b/python/src/jungfrau_data_file.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/JungfrauDataFile.hpp" #include "aare/defs.hpp" diff --git a/python/src/np_helper.hpp b/python/src/np_helper.hpp index 78166aa..9283be2 100644 --- a/python/src/np_helper.hpp +++ b/python/src/np_helper.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #pragma once #include diff --git a/python/src/pedestal.hpp b/python/src/pedestal.hpp index 23d8247..9bef948 100644 --- a/python/src/pedestal.hpp +++ b/python/src/pedestal.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/Pedestal.hpp" #include "np_helper.hpp" diff --git a/python/src/pixel_map.hpp b/python/src/pixel_map.hpp index 986728b..ed5e550 100644 --- a/python/src/pixel_map.hpp +++ b/python/src/pixel_map.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/PixelMap.hpp" #include "np_helper.hpp" diff --git a/python/src/raw_file.hpp b/python/src/raw_file.hpp index 83f1110..64cc9aa 100644 --- a/python/src/raw_file.hpp +++ b/python/src/raw_file.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/CtbRawFile.hpp" #include "aare/File.hpp" #include "aare/Frame.hpp" diff --git a/python/src/raw_master_file.hpp b/python/src/raw_master_file.hpp index 34db4d3..bcd440c 100644 --- a/python/src/raw_master_file.hpp +++ b/python/src/raw_master_file.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/CtbRawFile.hpp" #include "aare/File.hpp" diff --git a/python/src/raw_sub_file.hpp b/python/src/raw_sub_file.hpp index cff511b..6e2b6ca 100644 --- a/python/src/raw_sub_file.hpp +++ b/python/src/raw_sub_file.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/CtbRawFile.hpp" #include "aare/File.hpp" #include "aare/Frame.hpp" diff --git a/python/src/var_cluster.hpp b/python/src/var_cluster.hpp index 4e7302d..90de908 100644 --- a/python/src/var_cluster.hpp +++ b/python/src/var_cluster.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include "aare/VarClusterFinder.hpp" #include "np_helper.hpp" // #include "aare/defs.hpp" diff --git a/tests/friend_test.hpp b/tests/friend_test.hpp index 7d16000..2f2a4f3 100644 --- a/tests/friend_test.hpp +++ b/tests/friend_test.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #define FRIEND_TEST(test_name) friend void test_name##_impl(); #define TEST_CASE_PRIVATE_FWD(test_name) \ diff --git a/tests/test_macros.hpp b/tests/test_macros.hpp index 0d9f59d..f6cc7df 100644 --- a/tests/test_macros.hpp +++ b/tests/test_macros.hpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 #include #include