diff --git a/Alignment/include/ActsAlignment/Kernel/Alignment.hpp b/Alignment/include/ActsAlignment/Kernel/Alignment.hpp index 90b5d408086..2a14da18476 100644 --- a/Alignment/include/ActsAlignment/Kernel/Alignment.hpp +++ b/Alignment/include/ActsAlignment/Kernel/Alignment.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Alignment/include/ActsAlignment/Kernel/Alignment.ipp b/Alignment/include/ActsAlignment/Kernel/Alignment.ipp index 0c64ca72c46..09170ee9ca9 100644 --- a/Alignment/include/ActsAlignment/Kernel/Alignment.ipp +++ b/Alignment/include/ActsAlignment/Kernel/Alignment.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/VectorMultiTrajectory.hpp" #include "Acts/EventData/VectorTrackContainer.hpp" diff --git a/Alignment/include/ActsAlignment/Kernel/AlignmentError.hpp b/Alignment/include/ActsAlignment/Kernel/AlignmentError.hpp index 88cae792a8f..9f77022929e 100644 --- a/Alignment/include/ActsAlignment/Kernel/AlignmentError.hpp +++ b/Alignment/include/ActsAlignment/Kernel/AlignmentError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Alignment/include/ActsAlignment/Kernel/AlignmentMask.hpp b/Alignment/include/ActsAlignment/Kernel/AlignmentMask.hpp index 735f7de86fb..f3849589152 100644 --- a/Alignment/include/ActsAlignment/Kernel/AlignmentMask.hpp +++ b/Alignment/include/ActsAlignment/Kernel/AlignmentMask.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Alignment/include/ActsAlignment/Kernel/detail/AlignmentEngine.hpp b/Alignment/include/ActsAlignment/Kernel/detail/AlignmentEngine.hpp index 64e7f9c0eb7..1bb21fdc8bd 100644 --- a/Alignment/include/ActsAlignment/Kernel/detail/AlignmentEngine.hpp +++ b/Alignment/include/ActsAlignment/Kernel/detail/AlignmentEngine.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Alignment/src/Kernel/detail/AlignmentEngine.cpp b/Alignment/src/Kernel/detail/AlignmentEngine.cpp index c5c012d08d7..23ff0b14433 100644 --- a/Alignment/src/Kernel/detail/AlignmentEngine.cpp +++ b/Alignment/src/Kernel/detail/AlignmentEngine.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsAlignment/Kernel/detail/AlignmentEngine.hpp" diff --git a/CI/check_license.py b/CI/check_license.py index 73bc343f763..68296ae6f0e 100755 --- a/CI/check_license.py +++ b/CI/check_license.py @@ -32,90 +32,29 @@ def err(string): return string -class CommitInfo: - date = None - year = None - author = None - subject = None - body = None - - -def check_git_dates(src): - output = ( - check_output(["git", "log", "--format={{{%an|%ad|%s|%b}}}", "--", src]) - .decode("utf-8") - .strip() - ) - - # find single outputs - commits = re.findall(r"{{{((?:.|\n)*?)}}}", output) - commits = [c for c in commits if "[ignore-license]" not in c] - commits = [c.split("|") for c in commits] - - # print(output) - mod = commits[0] - add = commits[-1] - - madd = re.match(r".*\d{2}:\d{2}:\d{2} (\d{4})", add[1]) - assert madd != None, "Regex did not match git log output" - mmod = re.match(r".*\d{2}:\d{2}:\d{2} (\d{4})", mod[1]) - assert mmod != None, "Regex did not match git log output" - - addcommit = CommitInfo() - addcommit.date = add[1] - addcommit.year = int(madd.group(1)) - addcommit.author = add[0] - addcommit.subject = add[2] - addcommit.body = add[3] - - modcommit = CommitInfo() - modcommit.date = mod[1] - modcommit.year = int(mmod.group(1)) - modcommit.author = mod[0] - modcommit.subject = mod[2] - modcommit.body = mod[3] - - return addcommit, modcommit - - def main(): p = argparse.ArgumentParser() p.add_argument("input", nargs="+") p.add_argument( "--fix", action="store_true", help="Attempt to fix any license issues found." ) - p.add_argument( - "--check-years", - action="store_true", - help="Check the license year info using git info for each file.", - ) - p.add_argument( - "--fail-year-mismatch", - action="store_true", - help="Fail if year in license statement is not valid.", - ) p.add_argument("--exclude", "-e", action="append", default=EXCLUDE) args = p.parse_args() print(args.exclude) + extensions = ["cpp", "hpp", "ipp", "cuh", "cu", "C", "h"] + if len(args.input) == 1 and os.path.isdir(args.input[0]): + find_command = ["find", args.input[0]] + for ext in extensions: + find_command.extend(["-iname", f"*.{ext}", "-or"]) + # Remove the last "-or" for a valid command + find_command = find_command[:-1] + srcs = ( str( - check_output( - [ - "find", - args.input[0], - "-iname", - "*.cpp", - "-or", - "-iname", - "*.hpp", - "-or", - "-iname", - "*.ipp", - ] - ), + check_output(find_command), "utf-8", ) .strip() @@ -125,30 +64,30 @@ def main(): else: srcs = args.input - year = int(datetime.now().strftime("%Y")) + founding_year = 2016 + year_str = f"{founding_year}" + year = year_str - raw = """// This file is part of the Acts project. + raw = """// This file is part of the ACTS project. // -// Copyright (C) {year} CERN for the benefit of the Acts project +// Copyright (C) {year} CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/.""" +// file, You can obtain one at https://mozilla.org/MPL/2.0/.""" reg = ( - r"\A// This file is part of the Acts project.\n" + r"\A// This file is part of the ACTS project.\n" + r"//\n" - + r"// Copyright \(C\) (?P.*) CERN for the benefit of the Acts project\n" + + r"// Copyright \(C\) (?P.*) CERN for the benefit of the ACTS project\n" + r"//\n" + r"// This Source Code Form is subject to the terms of the Mozilla Public\n" + r"// License, v\. 2\.0\. If a copy of the MPL was not distributed with this\n" - + r"// file, You can obtain one at http://mozilla.org/MPL/2.0/.\Z" + + r"// file, You can obtain one at https://mozilla.org/MPL/2.0/.\Z" ) ref = re.compile(reg, re.M) clean_re = re.compile(r"(\(C\)) (.*) (CERN)", re.M) - year_re = re.compile(r"^(?P20\d{2}|(?P20\d{2})-(?P20\d{2}))$") - extract_re = re.compile(r"(20\d{2})-?(20\d{2})?") def clean(s): return clean_re.sub(r"\1 XXXX \3", s) @@ -156,54 +95,33 @@ def clean(s): def get_clean_lines(s): return [clean(l) + "\n" for l in s.split("\n")] - def validate_years(year1, year2): - if year1 and year2: - year1 = int(year1) - year2 = int(year2) - if year1 >= year2: - return False - if year1 > year or year2 > year: - return False - else: - theyear = int(year1 if year1 else year2) - if theyear > year: - return False - return True - error_summary = "" - info_summary = "" - def eprint(*args): + def eprint(string): nonlocal error_summary - error_summary += " ".join(map(str, args)) + "\n" - - def year_print(*pargs): - nonlocal error_summary - nonlocal info_summary - string = " ".join(map(str, pargs)) + "\n" - if args.fail_year_mismatch: - error_summary += string - else: - info_summary += string + error_summary += string + "\n" exit = 0 srcs = list(srcs) nsrcs = len(srcs) step = max(int(nsrcs / 20), 1) + # Iterate over all files for i, src in enumerate(srcs): if any([fnmatch(src, e) for e in args.exclude]): continue + # Print progress if nsrcs > 1 and i % step == 0: - string = "{}/{} -> {:.2f}%".format(i, nsrcs, i / float(nsrcs) * 100.0) + string = f"{i}/{nsrcs} -> {i / float(nsrcs) * 100.0:.2f}%" if sys.stdout.isatty(): sys.stdout.write(string + "\r") else: print(string) + # Read the header with open(src, "r+") as f: license = "" - for x in range(len(raw)): + for _ in range(len(raw)): line = f.readline() if not line.startswith("//"): break @@ -211,192 +129,56 @@ def year_print(*pargs): license = ("".join(license)).strip() m = ref.search(license) - if m == None: + # License could not be found in header + if m is None: eprint("Invalid / missing license in " + src + "") - exp = [l + "\n" for l in raw.format(year="XXXX").split("\n")] + exp = [l + "\n" for l in raw.format(year=year_str).split("\n")] act = get_clean_lines(license) diff = difflib.unified_diff(exp, act) eprint("".join(diff)) - eprint() + eprint("") if args.fix: eprint("-> fixing file (prepend)") f.seek(0) file_content = f.read() f.seek(0) - stmnt = raw.format(year=year) + stmnt = raw.format(year=year_str) f.write(stmnt + "\n\n") f.write(file_content) exit = 1 - else: - # we have a match, need to verify year string is right - - if args.check_years: - git_add_commit, git_mod_commit = check_git_dates(src) - git_add_year = git_add_commit.year - git_mod_year = git_mod_commit.year - year_act = m.group("year") - ym = year_re.match(year_act) - valid = True - if not ym: - eprint("Year string does not match format in {}".format(src)) - eprint("Expected: YYYY or YYYY-YYYY (year or year range)") - eprint("Actual: {}\n".format(year_act)) - - if args.fix: - extract = extract_re.search(year_act) - year1 = extract.group(1) - year2 = extract.group(2) - - exit = 1 - valid = False - - else: - extract = extract_re.search(year_act) - year1 = extract.group(1) - year2 = extract.group(2) - - if not validate_years(year1, year2): - eprint("Year string is not valid in {}".format(src)) - eprint("Year string is: " + year_act + "\n") - exit = 1 - valid = False - - if args.check_years: - if git_add_year != git_mod_year: - # need year range in licence - if not (year1 and year2): - year_print("File: {}".format(src)) - # year_print("o File was modified in a different year ({}) than it was added ({})." - # .format(git_mod_year, git_add_year)) - year_print( - "- File was added in {}".format(git_add_year) - ) - year_print( - "- File was modified on {} by {}:\n{}".format( - git_mod_commit.date, - git_mod_commit.author, - git_mod_commit.subject + git_mod_commit.body, - ) - ) - year_print( - "=> License should say {}-{}".format( - git_add_year, git_mod_year - ) - ) - - act_year = year1 if year1 else year2 - year_print( - err( - "{} But says: {}".format(CROSS_SYMBOL, act_year) - ) - ) - - if args.fail_year_mismatch: - exit = 1 - year_print("\n") - else: - year_print("This is not treated as an error\n") - valid = False - else: - if ( - int(year1) != git_add_year - or int(year2) != git_mod_year - ): - year_print("File: {}".format(src)) - year_print( - "Year range {}-{} does not match range from git {}-{}".format( - year1, year2, git_add_year, git_mod_year - ) - ) - year_print( - "- File was added in {}".format(git_add_year) - ) - year_print( - "- File was modified on {} by {}:\n{}".format( - git_mod_commit.date, - git_mod_commit.author, - git_mod_commit.subject - + git_mod_commit.body, - ) - ) - year_print( - "=> License should say {}-{}".format( - git_add_year, git_mod_year - ) - ) - year_print( - err( - "{} But says: {}-{}".format( - CROSS_SYMBOL, year1, year2 - ) - ) - ) - if args.fail_year_mismatch: - exit = 1 - year_print("\n") - else: - year_print("This is not treated as an error\n") - valid = False - - else: - if int(year1) < git_mod_year: - year_print("File: {}".format(src)) - year_print( - "- Year {} does not match git modification year {}".format( - year1, git_mod_year - ) - ) - year_print( - "- File was modified on {} by {}:\n{}".format( - git_mod_commit.date, - git_mod_commit.author, - git_mod_commit.subject + git_mod_commit.body, - ) - ) - year_print( - "=> License should say {}".format(git_mod_year) - ) - year_print( - err("{} But says: {}".format(CROSS_SYMBOL, year1)) - ) - if args.fail_year_mismatch: - exit = 1 - year_print("\n") - else: - year_print("This is not treated as an error\n") - valid = False - - if args.fix and not valid: + continue + + # We have a match, need to verify year string is right + year_act = m.group("year") + if year_act != year_str: + exit = 1 + + eprint(f"File: {src}") + eprint(f"=> License should say {year_str}") + eprint(err(f"{CROSS_SYMBOL} But says: {year_act}")) + + if args.fix: eprint("-> fixing file (patch year)") - year_str = "2016-{}".format(year) - if args.check_years: - if git_add_year == git_mod_year: - year_str = "{}".format(git_add_year) - else: - year_str = "{}-{}".format(git_add_year, git_mod_year) + new_license = raw.format(year=year_str) # preserve rest of file as is - if args.check_years: - old_license_len = len(license) - f.seek(old_license_len) - file_body = f.read() - f.seek(0) - f.truncate() + old_license_len = len(license) + f.seek(old_license_len) + file_body = f.read() + f.seek(0) + f.truncate() f.seek(0) f.write(new_license) + f.write(file_body) - if args.check_years: - f.write(file_body) + eprint("") - print("\n--- INFO ---\n") - print(info_summary) - print("\n--- ERROR ---\n") print(error_summary) if exit != 0 and not args.fix: diff --git a/CI/check_smearing_config.py b/CI/check_smearing_config.py index b3b9ad0d4c8..629095976ea 100755 --- a/CI/check_smearing_config.py +++ b/CI/check_smearing_config.py @@ -1,12 +1,12 @@ #!/usr/bin/env python3 -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http:#mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # Configuration taken from: https://arxiv.org/pdf/1904.06778.pdf # See also https://github.com/acts-project/acts/issues/946 diff --git a/Core/ActsVersion.hpp.in b/Core/ActsVersion.hpp.in index 5cbc4c9e6a0..982c9d4fb5c 100644 --- a/Core/ActsVersion.hpp.in +++ b/Core/ActsVersion.hpp.in @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/AmbiguityResolution/GreedyAmbiguityResolution.hpp b/Core/include/Acts/AmbiguityResolution/GreedyAmbiguityResolution.hpp index 078d155a27a..13bd9822c86 100644 --- a/Core/include/Acts/AmbiguityResolution/GreedyAmbiguityResolution.hpp +++ b/Core/include/Acts/AmbiguityResolution/GreedyAmbiguityResolution.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/AmbiguityResolution/GreedyAmbiguityResolution.ipp b/Core/include/Acts/AmbiguityResolution/GreedyAmbiguityResolution.ipp index ec79c36260d..32cbdbbd1e3 100644 --- a/Core/include/Acts/AmbiguityResolution/GreedyAmbiguityResolution.ipp +++ b/Core/include/Acts/AmbiguityResolution/GreedyAmbiguityResolution.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.hpp b/Core/include/Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.hpp index 1e6019ffd8f..c5c0293b8ad 100644 --- a/Core/include/Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.hpp +++ b/Core/include/Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.ipp b/Core/include/Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.ipp index 21147d0eff2..58742d7d11a 100644 --- a/Core/include/Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.ipp +++ b/Core/include/Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Clusterization/Clusterization.hpp b/Core/include/Acts/Clusterization/Clusterization.hpp index 39a1dc9b656..3ebfd8d562d 100644 --- a/Core/include/Acts/Clusterization/Clusterization.hpp +++ b/Core/include/Acts/Clusterization/Clusterization.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Clusterization/Clusterization.ipp b/Core/include/Acts/Clusterization/Clusterization.ipp index 16047295912..0aa79b53981 100644 --- a/Core/include/Acts/Clusterization/Clusterization.ipp +++ b/Core/include/Acts/Clusterization/Clusterization.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Core/include/Acts/Definitions/Algebra.hpp b/Core/include/Acts/Definitions/Algebra.hpp index c489f5ecd94..843958a3282 100644 --- a/Core/include/Acts/Definitions/Algebra.hpp +++ b/Core/include/Acts/Definitions/Algebra.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Definitions/Alignment.hpp b/Core/include/Acts/Definitions/Alignment.hpp index 68e9cfa358d..77d8cd8c1e7 100644 --- a/Core/include/Acts/Definitions/Alignment.hpp +++ b/Core/include/Acts/Definitions/Alignment.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Definitions/Common.hpp b/Core/include/Acts/Definitions/Common.hpp index 538de54a945..854c54e2bde 100644 --- a/Core/include/Acts/Definitions/Common.hpp +++ b/Core/include/Acts/Definitions/Common.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Definitions/Direction.hpp b/Core/include/Acts/Definitions/Direction.hpp index 5e7f0c94ea2..d07646bab26 100644 --- a/Core/include/Acts/Definitions/Direction.hpp +++ b/Core/include/Acts/Definitions/Direction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Definitions/ParticleData.hpp b/Core/include/Acts/Definitions/ParticleData.hpp index 420121f4bcf..8cb97a9df9d 100644 --- a/Core/include/Acts/Definitions/ParticleData.hpp +++ b/Core/include/Acts/Definitions/ParticleData.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Definitions/PdgParticle.hpp b/Core/include/Acts/Definitions/PdgParticle.hpp index 70c33b06e3a..f6967671136 100644 --- a/Core/include/Acts/Definitions/PdgParticle.hpp +++ b/Core/include/Acts/Definitions/PdgParticle.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Definitions/Tolerance.hpp b/Core/include/Acts/Definitions/Tolerance.hpp index 0380c732408..0b8ef36e55f 100644 --- a/Core/include/Acts/Definitions/Tolerance.hpp +++ b/Core/include/Acts/Definitions/Tolerance.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Definitions/TrackParametrization.hpp b/Core/include/Acts/Definitions/TrackParametrization.hpp index 952fe24c512..ac5f0e09b1b 100644 --- a/Core/include/Acts/Definitions/TrackParametrization.hpp +++ b/Core/include/Acts/Definitions/TrackParametrization.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Definitions/Units.hpp b/Core/include/Acts/Definitions/Units.hpp index b61515234a9..c41aa7dd830 100644 --- a/Core/include/Acts/Definitions/Units.hpp +++ b/Core/include/Acts/Definitions/Units.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/Blueprint.hpp b/Core/include/Acts/Detector/Blueprint.hpp index 63f442dae0b..3be0d6353db 100644 --- a/Core/include/Acts/Detector/Blueprint.hpp +++ b/Core/include/Acts/Detector/Blueprint.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/CuboidalContainerBuilder.hpp b/Core/include/Acts/Detector/CuboidalContainerBuilder.hpp index 9ec69348116..ea5b98675cf 100644 --- a/Core/include/Acts/Detector/CuboidalContainerBuilder.hpp +++ b/Core/include/Acts/Detector/CuboidalContainerBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/CylindricalContainerBuilder.hpp b/Core/include/Acts/Detector/CylindricalContainerBuilder.hpp index c3023cea84e..4520eea5e07 100644 --- a/Core/include/Acts/Detector/CylindricalContainerBuilder.hpp +++ b/Core/include/Acts/Detector/CylindricalContainerBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/Detector.hpp b/Core/include/Acts/Detector/Detector.hpp index 6ce3d4bc488..fa61327089a 100644 --- a/Core/include/Acts/Detector/Detector.hpp +++ b/Core/include/Acts/Detector/Detector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/DetectorBuilder.hpp b/Core/include/Acts/Detector/DetectorBuilder.hpp index 11fc60d67a7..d5e0ab7e16b 100644 --- a/Core/include/Acts/Detector/DetectorBuilder.hpp +++ b/Core/include/Acts/Detector/DetectorBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/DetectorComponents.hpp b/Core/include/Acts/Detector/DetectorComponents.hpp index 5f6cf73d6e8..ed5a0c342de 100644 --- a/Core/include/Acts/Detector/DetectorComponents.hpp +++ b/Core/include/Acts/Detector/DetectorComponents.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/DetectorVolume.hpp b/Core/include/Acts/Detector/DetectorVolume.hpp index ac1164342d3..1617721d62f 100644 --- a/Core/include/Acts/Detector/DetectorVolume.hpp +++ b/Core/include/Acts/Detector/DetectorVolume.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/DetectorVolumeBuilder.hpp b/Core/include/Acts/Detector/DetectorVolumeBuilder.hpp index c7b4ae8c6f6..6cb5e6647db 100644 --- a/Core/include/Acts/Detector/DetectorVolumeBuilder.hpp +++ b/Core/include/Acts/Detector/DetectorVolumeBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/DetectorVolumeVisitorConcept.hpp b/Core/include/Acts/Detector/DetectorVolumeVisitorConcept.hpp index 95998fdb716..b43ec35277d 100644 --- a/Core/include/Acts/Detector/DetectorVolumeVisitorConcept.hpp +++ b/Core/include/Acts/Detector/DetectorVolumeVisitorConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/GeometryCompatibilityConcept.hpp b/Core/include/Acts/Detector/GeometryCompatibilityConcept.hpp index f0bbc6c45a2..643efa1b138 100644 --- a/Core/include/Acts/Detector/GeometryCompatibilityConcept.hpp +++ b/Core/include/Acts/Detector/GeometryCompatibilityConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/GeometryIdGenerator.hpp b/Core/include/Acts/Detector/GeometryIdGenerator.hpp index 83e2ed90b9b..ff8e36cc451 100644 --- a/Core/include/Acts/Detector/GeometryIdGenerator.hpp +++ b/Core/include/Acts/Detector/GeometryIdGenerator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/GeometryIdMapper.hpp b/Core/include/Acts/Detector/GeometryIdMapper.hpp index f4d6a4163b2..0b9215011e2 100644 --- a/Core/include/Acts/Detector/GeometryIdMapper.hpp +++ b/Core/include/Acts/Detector/GeometryIdMapper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/IndexedRootVolumeFinderBuilder.hpp b/Core/include/Acts/Detector/IndexedRootVolumeFinderBuilder.hpp index f985ea3975e..64483115c61 100644 --- a/Core/include/Acts/Detector/IndexedRootVolumeFinderBuilder.hpp +++ b/Core/include/Acts/Detector/IndexedRootVolumeFinderBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/KdtSurfacesProvider.hpp b/Core/include/Acts/Detector/KdtSurfacesProvider.hpp index dda69aeefc7..fd7086e01df 100644 --- a/Core/include/Acts/Detector/KdtSurfacesProvider.hpp +++ b/Core/include/Acts/Detector/KdtSurfacesProvider.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/LayerStructureBuilder.hpp b/Core/include/Acts/Detector/LayerStructureBuilder.hpp index afc04463cc5..9dd0e0a8e8e 100644 --- a/Core/include/Acts/Detector/LayerStructureBuilder.hpp +++ b/Core/include/Acts/Detector/LayerStructureBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/MultiWireStructureBuilder.hpp b/Core/include/Acts/Detector/MultiWireStructureBuilder.hpp index 86cce7fce56..939388c223a 100644 --- a/Core/include/Acts/Detector/MultiWireStructureBuilder.hpp +++ b/Core/include/Acts/Detector/MultiWireStructureBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/Portal.hpp b/Core/include/Acts/Detector/Portal.hpp index 4c4bc7fe8a4..3cdfce02dc4 100644 --- a/Core/include/Acts/Detector/Portal.hpp +++ b/Core/include/Acts/Detector/Portal.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/PortalGenerators.hpp b/Core/include/Acts/Detector/PortalGenerators.hpp index d8f8bf50614..9468e63d2cc 100644 --- a/Core/include/Acts/Detector/PortalGenerators.hpp +++ b/Core/include/Acts/Detector/PortalGenerators.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/ProtoBinning.hpp b/Core/include/Acts/Detector/ProtoBinning.hpp index 8d5d4db8374..371bfe60bd2 100644 --- a/Core/include/Acts/Detector/ProtoBinning.hpp +++ b/Core/include/Acts/Detector/ProtoBinning.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/ProtoDetector.hpp b/Core/include/Acts/Detector/ProtoDetector.hpp index b1d7877d65d..5e4e4d426c2 100644 --- a/Core/include/Acts/Detector/ProtoDetector.hpp +++ b/Core/include/Acts/Detector/ProtoDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/ProtoSupport.hpp b/Core/include/Acts/Detector/ProtoSupport.hpp index 55f8110a3a2..8f1e2581e77 100644 --- a/Core/include/Acts/Detector/ProtoSupport.hpp +++ b/Core/include/Acts/Detector/ProtoSupport.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/VolumeStructureBuilder.hpp b/Core/include/Acts/Detector/VolumeStructureBuilder.hpp index 812f2e761ec..aede963c78c 100644 --- a/Core/include/Acts/Detector/VolumeStructureBuilder.hpp +++ b/Core/include/Acts/Detector/VolumeStructureBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/BlueprintDrawer.hpp b/Core/include/Acts/Detector/detail/BlueprintDrawer.hpp index cc589bf8e06..775eb83f45b 100644 --- a/Core/include/Acts/Detector/detail/BlueprintDrawer.hpp +++ b/Core/include/Acts/Detector/detail/BlueprintDrawer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/BlueprintHelper.hpp b/Core/include/Acts/Detector/detail/BlueprintHelper.hpp index 06cc3e2046f..a1c0368a0ad 100644 --- a/Core/include/Acts/Detector/detail/BlueprintHelper.hpp +++ b/Core/include/Acts/Detector/detail/BlueprintHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/CuboidalDetectorHelper.hpp b/Core/include/Acts/Detector/detail/CuboidalDetectorHelper.hpp index 34be7576be2..c9ad46744d3 100644 --- a/Core/include/Acts/Detector/detail/CuboidalDetectorHelper.hpp +++ b/Core/include/Acts/Detector/detail/CuboidalDetectorHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/CylindricalDetectorHelper.hpp b/Core/include/Acts/Detector/detail/CylindricalDetectorHelper.hpp index 91b7935482c..05815b1325f 100644 --- a/Core/include/Acts/Detector/detail/CylindricalDetectorHelper.hpp +++ b/Core/include/Acts/Detector/detail/CylindricalDetectorHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/DetectorVolumeConsistency.hpp b/Core/include/Acts/Detector/detail/DetectorVolumeConsistency.hpp index ffc9ae97985..ebea6a7a4d6 100644 --- a/Core/include/Acts/Detector/detail/DetectorVolumeConsistency.hpp +++ b/Core/include/Acts/Detector/detail/DetectorVolumeConsistency.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/IndexedGridFiller.hpp b/Core/include/Acts/Detector/detail/IndexedGridFiller.hpp index c8f7d416f31..3bbbee0569c 100644 --- a/Core/include/Acts/Detector/detail/IndexedGridFiller.hpp +++ b/Core/include/Acts/Detector/detail/IndexedGridFiller.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/IndexedSurfacesGenerator.hpp b/Core/include/Acts/Detector/detail/IndexedSurfacesGenerator.hpp index 6d87d9f3a50..83dc9170208 100644 --- a/Core/include/Acts/Detector/detail/IndexedSurfacesGenerator.hpp +++ b/Core/include/Acts/Detector/detail/IndexedSurfacesGenerator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/PortalHelper.hpp b/Core/include/Acts/Detector/detail/PortalHelper.hpp index 52245ee4a66..ec17c487098 100644 --- a/Core/include/Acts/Detector/detail/PortalHelper.hpp +++ b/Core/include/Acts/Detector/detail/PortalHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/ProtoMaterialHelper.hpp b/Core/include/Acts/Detector/detail/ProtoMaterialHelper.hpp index eb483a2f680..a43e96ac521 100644 --- a/Core/include/Acts/Detector/detail/ProtoMaterialHelper.hpp +++ b/Core/include/Acts/Detector/detail/ProtoMaterialHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/ReferenceGenerators.hpp b/Core/include/Acts/Detector/detail/ReferenceGenerators.hpp index 8d03d515bb3..db77685a2bc 100644 --- a/Core/include/Acts/Detector/detail/ReferenceGenerators.hpp +++ b/Core/include/Acts/Detector/detail/ReferenceGenerators.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/detail/SupportSurfacesHelper.hpp b/Core/include/Acts/Detector/detail/SupportSurfacesHelper.hpp index 1cfef5fdb5b..e956e215e4f 100644 --- a/Core/include/Acts/Detector/detail/SupportSurfacesHelper.hpp +++ b/Core/include/Acts/Detector/detail/SupportSurfacesHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/interface/IDetectorBuilder.hpp b/Core/include/Acts/Detector/interface/IDetectorBuilder.hpp index 73a167e08ba..b9950cbd283 100644 --- a/Core/include/Acts/Detector/interface/IDetectorBuilder.hpp +++ b/Core/include/Acts/Detector/interface/IDetectorBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/interface/IDetectorComponentBuilder.hpp b/Core/include/Acts/Detector/interface/IDetectorComponentBuilder.hpp index e2b8f5fdd6d..cc9d207aef0 100644 --- a/Core/include/Acts/Detector/interface/IDetectorComponentBuilder.hpp +++ b/Core/include/Acts/Detector/interface/IDetectorComponentBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/interface/IExternalStructureBuilder.hpp b/Core/include/Acts/Detector/interface/IExternalStructureBuilder.hpp index 483ddf6299a..7f5177b8e92 100644 --- a/Core/include/Acts/Detector/interface/IExternalStructureBuilder.hpp +++ b/Core/include/Acts/Detector/interface/IExternalStructureBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/interface/IGeometryIdGenerator.hpp b/Core/include/Acts/Detector/interface/IGeometryIdGenerator.hpp index bb161cb9d58..61a1461bd6b 100644 --- a/Core/include/Acts/Detector/interface/IGeometryIdGenerator.hpp +++ b/Core/include/Acts/Detector/interface/IGeometryIdGenerator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/interface/IInternalStructureBuilder.hpp b/Core/include/Acts/Detector/interface/IInternalStructureBuilder.hpp index 4ae2e242bf0..0d453248834 100644 --- a/Core/include/Acts/Detector/interface/IInternalStructureBuilder.hpp +++ b/Core/include/Acts/Detector/interface/IInternalStructureBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/interface/IRootVolumeFinderBuilder.hpp b/Core/include/Acts/Detector/interface/IRootVolumeFinderBuilder.hpp index aacb5c5dfc3..ea96a05de8e 100644 --- a/Core/include/Acts/Detector/interface/IRootVolumeFinderBuilder.hpp +++ b/Core/include/Acts/Detector/interface/IRootVolumeFinderBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Detector/interface/ISurfacesProvider.hpp b/Core/include/Acts/Detector/interface/ISurfacesProvider.hpp index 7cedfbf6a82..65d810a24dc 100644 --- a/Core/include/Acts/Detector/interface/ISurfacesProvider.hpp +++ b/Core/include/Acts/Detector/interface/ISurfacesProvider.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/Charge.hpp b/Core/include/Acts/EventData/Charge.hpp index 020aa87ce83..6ae62b3d963 100644 --- a/Core/include/Acts/EventData/Charge.hpp +++ b/Core/include/Acts/EventData/Charge.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/ChargeConcept.hpp b/Core/include/Acts/EventData/ChargeConcept.hpp index 4b0540ac407..448722bd4b3 100644 --- a/Core/include/Acts/EventData/ChargeConcept.hpp +++ b/Core/include/Acts/EventData/ChargeConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/GenericBoundTrackParameters.hpp b/Core/include/Acts/EventData/GenericBoundTrackParameters.hpp index ca1bff36734..27b411a99cc 100644 --- a/Core/include/Acts/EventData/GenericBoundTrackParameters.hpp +++ b/Core/include/Acts/EventData/GenericBoundTrackParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/GenericCurvilinearTrackParameters.hpp b/Core/include/Acts/EventData/GenericCurvilinearTrackParameters.hpp index edaf2660595..a42ac2f116f 100644 --- a/Core/include/Acts/EventData/GenericCurvilinearTrackParameters.hpp +++ b/Core/include/Acts/EventData/GenericCurvilinearTrackParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/GenericFreeTrackParameters.hpp b/Core/include/Acts/EventData/GenericFreeTrackParameters.hpp index 6c4537b07c0..ab4218a4e94 100644 --- a/Core/include/Acts/EventData/GenericFreeTrackParameters.hpp +++ b/Core/include/Acts/EventData/GenericFreeTrackParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/GenericParticleHypothesis.hpp b/Core/include/Acts/EventData/GenericParticleHypothesis.hpp index 437eb20cac2..46ebe4ff298 100644 --- a/Core/include/Acts/EventData/GenericParticleHypothesis.hpp +++ b/Core/include/Acts/EventData/GenericParticleHypothesis.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/MeasurementHelpers.hpp b/Core/include/Acts/EventData/MeasurementHelpers.hpp index 9d927e40447..d4aae9b7565 100644 --- a/Core/include/Acts/EventData/MeasurementHelpers.hpp +++ b/Core/include/Acts/EventData/MeasurementHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/MultiComponentTrackParameters.hpp b/Core/include/Acts/EventData/MultiComponentTrackParameters.hpp index 749435066de..70ad87f8d77 100644 --- a/Core/include/Acts/EventData/MultiComponentTrackParameters.hpp +++ b/Core/include/Acts/EventData/MultiComponentTrackParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/MultiTrajectory.hpp b/Core/include/Acts/EventData/MultiTrajectory.hpp index 2b53e485ce4..1c065fd7e12 100644 --- a/Core/include/Acts/EventData/MultiTrajectory.hpp +++ b/Core/include/Acts/EventData/MultiTrajectory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/MultiTrajectory.ipp b/Core/include/Acts/EventData/MultiTrajectory.ipp index 81a57f0b24a..c8f12967cd2 100644 --- a/Core/include/Acts/EventData/MultiTrajectory.ipp +++ b/Core/include/Acts/EventData/MultiTrajectory.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/AlgebraHelpers.hpp" diff --git a/Core/include/Acts/EventData/MultiTrajectoryBackendConcept.hpp b/Core/include/Acts/EventData/MultiTrajectoryBackendConcept.hpp index 7898a336754..92ae47270bc 100644 --- a/Core/include/Acts/EventData/MultiTrajectoryBackendConcept.hpp +++ b/Core/include/Acts/EventData/MultiTrajectoryBackendConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/MultiTrajectoryHelpers.hpp b/Core/include/Acts/EventData/MultiTrajectoryHelpers.hpp index 2a5fac9b2d6..2cc417bc133 100644 --- a/Core/include/Acts/EventData/MultiTrajectoryHelpers.hpp +++ b/Core/include/Acts/EventData/MultiTrajectoryHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/ParticleHypothesis.hpp b/Core/include/Acts/EventData/ParticleHypothesis.hpp index 8fb7fe9ec03..f236441ede6 100644 --- a/Core/include/Acts/EventData/ParticleHypothesis.hpp +++ b/Core/include/Acts/EventData/ParticleHypothesis.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/ProxyAccessor.hpp b/Core/include/Acts/EventData/ProxyAccessor.hpp index 2c577c508de..7a9ebe3eff0 100644 --- a/Core/include/Acts/EventData/ProxyAccessor.hpp +++ b/Core/include/Acts/EventData/ProxyAccessor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/Seed.hpp b/Core/include/Acts/EventData/Seed.hpp index da58f76d10b..bd159eaa54a 100644 --- a/Core/include/Acts/EventData/Seed.hpp +++ b/Core/include/Acts/EventData/Seed.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/Seed.ipp b/Core/include/Acts/EventData/Seed.ipp index 664a6ae196e..5f66aa06772 100644 --- a/Core/include/Acts/EventData/Seed.ipp +++ b/Core/include/Acts/EventData/Seed.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { diff --git a/Core/include/Acts/EventData/SourceLink.hpp b/Core/include/Acts/EventData/SourceLink.hpp index 0094258956a..5e032d11e4f 100644 --- a/Core/include/Acts/EventData/SourceLink.hpp +++ b/Core/include/Acts/EventData/SourceLink.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/SpacePointContainer.hpp b/Core/include/Acts/EventData/SpacePointContainer.hpp index ef2c183e8a2..32e43645d82 100644 --- a/Core/include/Acts/EventData/SpacePointContainer.hpp +++ b/Core/include/Acts/EventData/SpacePointContainer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/SpacePointContainer.ipp b/Core/include/Acts/EventData/SpacePointContainer.ipp index 484aed7a3d0..abcab8ab5a2 100644 --- a/Core/include/Acts/EventData/SpacePointContainer.ipp +++ b/Core/include/Acts/EventData/SpacePointContainer.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Core/include/Acts/EventData/SpacePointData.hpp b/Core/include/Acts/EventData/SpacePointData.hpp index 487b49ce8db..60684cc5242 100644 --- a/Core/include/Acts/EventData/SpacePointData.hpp +++ b/Core/include/Acts/EventData/SpacePointData.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/SpacePointData.ipp b/Core/include/Acts/EventData/SpacePointData.ipp index 7ec885ec85a..1f5bd6c9534 100644 --- a/Core/include/Acts/EventData/SpacePointData.ipp +++ b/Core/include/Acts/EventData/SpacePointData.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Core/include/Acts/EventData/SpacePointMutableData.hpp b/Core/include/Acts/EventData/SpacePointMutableData.hpp index 5d6788d0999..baeb5829b3d 100644 --- a/Core/include/Acts/EventData/SpacePointMutableData.hpp +++ b/Core/include/Acts/EventData/SpacePointMutableData.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/SpacePointMutableData.ipp b/Core/include/Acts/EventData/SpacePointMutableData.ipp index 2681931cfcf..c846c535c6d 100644 --- a/Core/include/Acts/EventData/SpacePointMutableData.ipp +++ b/Core/include/Acts/EventData/SpacePointMutableData.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Core/include/Acts/EventData/SpacePointProxy.hpp b/Core/include/Acts/EventData/SpacePointProxy.hpp index 4d5ebd000d7..757fedd7b83 100644 --- a/Core/include/Acts/EventData/SpacePointProxy.hpp +++ b/Core/include/Acts/EventData/SpacePointProxy.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/SpacePointProxy.ipp b/Core/include/Acts/EventData/SpacePointProxy.ipp index 451ffa31ca7..fe3b9e0e824 100644 --- a/Core/include/Acts/EventData/SpacePointProxy.ipp +++ b/Core/include/Acts/EventData/SpacePointProxy.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { diff --git a/Core/include/Acts/EventData/SpacePointProxyIterator.hpp b/Core/include/Acts/EventData/SpacePointProxyIterator.hpp index 93794195d04..c8b91d3c052 100644 --- a/Core/include/Acts/EventData/SpacePointProxyIterator.hpp +++ b/Core/include/Acts/EventData/SpacePointProxyIterator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/SpacePointProxyIterator.ipp b/Core/include/Acts/EventData/SpacePointProxyIterator.ipp index 5318c3b6f28..5759e0416a1 100644 --- a/Core/include/Acts/EventData/SpacePointProxyIterator.ipp +++ b/Core/include/Acts/EventData/SpacePointProxyIterator.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { diff --git a/Core/include/Acts/EventData/SubspaceHelpers.hpp b/Core/include/Acts/EventData/SubspaceHelpers.hpp index 49a59e1dae7..029dbf372b3 100644 --- a/Core/include/Acts/EventData/SubspaceHelpers.hpp +++ b/Core/include/Acts/EventData/SubspaceHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackContainer.hpp b/Core/include/Acts/EventData/TrackContainer.hpp index 24702870bdb..9591a66c6a4 100644 --- a/Core/include/Acts/EventData/TrackContainer.hpp +++ b/Core/include/Acts/EventData/TrackContainer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackContainerBackendConcept.hpp b/Core/include/Acts/EventData/TrackContainerBackendConcept.hpp index a66e27c36e2..bf9fb1e46f7 100644 --- a/Core/include/Acts/EventData/TrackContainerBackendConcept.hpp +++ b/Core/include/Acts/EventData/TrackContainerBackendConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackContainerFrontendConcept.hpp b/Core/include/Acts/EventData/TrackContainerFrontendConcept.hpp index fdbb496ba9f..82b9579b010 100644 --- a/Core/include/Acts/EventData/TrackContainerFrontendConcept.hpp +++ b/Core/include/Acts/EventData/TrackContainerFrontendConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackParameters.hpp b/Core/include/Acts/EventData/TrackParameters.hpp index c8f388ef858..20797791688 100644 --- a/Core/include/Acts/EventData/TrackParameters.hpp +++ b/Core/include/Acts/EventData/TrackParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackParametersConcept.hpp b/Core/include/Acts/EventData/TrackParametersConcept.hpp index 3f34b320ab0..b39255e5ef7 100644 --- a/Core/include/Acts/EventData/TrackParametersConcept.hpp +++ b/Core/include/Acts/EventData/TrackParametersConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackProxy.hpp b/Core/include/Acts/EventData/TrackProxy.hpp index 8323878dd3c..f5a5aeca6d2 100644 --- a/Core/include/Acts/EventData/TrackProxy.hpp +++ b/Core/include/Acts/EventData/TrackProxy.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackProxyConcept.hpp b/Core/include/Acts/EventData/TrackProxyConcept.hpp index 619799905e4..b7058a3b590 100644 --- a/Core/include/Acts/EventData/TrackProxyConcept.hpp +++ b/Core/include/Acts/EventData/TrackProxyConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackStatePropMask.hpp b/Core/include/Acts/EventData/TrackStatePropMask.hpp index 2bba7d6932c..305c8a98f73 100644 --- a/Core/include/Acts/EventData/TrackStatePropMask.hpp +++ b/Core/include/Acts/EventData/TrackStatePropMask.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackStateProxy.hpp b/Core/include/Acts/EventData/TrackStateProxy.hpp index 7b90e0a1ac9..bed0061ecbf 100644 --- a/Core/include/Acts/EventData/TrackStateProxy.hpp +++ b/Core/include/Acts/EventData/TrackStateProxy.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackStateProxy.ipp b/Core/include/Acts/EventData/TrackStateProxy.ipp index c12c34ac744..e36be5f3c25 100644 --- a/Core/include/Acts/EventData/TrackStateProxy.ipp +++ b/Core/include/Acts/EventData/TrackStateProxy.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { diff --git a/Core/include/Acts/EventData/TrackStateProxyConcept.hpp b/Core/include/Acts/EventData/TrackStateProxyConcept.hpp index c74a46eba32..d148d3c4940 100644 --- a/Core/include/Acts/EventData/TrackStateProxyConcept.hpp +++ b/Core/include/Acts/EventData/TrackStateProxyConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TrackStateType.hpp b/Core/include/Acts/EventData/TrackStateType.hpp index 7fc25466738..4820ffe6e19 100644 --- a/Core/include/Acts/EventData/TrackStateType.hpp +++ b/Core/include/Acts/EventData/TrackStateType.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/TransformationHelpers.hpp b/Core/include/Acts/EventData/TransformationHelpers.hpp index 0bafd8a4553..7fa297f4abc 100644 --- a/Core/include/Acts/EventData/TransformationHelpers.hpp +++ b/Core/include/Acts/EventData/TransformationHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/Types.hpp b/Core/include/Acts/EventData/Types.hpp index d7175806f4d..0fbef9b2e50 100644 --- a/Core/include/Acts/EventData/Types.hpp +++ b/Core/include/Acts/EventData/Types.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/Utils.hpp b/Core/include/Acts/EventData/Utils.hpp index 79a410ba53c..4db85f95460 100644 --- a/Core/include/Acts/EventData/Utils.hpp +++ b/Core/include/Acts/EventData/Utils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/VectorMultiTrajectory.hpp b/Core/include/Acts/EventData/VectorMultiTrajectory.hpp index 66d6bd26da0..7d2d05cc9b9 100644 --- a/Core/include/Acts/EventData/VectorMultiTrajectory.hpp +++ b/Core/include/Acts/EventData/VectorMultiTrajectory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/VectorTrackContainer.hpp b/Core/include/Acts/EventData/VectorTrackContainer.hpp index d660aeaaf47..09ecf7b5b2e 100644 --- a/Core/include/Acts/EventData/VectorTrackContainer.hpp +++ b/Core/include/Acts/EventData/VectorTrackContainer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/CalculateResiduals.hpp b/Core/include/Acts/EventData/detail/CalculateResiduals.hpp index 38adc0df822..33d800d16e6 100644 --- a/Core/include/Acts/EventData/detail/CalculateResiduals.hpp +++ b/Core/include/Acts/EventData/detail/CalculateResiduals.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/CorrectedTransformationFreeToBound.hpp b/Core/include/Acts/EventData/detail/CorrectedTransformationFreeToBound.hpp index a6fc0727ad0..58283dcfebe 100644 --- a/Core/include/Acts/EventData/detail/CorrectedTransformationFreeToBound.hpp +++ b/Core/include/Acts/EventData/detail/CorrectedTransformationFreeToBound.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/CovarianceHelper.hpp b/Core/include/Acts/EventData/detail/CovarianceHelper.hpp index 06d3d31bfe5..d3469d4124d 100644 --- a/Core/include/Acts/EventData/detail/CovarianceHelper.hpp +++ b/Core/include/Acts/EventData/detail/CovarianceHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/DynamicColumn.hpp b/Core/include/Acts/EventData/detail/DynamicColumn.hpp index 58bf59e367d..0a3b7bd6da4 100644 --- a/Core/include/Acts/EventData/detail/DynamicColumn.hpp +++ b/Core/include/Acts/EventData/detail/DynamicColumn.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/DynamicKeyIterator.hpp b/Core/include/Acts/EventData/detail/DynamicKeyIterator.hpp index 03aa2cb47bb..df0f1ceeaf2 100644 --- a/Core/include/Acts/EventData/detail/DynamicKeyIterator.hpp +++ b/Core/include/Acts/EventData/detail/DynamicKeyIterator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/GenerateParameters.hpp b/Core/include/Acts/EventData/detail/GenerateParameters.hpp index 4042ef5bba6..0d38bb8d966 100644 --- a/Core/include/Acts/EventData/detail/GenerateParameters.hpp +++ b/Core/include/Acts/EventData/detail/GenerateParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp b/Core/include/Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp index 7d688e631e8..ec64dbe5241 100644 --- a/Core/include/Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp +++ b/Core/include/Acts/EventData/detail/MultiTrajectoryTestsCommon.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/ParameterTraits.hpp b/Core/include/Acts/EventData/detail/ParameterTraits.hpp index 6252a474af2..ae5eb8eeb30 100644 --- a/Core/include/Acts/EventData/detail/ParameterTraits.hpp +++ b/Core/include/Acts/EventData/detail/ParameterTraits.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/PrintParameters.hpp b/Core/include/Acts/EventData/detail/PrintParameters.hpp index 6b37cbfb09d..38670c230e0 100644 --- a/Core/include/Acts/EventData/detail/PrintParameters.hpp +++ b/Core/include/Acts/EventData/detail/PrintParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/TestSourceLink.hpp b/Core/include/Acts/EventData/detail/TestSourceLink.hpp index e9e4d4d1e80..34a234bbf4d 100644 --- a/Core/include/Acts/EventData/detail/TestSourceLink.hpp +++ b/Core/include/Acts/EventData/detail/TestSourceLink.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/EventData/detail/TestTrackState.hpp b/Core/include/Acts/EventData/detail/TestTrackState.hpp index c68096e40a4..3a83f401cd3 100644 --- a/Core/include/Acts/EventData/detail/TestTrackState.hpp +++ b/Core/include/Acts/EventData/detail/TestTrackState.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/ApproachDescriptor.hpp b/Core/include/Acts/Geometry/ApproachDescriptor.hpp index 7f96060099f..b56a1a8f26f 100644 --- a/Core/include/Acts/Geometry/ApproachDescriptor.hpp +++ b/Core/include/Acts/Geometry/ApproachDescriptor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/BoundarySurfaceFace.hpp b/Core/include/Acts/Geometry/BoundarySurfaceFace.hpp index 2575619aa2a..bd35bca7a4c 100644 --- a/Core/include/Acts/Geometry/BoundarySurfaceFace.hpp +++ b/Core/include/Acts/Geometry/BoundarySurfaceFace.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/BoundarySurfaceT.hpp b/Core/include/Acts/Geometry/BoundarySurfaceT.hpp index 9179aec59f7..60fd4be9dc4 100644 --- a/Core/include/Acts/Geometry/BoundarySurfaceT.hpp +++ b/Core/include/Acts/Geometry/BoundarySurfaceT.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CompositePortalLink.hpp b/Core/include/Acts/Geometry/CompositePortalLink.hpp index ccf7e8bcf17..5ae6d76a106 100644 --- a/Core/include/Acts/Geometry/CompositePortalLink.hpp +++ b/Core/include/Acts/Geometry/CompositePortalLink.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/ConeLayer.hpp b/Core/include/Acts/Geometry/ConeLayer.hpp index bd24bef9fe1..d496710a472 100644 --- a/Core/include/Acts/Geometry/ConeLayer.hpp +++ b/Core/include/Acts/Geometry/ConeLayer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/ConeVolumeBounds.hpp b/Core/include/Acts/Geometry/ConeVolumeBounds.hpp index f946705f6ce..23c8d33b26d 100644 --- a/Core/include/Acts/Geometry/ConeVolumeBounds.hpp +++ b/Core/include/Acts/Geometry/ConeVolumeBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CuboidVolumeBounds.hpp b/Core/include/Acts/Geometry/CuboidVolumeBounds.hpp index d0c7a1b604d..8b8437a91a5 100644 --- a/Core/include/Acts/Geometry/CuboidVolumeBounds.hpp +++ b/Core/include/Acts/Geometry/CuboidVolumeBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CuboidVolumeBuilder.hpp b/Core/include/Acts/Geometry/CuboidVolumeBuilder.hpp index 6ebccf761d7..5912b21ed98 100644 --- a/Core/include/Acts/Geometry/CuboidVolumeBuilder.hpp +++ b/Core/include/Acts/Geometry/CuboidVolumeBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CutoutCylinderVolumeBounds.hpp b/Core/include/Acts/Geometry/CutoutCylinderVolumeBounds.hpp index 2930b0fb22d..fb9d6ca15a7 100644 --- a/Core/include/Acts/Geometry/CutoutCylinderVolumeBounds.hpp +++ b/Core/include/Acts/Geometry/CutoutCylinderVolumeBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CylinderLayer.hpp b/Core/include/Acts/Geometry/CylinderLayer.hpp index ba99af59a9b..374d4b1da0c 100644 --- a/Core/include/Acts/Geometry/CylinderLayer.hpp +++ b/Core/include/Acts/Geometry/CylinderLayer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CylinderVolumeBounds.hpp b/Core/include/Acts/Geometry/CylinderVolumeBounds.hpp index c5a28a4edb7..c92e001fa9f 100644 --- a/Core/include/Acts/Geometry/CylinderVolumeBounds.hpp +++ b/Core/include/Acts/Geometry/CylinderVolumeBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CylinderVolumeBuilder.hpp b/Core/include/Acts/Geometry/CylinderVolumeBuilder.hpp index c2b0e52c2ea..1e09b95e114 100644 --- a/Core/include/Acts/Geometry/CylinderVolumeBuilder.hpp +++ b/Core/include/Acts/Geometry/CylinderVolumeBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CylinderVolumeHelper.hpp b/Core/include/Acts/Geometry/CylinderVolumeHelper.hpp index a6c85f18619..6156230817d 100644 --- a/Core/include/Acts/Geometry/CylinderVolumeHelper.hpp +++ b/Core/include/Acts/Geometry/CylinderVolumeHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/CylinderVolumeStack.hpp b/Core/include/Acts/Geometry/CylinderVolumeStack.hpp index 1f1eb748947..5e708a5c3c9 100644 --- a/Core/include/Acts/Geometry/CylinderVolumeStack.hpp +++ b/Core/include/Acts/Geometry/CylinderVolumeStack.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/DetectorElementBase.hpp b/Core/include/Acts/Geometry/DetectorElementBase.hpp index 484e8849ba3..5e5af633d97 100644 --- a/Core/include/Acts/Geometry/DetectorElementBase.hpp +++ b/Core/include/Acts/Geometry/DetectorElementBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/DiscLayer.hpp b/Core/include/Acts/Geometry/DiscLayer.hpp index 478bbef6583..8968b6c42d2 100644 --- a/Core/include/Acts/Geometry/DiscLayer.hpp +++ b/Core/include/Acts/Geometry/DiscLayer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/Extent.hpp b/Core/include/Acts/Geometry/Extent.hpp index c353f999330..698477744c0 100644 --- a/Core/include/Acts/Geometry/Extent.hpp +++ b/Core/include/Acts/Geometry/Extent.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GenericApproachDescriptor.hpp b/Core/include/Acts/Geometry/GenericApproachDescriptor.hpp index b26e3e7e518..e4c855fe762 100644 --- a/Core/include/Acts/Geometry/GenericApproachDescriptor.hpp +++ b/Core/include/Acts/Geometry/GenericApproachDescriptor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GenericCuboidVolumeBounds.hpp b/Core/include/Acts/Geometry/GenericCuboidVolumeBounds.hpp index a905f79f4a4..5f063a62842 100644 --- a/Core/include/Acts/Geometry/GenericCuboidVolumeBounds.hpp +++ b/Core/include/Acts/Geometry/GenericCuboidVolumeBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GeometryContext.hpp b/Core/include/Acts/Geometry/GeometryContext.hpp index 2e46e911ba4..9d76417f768 100644 --- a/Core/include/Acts/Geometry/GeometryContext.hpp +++ b/Core/include/Acts/Geometry/GeometryContext.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GeometryHierarchyMap.hpp b/Core/include/Acts/Geometry/GeometryHierarchyMap.hpp index e7ddd27c5e6..3bdfc63425b 100644 --- a/Core/include/Acts/Geometry/GeometryHierarchyMap.hpp +++ b/Core/include/Acts/Geometry/GeometryHierarchyMap.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GeometryIdentifier.hpp b/Core/include/Acts/Geometry/GeometryIdentifier.hpp index b77f0d8753a..f1bf7a26736 100644 --- a/Core/include/Acts/Geometry/GeometryIdentifier.hpp +++ b/Core/include/Acts/Geometry/GeometryIdentifier.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GeometryObject.hpp b/Core/include/Acts/Geometry/GeometryObject.hpp index d0fe88fc6cf..a3754996a1e 100644 --- a/Core/include/Acts/Geometry/GeometryObject.hpp +++ b/Core/include/Acts/Geometry/GeometryObject.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GeometryObjectSorter.hpp b/Core/include/Acts/Geometry/GeometryObjectSorter.hpp index 26b0114db1b..5783103d6af 100644 --- a/Core/include/Acts/Geometry/GeometryObjectSorter.hpp +++ b/Core/include/Acts/Geometry/GeometryObjectSorter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GlueVolumesDescriptor.hpp b/Core/include/Acts/Geometry/GlueVolumesDescriptor.hpp index d04fdfe5050..11f0197b891 100644 --- a/Core/include/Acts/Geometry/GlueVolumesDescriptor.hpp +++ b/Core/include/Acts/Geometry/GlueVolumesDescriptor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/GridPortalLink.hpp b/Core/include/Acts/Geometry/GridPortalLink.hpp index 400b86e6b82..0f84d496920 100644 --- a/Core/include/Acts/Geometry/GridPortalLink.hpp +++ b/Core/include/Acts/Geometry/GridPortalLink.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/IConfinedTrackingVolumeBuilder.hpp b/Core/include/Acts/Geometry/IConfinedTrackingVolumeBuilder.hpp index 30550a20e69..c37ea3e9eb5 100644 --- a/Core/include/Acts/Geometry/IConfinedTrackingVolumeBuilder.hpp +++ b/Core/include/Acts/Geometry/IConfinedTrackingVolumeBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include diff --git a/Core/include/Acts/Geometry/ILayerArrayCreator.hpp b/Core/include/Acts/Geometry/ILayerArrayCreator.hpp index 9cfabed7511..d2011c89a21 100644 --- a/Core/include/Acts/Geometry/ILayerArrayCreator.hpp +++ b/Core/include/Acts/Geometry/ILayerArrayCreator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/ILayerBuilder.hpp b/Core/include/Acts/Geometry/ILayerBuilder.hpp index 41ed9d2ee2e..671b6708bf6 100644 --- a/Core/include/Acts/Geometry/ILayerBuilder.hpp +++ b/Core/include/Acts/Geometry/ILayerBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/ITrackingGeometryBuilder.hpp b/Core/include/Acts/Geometry/ITrackingGeometryBuilder.hpp index de0b2349e32..2967d3fe12a 100644 --- a/Core/include/Acts/Geometry/ITrackingGeometryBuilder.hpp +++ b/Core/include/Acts/Geometry/ITrackingGeometryBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Geometry/GeometryContext.hpp" diff --git a/Core/include/Acts/Geometry/ITrackingVolumeArrayCreator.hpp b/Core/include/Acts/Geometry/ITrackingVolumeArrayCreator.hpp index 003206d7c50..01a8efd850a 100644 --- a/Core/include/Acts/Geometry/ITrackingVolumeArrayCreator.hpp +++ b/Core/include/Acts/Geometry/ITrackingVolumeArrayCreator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/ITrackingVolumeBuilder.hpp b/Core/include/Acts/Geometry/ITrackingVolumeBuilder.hpp index eb477c203f8..f0263a1f510 100644 --- a/Core/include/Acts/Geometry/ITrackingVolumeBuilder.hpp +++ b/Core/include/Acts/Geometry/ITrackingVolumeBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/ITrackingVolumeHelper.hpp b/Core/include/Acts/Geometry/ITrackingVolumeHelper.hpp index dce7319e8b5..a029a8ea494 100644 --- a/Core/include/Acts/Geometry/ITrackingVolumeHelper.hpp +++ b/Core/include/Acts/Geometry/ITrackingVolumeHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/KDTreeTrackingGeometryBuilder.hpp b/Core/include/Acts/Geometry/KDTreeTrackingGeometryBuilder.hpp index f44c51cbf74..25fc8ebf30b 100644 --- a/Core/include/Acts/Geometry/KDTreeTrackingGeometryBuilder.hpp +++ b/Core/include/Acts/Geometry/KDTreeTrackingGeometryBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/Layer.hpp b/Core/include/Acts/Geometry/Layer.hpp index fa748fa076f..15b1b98c621 100644 --- a/Core/include/Acts/Geometry/Layer.hpp +++ b/Core/include/Acts/Geometry/Layer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/LayerArrayCreator.hpp b/Core/include/Acts/Geometry/LayerArrayCreator.hpp index f142ec026c6..5358483cdde 100644 --- a/Core/include/Acts/Geometry/LayerArrayCreator.hpp +++ b/Core/include/Acts/Geometry/LayerArrayCreator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/LayerCreator.hpp b/Core/include/Acts/Geometry/LayerCreator.hpp index 0d490732b2c..b7996f68912 100644 --- a/Core/include/Acts/Geometry/LayerCreator.hpp +++ b/Core/include/Acts/Geometry/LayerCreator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/NavigationLayer.hpp b/Core/include/Acts/Geometry/NavigationLayer.hpp index b0d1cd5e4c7..6c80477d98a 100644 --- a/Core/include/Acts/Geometry/NavigationLayer.hpp +++ b/Core/include/Acts/Geometry/NavigationLayer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/PassiveLayerBuilder.hpp b/Core/include/Acts/Geometry/PassiveLayerBuilder.hpp index e22f6a94115..b274c638846 100644 --- a/Core/include/Acts/Geometry/PassiveLayerBuilder.hpp +++ b/Core/include/Acts/Geometry/PassiveLayerBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/PlaneLayer.hpp b/Core/include/Acts/Geometry/PlaneLayer.hpp index e7fd4bfe90d..2b86e3fb645 100644 --- a/Core/include/Acts/Geometry/PlaneLayer.hpp +++ b/Core/include/Acts/Geometry/PlaneLayer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/Polyhedron.hpp b/Core/include/Acts/Geometry/Polyhedron.hpp index e8a55d17d93..2a6eb47d765 100644 --- a/Core/include/Acts/Geometry/Polyhedron.hpp +++ b/Core/include/Acts/Geometry/Polyhedron.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/Portal.hpp b/Core/include/Acts/Geometry/Portal.hpp index ffaad3e2ccb..722b433d036 100644 --- a/Core/include/Acts/Geometry/Portal.hpp +++ b/Core/include/Acts/Geometry/Portal.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/PortalError.hpp b/Core/include/Acts/Geometry/PortalError.hpp index 0c704b1e9e5..0e1143228df 100644 --- a/Core/include/Acts/Geometry/PortalError.hpp +++ b/Core/include/Acts/Geometry/PortalError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/PortalLinkBase.hpp b/Core/include/Acts/Geometry/PortalLinkBase.hpp index a445190af05..2f8273f10b5 100644 --- a/Core/include/Acts/Geometry/PortalLinkBase.hpp +++ b/Core/include/Acts/Geometry/PortalLinkBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/ProtoLayer.hpp b/Core/include/Acts/Geometry/ProtoLayer.hpp index 39f6827b23f..d12e674918d 100644 --- a/Core/include/Acts/Geometry/ProtoLayer.hpp +++ b/Core/include/Acts/Geometry/ProtoLayer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Geometry/Extent.hpp" diff --git a/Core/include/Acts/Geometry/ProtoLayerHelper.hpp b/Core/include/Acts/Geometry/ProtoLayerHelper.hpp index 3b912664d8e..33ca14718b4 100644 --- a/Core/include/Acts/Geometry/ProtoLayerHelper.hpp +++ b/Core/include/Acts/Geometry/ProtoLayerHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/SurfaceArrayCreator.hpp b/Core/include/Acts/Geometry/SurfaceArrayCreator.hpp index 6b6db768a2d..bc52d700c72 100644 --- a/Core/include/Acts/Geometry/SurfaceArrayCreator.hpp +++ b/Core/include/Acts/Geometry/SurfaceArrayCreator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/SurfaceBinningMatcher.hpp b/Core/include/Acts/Geometry/SurfaceBinningMatcher.hpp index 624fe01193c..c15928ee1dc 100644 --- a/Core/include/Acts/Geometry/SurfaceBinningMatcher.hpp +++ b/Core/include/Acts/Geometry/SurfaceBinningMatcher.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/TrackingGeometry.hpp b/Core/include/Acts/Geometry/TrackingGeometry.hpp index ea3d8b7efe6..b0ac658eecd 100644 --- a/Core/include/Acts/Geometry/TrackingGeometry.hpp +++ b/Core/include/Acts/Geometry/TrackingGeometry.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/TrackingGeometryBuilder.hpp b/Core/include/Acts/Geometry/TrackingGeometryBuilder.hpp index a3d1bf4a011..66eb55c4c86 100644 --- a/Core/include/Acts/Geometry/TrackingGeometryBuilder.hpp +++ b/Core/include/Acts/Geometry/TrackingGeometryBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/TrackingVolume.hpp b/Core/include/Acts/Geometry/TrackingVolume.hpp index 799f3802957..290e5c21425 100644 --- a/Core/include/Acts/Geometry/TrackingVolume.hpp +++ b/Core/include/Acts/Geometry/TrackingVolume.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/TrackingVolumeArrayCreator.hpp b/Core/include/Acts/Geometry/TrackingVolumeArrayCreator.hpp index 07f21fbafad..fe951f61dc0 100644 --- a/Core/include/Acts/Geometry/TrackingVolumeArrayCreator.hpp +++ b/Core/include/Acts/Geometry/TrackingVolumeArrayCreator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/TrackingVolumeVisitorConcept.hpp b/Core/include/Acts/Geometry/TrackingVolumeVisitorConcept.hpp index c79ed610de9..7ecaf7f3e7c 100644 --- a/Core/include/Acts/Geometry/TrackingVolumeVisitorConcept.hpp +++ b/Core/include/Acts/Geometry/TrackingVolumeVisitorConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/TrapezoidVolumeBounds.hpp b/Core/include/Acts/Geometry/TrapezoidVolumeBounds.hpp index edfcd8da1c7..c34234287c8 100644 --- a/Core/include/Acts/Geometry/TrapezoidVolumeBounds.hpp +++ b/Core/include/Acts/Geometry/TrapezoidVolumeBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/TrivialPortalLink.hpp b/Core/include/Acts/Geometry/TrivialPortalLink.hpp index 73199028feb..9f99881fdc7 100644 --- a/Core/include/Acts/Geometry/TrivialPortalLink.hpp +++ b/Core/include/Acts/Geometry/TrivialPortalLink.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/Volume.hpp b/Core/include/Acts/Geometry/Volume.hpp index 91712f87a0e..a59451efe09 100644 --- a/Core/include/Acts/Geometry/Volume.hpp +++ b/Core/include/Acts/Geometry/Volume.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/VolumeBounds.hpp b/Core/include/Acts/Geometry/VolumeBounds.hpp index c065440383b..3b5810ff4c8 100644 --- a/Core/include/Acts/Geometry/VolumeBounds.hpp +++ b/Core/include/Acts/Geometry/VolumeBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Geometry/detail/Layer.ipp b/Core/include/Acts/Geometry/detail/Layer.ipp index 2c53bddae3a..fb76daf5773 100644 --- a/Core/include/Acts/Geometry/detail/Layer.ipp +++ b/Core/include/Acts/Geometry/detail/Layer.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Core/include/Acts/MagneticField/BFieldMapUtils.hpp b/Core/include/Acts/MagneticField/BFieldMapUtils.hpp index 896b5b22344..09ac0035d9b 100644 --- a/Core/include/Acts/MagneticField/BFieldMapUtils.hpp +++ b/Core/include/Acts/MagneticField/BFieldMapUtils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/MagneticField/ConstantBField.hpp b/Core/include/Acts/MagneticField/ConstantBField.hpp index a461242bfcc..7586cbcbace 100644 --- a/Core/include/Acts/MagneticField/ConstantBField.hpp +++ b/Core/include/Acts/MagneticField/ConstantBField.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/MagneticField/InterpolatedBFieldMap.hpp b/Core/include/Acts/MagneticField/InterpolatedBFieldMap.hpp index 09b975f44fe..d65f8113d9e 100644 --- a/Core/include/Acts/MagneticField/InterpolatedBFieldMap.hpp +++ b/Core/include/Acts/MagneticField/InterpolatedBFieldMap.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/MagneticField/MagneticFieldContext.hpp b/Core/include/Acts/MagneticField/MagneticFieldContext.hpp index 2b626754993..3d44f00a3ec 100644 --- a/Core/include/Acts/MagneticField/MagneticFieldContext.hpp +++ b/Core/include/Acts/MagneticField/MagneticFieldContext.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/MagneticField/MagneticFieldError.hpp b/Core/include/Acts/MagneticField/MagneticFieldError.hpp index 019d27fc5b8..0149032ad69 100644 --- a/Core/include/Acts/MagneticField/MagneticFieldError.hpp +++ b/Core/include/Acts/MagneticField/MagneticFieldError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/MagneticField/MagneticFieldProvider.hpp b/Core/include/Acts/MagneticField/MagneticFieldProvider.hpp index cf3c5b994bc..068c2ed8e33 100644 --- a/Core/include/Acts/MagneticField/MagneticFieldProvider.hpp +++ b/Core/include/Acts/MagneticField/MagneticFieldProvider.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/MagneticField/NullBField.hpp b/Core/include/Acts/MagneticField/NullBField.hpp index 9d0f72f9f41..d3c24ee59f3 100644 --- a/Core/include/Acts/MagneticField/NullBField.hpp +++ b/Core/include/Acts/MagneticField/NullBField.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/MagneticField/SolenoidBField.hpp b/Core/include/Acts/MagneticField/SolenoidBField.hpp index c97f3e96ff3..b2162203eec 100644 --- a/Core/include/Acts/MagneticField/SolenoidBField.hpp +++ b/Core/include/Acts/MagneticField/SolenoidBField.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/AccumulatedMaterialSlab.hpp b/Core/include/Acts/Material/AccumulatedMaterialSlab.hpp index d726df1dd2e..5f0013bcc3b 100644 --- a/Core/include/Acts/Material/AccumulatedMaterialSlab.hpp +++ b/Core/include/Acts/Material/AccumulatedMaterialSlab.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/AccumulatedSurfaceMaterial.hpp b/Core/include/Acts/Material/AccumulatedSurfaceMaterial.hpp index 1524176d3c4..7107410bfec 100644 --- a/Core/include/Acts/Material/AccumulatedSurfaceMaterial.hpp +++ b/Core/include/Acts/Material/AccumulatedSurfaceMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/AccumulatedVolumeMaterial.hpp b/Core/include/Acts/Material/AccumulatedVolumeMaterial.hpp index a367d609078..3555a8fbabf 100644 --- a/Core/include/Acts/Material/AccumulatedVolumeMaterial.hpp +++ b/Core/include/Acts/Material/AccumulatedVolumeMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/BinnedSurfaceMaterial.hpp b/Core/include/Acts/Material/BinnedSurfaceMaterial.hpp index c8df504b38b..97d3347c9e1 100644 --- a/Core/include/Acts/Material/BinnedSurfaceMaterial.hpp +++ b/Core/include/Acts/Material/BinnedSurfaceMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/BinnedSurfaceMaterialAccumulater.hpp b/Core/include/Acts/Material/BinnedSurfaceMaterialAccumulater.hpp index 43257700eb9..f7f5c24bdae 100644 --- a/Core/include/Acts/Material/BinnedSurfaceMaterialAccumulater.hpp +++ b/Core/include/Acts/Material/BinnedSurfaceMaterialAccumulater.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/GridSurfaceMaterial.hpp b/Core/include/Acts/Material/GridSurfaceMaterial.hpp index c97dd9e93a1..6c2d6045ca2 100644 --- a/Core/include/Acts/Material/GridSurfaceMaterial.hpp +++ b/Core/include/Acts/Material/GridSurfaceMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/HomogeneousSurfaceMaterial.hpp b/Core/include/Acts/Material/HomogeneousSurfaceMaterial.hpp index 541bbaeca1e..1ea14e632ac 100644 --- a/Core/include/Acts/Material/HomogeneousSurfaceMaterial.hpp +++ b/Core/include/Acts/Material/HomogeneousSurfaceMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/HomogeneousVolumeMaterial.hpp b/Core/include/Acts/Material/HomogeneousVolumeMaterial.hpp index 5309cb73ab5..91005dcae55 100644 --- a/Core/include/Acts/Material/HomogeneousVolumeMaterial.hpp +++ b/Core/include/Acts/Material/HomogeneousVolumeMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/IMaterialDecorator.hpp b/Core/include/Acts/Material/IMaterialDecorator.hpp index 3b6d390210b..6783dcea751 100644 --- a/Core/include/Acts/Material/IMaterialDecorator.hpp +++ b/Core/include/Acts/Material/IMaterialDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/ISurfaceMaterial.hpp b/Core/include/Acts/Material/ISurfaceMaterial.hpp index 34d3d25c938..d26563340cf 100644 --- a/Core/include/Acts/Material/ISurfaceMaterial.hpp +++ b/Core/include/Acts/Material/ISurfaceMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/IVolumeMaterial.hpp b/Core/include/Acts/Material/IVolumeMaterial.hpp index 5f1d18f50e6..334008d6f62 100644 --- a/Core/include/Acts/Material/IVolumeMaterial.hpp +++ b/Core/include/Acts/Material/IVolumeMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/Interactions.hpp b/Core/include/Acts/Material/Interactions.hpp index 4ca87b1ca0c..07ccbd7541f 100644 --- a/Core/include/Acts/Material/Interactions.hpp +++ b/Core/include/Acts/Material/Interactions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/InterpolatedMaterialMap.hpp b/Core/include/Acts/Material/InterpolatedMaterialMap.hpp index f353efd60c5..eb792539871 100644 --- a/Core/include/Acts/Material/InterpolatedMaterialMap.hpp +++ b/Core/include/Acts/Material/InterpolatedMaterialMap.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/IntersectionMaterialAssigner.hpp b/Core/include/Acts/Material/IntersectionMaterialAssigner.hpp index 408b1a54acd..036b3de982a 100644 --- a/Core/include/Acts/Material/IntersectionMaterialAssigner.hpp +++ b/Core/include/Acts/Material/IntersectionMaterialAssigner.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/Material.hpp b/Core/include/Acts/Material/Material.hpp index 02aab3d22e9..ae42e08cf68 100644 --- a/Core/include/Acts/Material/Material.hpp +++ b/Core/include/Acts/Material/Material.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/MaterialComposition.hpp b/Core/include/Acts/Material/MaterialComposition.hpp index 00073a2b1f0..843736ebd58 100644 --- a/Core/include/Acts/Material/MaterialComposition.hpp +++ b/Core/include/Acts/Material/MaterialComposition.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/MaterialGridHelper.hpp b/Core/include/Acts/Material/MaterialGridHelper.hpp index 299cadf24f7..0f68a86c3b3 100644 --- a/Core/include/Acts/Material/MaterialGridHelper.hpp +++ b/Core/include/Acts/Material/MaterialGridHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/MaterialInteraction.hpp b/Core/include/Acts/Material/MaterialInteraction.hpp index b2e39004f88..e3b078d310a 100644 --- a/Core/include/Acts/Material/MaterialInteraction.hpp +++ b/Core/include/Acts/Material/MaterialInteraction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/MaterialInteractionAssignment.hpp b/Core/include/Acts/Material/MaterialInteractionAssignment.hpp index edef6eb36ad..18cdc618e02 100644 --- a/Core/include/Acts/Material/MaterialInteractionAssignment.hpp +++ b/Core/include/Acts/Material/MaterialInteractionAssignment.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/MaterialMapUtils.hpp b/Core/include/Acts/Material/MaterialMapUtils.hpp index 5e3967caefe..8cacb23eb20 100644 --- a/Core/include/Acts/Material/MaterialMapUtils.hpp +++ b/Core/include/Acts/Material/MaterialMapUtils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/MaterialMapper.hpp b/Core/include/Acts/Material/MaterialMapper.hpp index 2428b1385d4..6e2d02e6cd7 100644 --- a/Core/include/Acts/Material/MaterialMapper.hpp +++ b/Core/include/Acts/Material/MaterialMapper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/MaterialSlab.hpp b/Core/include/Acts/Material/MaterialSlab.hpp index 4bf37b8d1c5..71c56c1a154 100644 --- a/Core/include/Acts/Material/MaterialSlab.hpp +++ b/Core/include/Acts/Material/MaterialSlab.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/MaterialValidater.hpp b/Core/include/Acts/Material/MaterialValidater.hpp index 53e7b194004..fcfff9b7d93 100644 --- a/Core/include/Acts/Material/MaterialValidater.hpp +++ b/Core/include/Acts/Material/MaterialValidater.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/PropagatorMaterialAssigner.hpp b/Core/include/Acts/Material/PropagatorMaterialAssigner.hpp index 57cb73ec312..5c3c0fa0339 100644 --- a/Core/include/Acts/Material/PropagatorMaterialAssigner.hpp +++ b/Core/include/Acts/Material/PropagatorMaterialAssigner.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/ProtoSurfaceMaterial.hpp b/Core/include/Acts/Material/ProtoSurfaceMaterial.hpp index 0eab5c89dff..58dee9d01c7 100644 --- a/Core/include/Acts/Material/ProtoSurfaceMaterial.hpp +++ b/Core/include/Acts/Material/ProtoSurfaceMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/ProtoVolumeMaterial.hpp b/Core/include/Acts/Material/ProtoVolumeMaterial.hpp index fb0a02dfa8f..38206e8f6dc 100644 --- a/Core/include/Acts/Material/ProtoVolumeMaterial.hpp +++ b/Core/include/Acts/Material/ProtoVolumeMaterial.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/SurfaceMaterialMapper.hpp b/Core/include/Acts/Material/SurfaceMaterialMapper.hpp index 59aeb2ae728..305d293542c 100644 --- a/Core/include/Acts/Material/SurfaceMaterialMapper.hpp +++ b/Core/include/Acts/Material/SurfaceMaterialMapper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/VolumeMaterialMapper.hpp b/Core/include/Acts/Material/VolumeMaterialMapper.hpp index 4354d68a60b..baf29d7b3d1 100644 --- a/Core/include/Acts/Material/VolumeMaterialMapper.hpp +++ b/Core/include/Acts/Material/VolumeMaterialMapper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/detail/AverageMaterials.hpp b/Core/include/Acts/Material/detail/AverageMaterials.hpp index 5fec5819dc5..02db95d4671 100644 --- a/Core/include/Acts/Material/detail/AverageMaterials.hpp +++ b/Core/include/Acts/Material/detail/AverageMaterials.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/interface/IAssignmentFinder.hpp b/Core/include/Acts/Material/interface/IAssignmentFinder.hpp index 75793afa60f..ff83041d688 100644 --- a/Core/include/Acts/Material/interface/IAssignmentFinder.hpp +++ b/Core/include/Acts/Material/interface/IAssignmentFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Material/interface/ISurfaceMaterialAccumulater.hpp b/Core/include/Acts/Material/interface/ISurfaceMaterialAccumulater.hpp index f394948b6e3..ee1b4429238 100644 --- a/Core/include/Acts/Material/interface/ISurfaceMaterialAccumulater.hpp +++ b/Core/include/Acts/Material/interface/ISurfaceMaterialAccumulater.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/DetectorNavigator.hpp b/Core/include/Acts/Navigation/DetectorNavigator.hpp index eb18295ecef..61d8525106c 100644 --- a/Core/include/Acts/Navigation/DetectorNavigator.hpp +++ b/Core/include/Acts/Navigation/DetectorNavigator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/DetectorVolumeFinders.hpp b/Core/include/Acts/Navigation/DetectorVolumeFinders.hpp index dd4f5ed818e..58f0b562b19 100644 --- a/Core/include/Acts/Navigation/DetectorVolumeFinders.hpp +++ b/Core/include/Acts/Navigation/DetectorVolumeFinders.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/InternalNavigation.hpp b/Core/include/Acts/Navigation/InternalNavigation.hpp index 75f8ec87ea9..d979738cc9c 100644 --- a/Core/include/Acts/Navigation/InternalNavigation.hpp +++ b/Core/include/Acts/Navigation/InternalNavigation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/MultiLayerNavigation.hpp b/Core/include/Acts/Navigation/MultiLayerNavigation.hpp index 12d48e5dcaa..4434f24e7d4 100644 --- a/Core/include/Acts/Navigation/MultiLayerNavigation.hpp +++ b/Core/include/Acts/Navigation/MultiLayerNavigation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/NavigationDelegates.hpp b/Core/include/Acts/Navigation/NavigationDelegates.hpp index b0d747de7c8..49894d9d9de 100644 --- a/Core/include/Acts/Navigation/NavigationDelegates.hpp +++ b/Core/include/Acts/Navigation/NavigationDelegates.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/NavigationState.hpp b/Core/include/Acts/Navigation/NavigationState.hpp index db3477b4fd5..6cfc8a17e46 100644 --- a/Core/include/Acts/Navigation/NavigationState.hpp +++ b/Core/include/Acts/Navigation/NavigationState.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/NavigationStateFillers.hpp b/Core/include/Acts/Navigation/NavigationStateFillers.hpp index 1eb70e0d361..74e6f3e7fb6 100644 --- a/Core/include/Acts/Navigation/NavigationStateFillers.hpp +++ b/Core/include/Acts/Navigation/NavigationStateFillers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/NavigationStateUpdaters.hpp b/Core/include/Acts/Navigation/NavigationStateUpdaters.hpp index b5e4d90f53b..df5e750db54 100644 --- a/Core/include/Acts/Navigation/NavigationStateUpdaters.hpp +++ b/Core/include/Acts/Navigation/NavigationStateUpdaters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/NavigationStream.hpp b/Core/include/Acts/Navigation/NavigationStream.hpp index f23fed9087c..71443e48915 100644 --- a/Core/include/Acts/Navigation/NavigationStream.hpp +++ b/Core/include/Acts/Navigation/NavigationStream.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Navigation/PortalNavigation.hpp b/Core/include/Acts/Navigation/PortalNavigation.hpp index 4a10993d68e..638f2397760 100644 --- a/Core/include/Acts/Navigation/PortalNavigation.hpp +++ b/Core/include/Acts/Navigation/PortalNavigation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/ActorConcepts.hpp b/Core/include/Acts/Propagator/ActorConcepts.hpp index 559d0fee17f..aecbdba4ac6 100644 --- a/Core/include/Acts/Propagator/ActorConcepts.hpp +++ b/Core/include/Acts/Propagator/ActorConcepts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/ActorList.hpp b/Core/include/Acts/Propagator/ActorList.hpp index c96dea355b3..89de8799a0d 100644 --- a/Core/include/Acts/Propagator/ActorList.hpp +++ b/Core/include/Acts/Propagator/ActorList.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/AtlasStepper.hpp b/Core/include/Acts/Propagator/AtlasStepper.hpp index f84d02cd543..f31aadbffab 100644 --- a/Core/include/Acts/Propagator/AtlasStepper.hpp +++ b/Core/include/Acts/Propagator/AtlasStepper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/ConstrainedStep.hpp b/Core/include/Acts/Propagator/ConstrainedStep.hpp index 32f49fae6f5..e957b001281 100644 --- a/Core/include/Acts/Propagator/ConstrainedStep.hpp +++ b/Core/include/Acts/Propagator/ConstrainedStep.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/DirectNavigator.hpp b/Core/include/Acts/Propagator/DirectNavigator.hpp index 42af0ee7f57..8df2afdfe8e 100644 --- a/Core/include/Acts/Propagator/DirectNavigator.hpp +++ b/Core/include/Acts/Propagator/DirectNavigator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/EigenStepper.hpp b/Core/include/Acts/Propagator/EigenStepper.hpp index 52126c46fba..fb1062b0c9b 100644 --- a/Core/include/Acts/Propagator/EigenStepper.hpp +++ b/Core/include/Acts/Propagator/EigenStepper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/EigenStepper.ipp b/Core/include/Acts/Propagator/EigenStepper.ipp index 71aa342ed12..cd08613f722 100644 --- a/Core/include/Acts/Propagator/EigenStepper.ipp +++ b/Core/include/Acts/Propagator/EigenStepper.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/TransformationHelpers.hpp" #include "Acts/Propagator/ConstrainedStep.hpp" diff --git a/Core/include/Acts/Propagator/EigenStepperDefaultExtension.hpp b/Core/include/Acts/Propagator/EigenStepperDefaultExtension.hpp index cf6cadbbb41..2810b11a2a2 100644 --- a/Core/include/Acts/Propagator/EigenStepperDefaultExtension.hpp +++ b/Core/include/Acts/Propagator/EigenStepperDefaultExtension.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/EigenStepperDenseExtension.hpp b/Core/include/Acts/Propagator/EigenStepperDenseExtension.hpp index 155bc1637bc..822e7f7d6ea 100644 --- a/Core/include/Acts/Propagator/EigenStepperDenseExtension.hpp +++ b/Core/include/Acts/Propagator/EigenStepperDenseExtension.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/EigenStepperError.hpp b/Core/include/Acts/Propagator/EigenStepperError.hpp index ae04a1bcbe5..cc5af071146 100644 --- a/Core/include/Acts/Propagator/EigenStepperError.hpp +++ b/Core/include/Acts/Propagator/EigenStepperError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/MaterialInteractor.hpp b/Core/include/Acts/Propagator/MaterialInteractor.hpp index ca3cc354b6b..9e3f59c4fb5 100644 --- a/Core/include/Acts/Propagator/MaterialInteractor.hpp +++ b/Core/include/Acts/Propagator/MaterialInteractor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/MultiEigenStepperLoop.hpp b/Core/include/Acts/Propagator/MultiEigenStepperLoop.hpp index 1137fc687b0..1bb4ab8f55a 100644 --- a/Core/include/Acts/Propagator/MultiEigenStepperLoop.hpp +++ b/Core/include/Acts/Propagator/MultiEigenStepperLoop.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/MultiEigenStepperLoop.ipp b/Core/include/Acts/Propagator/MultiEigenStepperLoop.ipp index 8f9d3216d6a..fab3e3f0779 100644 --- a/Core/include/Acts/Propagator/MultiEigenStepperLoop.ipp +++ b/Core/include/Acts/Propagator/MultiEigenStepperLoop.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/MultiEigenStepperLoop.hpp" #include "Acts/Utilities/Logger.hpp" diff --git a/Core/include/Acts/Propagator/MultiStepperAborters.hpp b/Core/include/Acts/Propagator/MultiStepperAborters.hpp index 6d1e0e4f131..f675200975e 100644 --- a/Core/include/Acts/Propagator/MultiStepperAborters.hpp +++ b/Core/include/Acts/Propagator/MultiStepperAborters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/MultiStepperError.hpp b/Core/include/Acts/Propagator/MultiStepperError.hpp index 77dae505f5f..ff068b14523 100644 --- a/Core/include/Acts/Propagator/MultiStepperError.hpp +++ b/Core/include/Acts/Propagator/MultiStepperError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/Navigator.hpp b/Core/include/Acts/Propagator/Navigator.hpp index dba15d46ac9..b2bea757749 100644 --- a/Core/include/Acts/Propagator/Navigator.hpp +++ b/Core/include/Acts/Propagator/Navigator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/NavigatorOptions.hpp b/Core/include/Acts/Propagator/NavigatorOptions.hpp index 55928e6eb11..27f017d47b2 100644 --- a/Core/include/Acts/Propagator/NavigatorOptions.hpp +++ b/Core/include/Acts/Propagator/NavigatorOptions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/Propagator.hpp b/Core/include/Acts/Propagator/Propagator.hpp index 854c251370b..6a38e5d2a8f 100644 --- a/Core/include/Acts/Propagator/Propagator.hpp +++ b/Core/include/Acts/Propagator/Propagator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/Propagator.ipp b/Core/include/Acts/Propagator/Propagator.ipp index 4a0e553978a..a7c12309bb7 100644 --- a/Core/include/Acts/Propagator/Propagator.ipp +++ b/Core/include/Acts/Propagator/Propagator.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/TrackParametersConcept.hpp" #include "Acts/Propagator/ActorList.hpp" diff --git a/Core/include/Acts/Propagator/PropagatorError.hpp b/Core/include/Acts/Propagator/PropagatorError.hpp index 099377f507b..34bd9df0f90 100644 --- a/Core/include/Acts/Propagator/PropagatorError.hpp +++ b/Core/include/Acts/Propagator/PropagatorError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/PropagatorOptions.hpp b/Core/include/Acts/Propagator/PropagatorOptions.hpp index 2aac175476f..039aed013a5 100644 --- a/Core/include/Acts/Propagator/PropagatorOptions.hpp +++ b/Core/include/Acts/Propagator/PropagatorOptions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/PropagatorResult.hpp b/Core/include/Acts/Propagator/PropagatorResult.hpp index 3c4998d7291..232211b8495 100644 --- a/Core/include/Acts/Propagator/PropagatorResult.hpp +++ b/Core/include/Acts/Propagator/PropagatorResult.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/PropagatorState.hpp b/Core/include/Acts/Propagator/PropagatorState.hpp index c7ed3394df7..29e1baeeb30 100644 --- a/Core/include/Acts/Propagator/PropagatorState.hpp +++ b/Core/include/Acts/Propagator/PropagatorState.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/PropagatorTraits.hpp b/Core/include/Acts/Propagator/PropagatorTraits.hpp index 047e21386b8..2bd1567fdb2 100644 --- a/Core/include/Acts/Propagator/PropagatorTraits.hpp +++ b/Core/include/Acts/Propagator/PropagatorTraits.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/RiddersPropagator.hpp b/Core/include/Acts/Propagator/RiddersPropagator.hpp index aecb1fdfb5f..32df1e09387 100644 --- a/Core/include/Acts/Propagator/RiddersPropagator.hpp +++ b/Core/include/Acts/Propagator/RiddersPropagator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/RiddersPropagator.ipp b/Core/include/Acts/Propagator/RiddersPropagator.ipp index 653107e0fc1..cef7c79bd4f 100644 --- a/Core/include/Acts/Propagator/RiddersPropagator.ipp +++ b/Core/include/Acts/Propagator/RiddersPropagator.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/TrackParametrization.hpp" diff --git a/Core/include/Acts/Propagator/StandardAborters.hpp b/Core/include/Acts/Propagator/StandardAborters.hpp index 7cb9648c088..ce460a945d7 100644 --- a/Core/include/Acts/Propagator/StandardAborters.hpp +++ b/Core/include/Acts/Propagator/StandardAborters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/StepperConcept.hpp b/Core/include/Acts/Propagator/StepperConcept.hpp index 492591ea63f..d869b90b301 100644 --- a/Core/include/Acts/Propagator/StepperConcept.hpp +++ b/Core/include/Acts/Propagator/StepperConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/StepperOptions.hpp b/Core/include/Acts/Propagator/StepperOptions.hpp index 555ef30d865..3cecf66260f 100644 --- a/Core/include/Acts/Propagator/StepperOptions.hpp +++ b/Core/include/Acts/Propagator/StepperOptions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/StraightLineStepper.hpp b/Core/include/Acts/Propagator/StraightLineStepper.hpp index 1e6879676d2..8eb4618e256 100644 --- a/Core/include/Acts/Propagator/StraightLineStepper.hpp +++ b/Core/include/Acts/Propagator/StraightLineStepper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/SurfaceCollector.hpp b/Core/include/Acts/Propagator/SurfaceCollector.hpp index 62395ae0824..9d5afa9b226 100644 --- a/Core/include/Acts/Propagator/SurfaceCollector.hpp +++ b/Core/include/Acts/Propagator/SurfaceCollector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/SympyStepper.hpp b/Core/include/Acts/Propagator/SympyStepper.hpp index b981d39aa95..1e771a53ba7 100644 --- a/Core/include/Acts/Propagator/SympyStepper.hpp +++ b/Core/include/Acts/Propagator/SympyStepper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/SympyStepper.ipp b/Core/include/Acts/Propagator/SympyStepper.ipp index 42714f4cdbb..30e91427026 100644 --- a/Core/include/Acts/Propagator/SympyStepper.ipp +++ b/Core/include/Acts/Propagator/SympyStepper.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/EigenStepperError.hpp" diff --git a/Core/include/Acts/Propagator/TryAllNavigator.hpp b/Core/include/Acts/Propagator/TryAllNavigator.hpp index 2ba9cc6a80e..9a3a2d78475 100644 --- a/Core/include/Acts/Propagator/TryAllNavigator.hpp +++ b/Core/include/Acts/Propagator/TryAllNavigator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/VoidNavigator.hpp b/Core/include/Acts/Propagator/VoidNavigator.hpp index fe5ed967157..d6732998d4b 100644 --- a/Core/include/Acts/Propagator/VoidNavigator.hpp +++ b/Core/include/Acts/Propagator/VoidNavigator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/VolumeCollector.hpp b/Core/include/Acts/Propagator/VolumeCollector.hpp index 1aa1397e677..5163b71bab7 100644 --- a/Core/include/Acts/Propagator/VolumeCollector.hpp +++ b/Core/include/Acts/Propagator/VolumeCollector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/CovarianceEngine.hpp b/Core/include/Acts/Propagator/detail/CovarianceEngine.hpp index 1509402a04b..9af7086f063 100644 --- a/Core/include/Acts/Propagator/detail/CovarianceEngine.hpp +++ b/Core/include/Acts/Propagator/detail/CovarianceEngine.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/JacobianEngine.hpp b/Core/include/Acts/Propagator/detail/JacobianEngine.hpp index f44f6ea0a98..a5dae1cf5ea 100644 --- a/Core/include/Acts/Propagator/detail/JacobianEngine.hpp +++ b/Core/include/Acts/Propagator/detail/JacobianEngine.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/LoopProtection.hpp b/Core/include/Acts/Propagator/detail/LoopProtection.hpp index 1dd334a59a4..a5efe15306e 100644 --- a/Core/include/Acts/Propagator/detail/LoopProtection.hpp +++ b/Core/include/Acts/Propagator/detail/LoopProtection.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/LoopStepperUtils.hpp b/Core/include/Acts/Propagator/detail/LoopStepperUtils.hpp index 55925db5e0b..199bc5d0113 100644 --- a/Core/include/Acts/Propagator/detail/LoopStepperUtils.hpp +++ b/Core/include/Acts/Propagator/detail/LoopStepperUtils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/NavigationHelpers.hpp b/Core/include/Acts/Propagator/detail/NavigationHelpers.hpp index eed67d053eb..16e8c089e4f 100644 --- a/Core/include/Acts/Propagator/detail/NavigationHelpers.hpp +++ b/Core/include/Acts/Propagator/detail/NavigationHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/ParameterTraits.hpp b/Core/include/Acts/Propagator/detail/ParameterTraits.hpp index 33cfaa681f0..5bf9c5bde8e 100644 --- a/Core/include/Acts/Propagator/detail/ParameterTraits.hpp +++ b/Core/include/Acts/Propagator/detail/ParameterTraits.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/PointwiseMaterialInteraction.hpp b/Core/include/Acts/Propagator/detail/PointwiseMaterialInteraction.hpp index 66624b4ca11..e55f60a3dbd 100644 --- a/Core/include/Acts/Propagator/detail/PointwiseMaterialInteraction.hpp +++ b/Core/include/Acts/Propagator/detail/PointwiseMaterialInteraction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/SteppingHelper.hpp b/Core/include/Acts/Propagator/detail/SteppingHelper.hpp index 01db7f6c8fd..c78f0ea1f51 100644 --- a/Core/include/Acts/Propagator/detail/SteppingHelper.hpp +++ b/Core/include/Acts/Propagator/detail/SteppingHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/SteppingLogger.hpp b/Core/include/Acts/Propagator/detail/SteppingLogger.hpp index c8c47392706..ffdfcb84500 100644 --- a/Core/include/Acts/Propagator/detail/SteppingLogger.hpp +++ b/Core/include/Acts/Propagator/detail/SteppingLogger.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/SympyCovarianceEngine.hpp b/Core/include/Acts/Propagator/detail/SympyCovarianceEngine.hpp index 78a1732120a..3d06a683c61 100644 --- a/Core/include/Acts/Propagator/detail/SympyCovarianceEngine.hpp +++ b/Core/include/Acts/Propagator/detail/SympyCovarianceEngine.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/SympyJacobianEngine.hpp b/Core/include/Acts/Propagator/detail/SympyJacobianEngine.hpp index 19f62751a5d..dadc63f0f76 100644 --- a/Core/include/Acts/Propagator/detail/SympyJacobianEngine.hpp +++ b/Core/include/Acts/Propagator/detail/SympyJacobianEngine.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/VolumeMaterialInteraction.hpp b/Core/include/Acts/Propagator/detail/VolumeMaterialInteraction.hpp index e5a8efbd29f..9b4cf634e45 100644 --- a/Core/include/Acts/Propagator/detail/VolumeMaterialInteraction.hpp +++ b/Core/include/Acts/Propagator/detail/VolumeMaterialInteraction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Propagator/detail/actor_list_implementation.hpp b/Core/include/Acts/Propagator/detail/actor_list_implementation.hpp index 8d236789aed..e10e22d2fc9 100644 --- a/Core/include/Acts/Propagator/detail/actor_list_implementation.hpp +++ b/Core/include/Acts/Propagator/detail/actor_list_implementation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/BinnedGroup.hpp b/Core/include/Acts/Seeding/BinnedGroup.hpp index 8a44e634e8f..56f0729fe40 100644 --- a/Core/include/Acts/Seeding/BinnedGroup.hpp +++ b/Core/include/Acts/Seeding/BinnedGroup.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/BinnedGroup.ipp b/Core/include/Acts/Seeding/BinnedGroup.ipp index 8bc2ac10648..01012631c4f 100644 --- a/Core/include/Acts/Seeding/BinnedGroup.ipp +++ b/Core/include/Acts/Seeding/BinnedGroup.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { diff --git a/Core/include/Acts/Seeding/BinnedGroupIterator.hpp b/Core/include/Acts/Seeding/BinnedGroupIterator.hpp index b16119110f8..d4599680d32 100644 --- a/Core/include/Acts/Seeding/BinnedGroupIterator.hpp +++ b/Core/include/Acts/Seeding/BinnedGroupIterator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/BinnedGroupIterator.ipp b/Core/include/Acts/Seeding/BinnedGroupIterator.ipp index 334a6a743ec..70cd691f5db 100644 --- a/Core/include/Acts/Seeding/BinnedGroupIterator.ipp +++ b/Core/include/Acts/Seeding/BinnedGroupIterator.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Binned SP Group Iterator diff --git a/Core/include/Acts/Seeding/CandidatesForMiddleSp.hpp b/Core/include/Acts/Seeding/CandidatesForMiddleSp.hpp index 9affac3af92..a559566120f 100644 --- a/Core/include/Acts/Seeding/CandidatesForMiddleSp.hpp +++ b/Core/include/Acts/Seeding/CandidatesForMiddleSp.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/CandidatesForMiddleSp.ipp b/Core/include/Acts/Seeding/CandidatesForMiddleSp.ipp index 7fbaa006a59..fa8bff07631 100644 --- a/Core/include/Acts/Seeding/CandidatesForMiddleSp.ipp +++ b/Core/include/Acts/Seeding/CandidatesForMiddleSp.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { diff --git a/Core/include/Acts/Seeding/EstimateTrackParamsFromSeed.hpp b/Core/include/Acts/Seeding/EstimateTrackParamsFromSeed.hpp index b89038d626f..4b491c6ddc5 100644 --- a/Core/include/Acts/Seeding/EstimateTrackParamsFromSeed.hpp +++ b/Core/include/Acts/Seeding/EstimateTrackParamsFromSeed.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/GbtsBase.hpp b/Core/include/Acts/Seeding/GbtsBase.hpp index dd8e1103311..3c8a7eed8cb 100644 --- a/Core/include/Acts/Seeding/GbtsBase.hpp +++ b/Core/include/Acts/Seeding/GbtsBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/GbtsDataStorage.hpp b/Core/include/Acts/Seeding/GbtsDataStorage.hpp index 5f088e4138e..64ba0bff1b9 100644 --- a/Core/include/Acts/Seeding/GbtsDataStorage.hpp +++ b/Core/include/Acts/Seeding/GbtsDataStorage.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/GbtsGeometry.hpp b/Core/include/Acts/Seeding/GbtsGeometry.hpp index 1d284822d38..54931b200b8 100644 --- a/Core/include/Acts/Seeding/GbtsGeometry.hpp +++ b/Core/include/Acts/Seeding/GbtsGeometry.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/GbtsTrackingFilter.hpp b/Core/include/Acts/Seeding/GbtsTrackingFilter.hpp index 83a8aa2b362..86640eb946b 100644 --- a/Core/include/Acts/Seeding/GbtsTrackingFilter.hpp +++ b/Core/include/Acts/Seeding/GbtsTrackingFilter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/HoughTransformUtils.hpp b/Core/include/Acts/Seeding/HoughTransformUtils.hpp index 22a41229466..a7a84d8908c 100644 --- a/Core/include/Acts/Seeding/HoughTransformUtils.hpp +++ b/Core/include/Acts/Seeding/HoughTransformUtils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /// This file implements the tools for a hough transform. diff --git a/Core/include/Acts/Seeding/HoughTransformUtils.ipp b/Core/include/Acts/Seeding/HoughTransformUtils.ipp index 37ebe3ec9d9..99cbfcb5a05 100644 --- a/Core/include/Acts/Seeding/HoughTransformUtils.ipp +++ b/Core/include/Acts/Seeding/HoughTransformUtils.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Core/include/Acts/Seeding/IExperimentCuts.hpp b/Core/include/Acts/Seeding/IExperimentCuts.hpp index c149c0c4f35..b1c10a144dd 100644 --- a/Core/include/Acts/Seeding/IExperimentCuts.hpp +++ b/Core/include/Acts/Seeding/IExperimentCuts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/Neighbour.hpp b/Core/include/Acts/Seeding/Neighbour.hpp index 82da5a36d31..f6fd772fc28 100644 --- a/Core/include/Acts/Seeding/Neighbour.hpp +++ b/Core/include/Acts/Seeding/Neighbour.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/PathSeeder.hpp b/Core/include/Acts/Seeding/PathSeeder.hpp index fdf4680022f..1d3fd49f66b 100644 --- a/Core/include/Acts/Seeding/PathSeeder.hpp +++ b/Core/include/Acts/Seeding/PathSeeder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedConfirmationRangeConfig.hpp b/Core/include/Acts/Seeding/SeedConfirmationRangeConfig.hpp index e901fcfa0e4..79a353a373a 100644 --- a/Core/include/Acts/Seeding/SeedConfirmationRangeConfig.hpp +++ b/Core/include/Acts/Seeding/SeedConfirmationRangeConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFilter.hpp b/Core/include/Acts/Seeding/SeedFilter.hpp index 387160628ba..3c8720c42f0 100644 --- a/Core/include/Acts/Seeding/SeedFilter.hpp +++ b/Core/include/Acts/Seeding/SeedFilter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFilter.ipp b/Core/include/Acts/Seeding/SeedFilter.ipp index c1f11d4be31..5e54789b714 100644 --- a/Core/include/Acts/Seeding/SeedFilter.ipp +++ b/Core/include/Acts/Seeding/SeedFilter.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Seeding/detail/UtilityFunctions.hpp" diff --git a/Core/include/Acts/Seeding/SeedFilterConfig.hpp b/Core/include/Acts/Seeding/SeedFilterConfig.hpp index 879ad372652..38bcdc3d470 100644 --- a/Core/include/Acts/Seeding/SeedFilterConfig.hpp +++ b/Core/include/Acts/Seeding/SeedFilterConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFinder.hpp b/Core/include/Acts/Seeding/SeedFinder.hpp index e8e38b6c1c8..ecad26c540f 100644 --- a/Core/include/Acts/Seeding/SeedFinder.hpp +++ b/Core/include/Acts/Seeding/SeedFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFinder.ipp b/Core/include/Acts/Seeding/SeedFinder.ipp index 19def4625af..9f10c356259 100644 --- a/Core/include/Acts/Seeding/SeedFinder.ipp +++ b/Core/include/Acts/Seeding/SeedFinder.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Core/include/Acts/Seeding/SeedFinderConfig.hpp b/Core/include/Acts/Seeding/SeedFinderConfig.hpp index e932873c2dd..bb20f9fead0 100644 --- a/Core/include/Acts/Seeding/SeedFinderConfig.hpp +++ b/Core/include/Acts/Seeding/SeedFinderConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFinderGbts.hpp b/Core/include/Acts/Seeding/SeedFinderGbts.hpp index 7fe5dfcb02c..aa8646c09d7 100644 --- a/Core/include/Acts/Seeding/SeedFinderGbts.hpp +++ b/Core/include/Acts/Seeding/SeedFinderGbts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFinderGbts.ipp b/Core/include/Acts/Seeding/SeedFinderGbts.ipp index 897ec015227..91f5f3f64e4 100644 --- a/Core/include/Acts/Seeding/SeedFinderGbts.ipp +++ b/Core/include/Acts/Seeding/SeedFinderGbts.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // SeedFinderGbts.ipp // TODO: update to C++17 style diff --git a/Core/include/Acts/Seeding/SeedFinderGbtsConfig.hpp b/Core/include/Acts/Seeding/SeedFinderGbtsConfig.hpp index c724ad1d395..c1f0962a3ac 100644 --- a/Core/include/Acts/Seeding/SeedFinderGbtsConfig.hpp +++ b/Core/include/Acts/Seeding/SeedFinderGbtsConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFinderOrthogonal.hpp b/Core/include/Acts/Seeding/SeedFinderOrthogonal.hpp index bd366d3b32a..2221bff6626 100644 --- a/Core/include/Acts/Seeding/SeedFinderOrthogonal.hpp +++ b/Core/include/Acts/Seeding/SeedFinderOrthogonal.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFinderOrthogonal.ipp b/Core/include/Acts/Seeding/SeedFinderOrthogonal.ipp index 91bc7f62f7c..edd8e0f3074 100644 --- a/Core/include/Acts/Seeding/SeedFinderOrthogonal.ipp +++ b/Core/include/Acts/Seeding/SeedFinderOrthogonal.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/Extent.hpp" #include "Acts/Seeding/SeedFilter.hpp" diff --git a/Core/include/Acts/Seeding/SeedFinderOrthogonalConfig.hpp b/Core/include/Acts/Seeding/SeedFinderOrthogonalConfig.hpp index 706cb1e90cc..4bb710abc78 100644 --- a/Core/include/Acts/Seeding/SeedFinderOrthogonalConfig.hpp +++ b/Core/include/Acts/Seeding/SeedFinderOrthogonalConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFinderUtils.hpp b/Core/include/Acts/Seeding/SeedFinderUtils.hpp index f23dd3aa2e5..90f74dea7fc 100644 --- a/Core/include/Acts/Seeding/SeedFinderUtils.hpp +++ b/Core/include/Acts/Seeding/SeedFinderUtils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/SeedFinderUtils.ipp b/Core/include/Acts/Seeding/SeedFinderUtils.ipp index e9a25b80aa3..133c02cbae1 100644 --- a/Core/include/Acts/Seeding/SeedFinderUtils.ipp +++ b/Core/include/Acts/Seeding/SeedFinderUtils.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { template diff --git a/Core/include/Acts/Seeding/SpacePointGrid.hpp b/Core/include/Acts/Seeding/SpacePointGrid.hpp index 17b073198a3..ae9d1661864 100644 --- a/Core/include/Acts/Seeding/SpacePointGrid.hpp +++ b/Core/include/Acts/Seeding/SpacePointGrid.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp index 56586b8d338..b6902ecd35a 100644 --- a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp +++ b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp index 879b130c6e1..ad23beeaf77 100644 --- a/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp +++ b/Core/include/Acts/Seeding/detail/CylindricalSpacePointGrid.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Core/include/Acts/Seeding/detail/UtilityFunctions.hpp b/Core/include/Acts/Seeding/detail/UtilityFunctions.hpp index 5b73d9b416f..369906d7f46 100644 --- a/Core/include/Acts/Seeding/detail/UtilityFunctions.hpp +++ b/Core/include/Acts/Seeding/detail/UtilityFunctions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/SpacePointFormation/SpacePointBuilder.hpp b/Core/include/Acts/SpacePointFormation/SpacePointBuilder.hpp index 2703c1be953..c4dbdd70254 100644 --- a/Core/include/Acts/SpacePointFormation/SpacePointBuilder.hpp +++ b/Core/include/Acts/SpacePointFormation/SpacePointBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/SpacePointFormation/SpacePointBuilderConfig.hpp b/Core/include/Acts/SpacePointFormation/SpacePointBuilderConfig.hpp index 26269e08a3b..6870639221b 100644 --- a/Core/include/Acts/SpacePointFormation/SpacePointBuilderConfig.hpp +++ b/Core/include/Acts/SpacePointFormation/SpacePointBuilderConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/SpacePointFormation/SpacePointBuilderOptions.hpp b/Core/include/Acts/SpacePointFormation/SpacePointBuilderOptions.hpp index 7f98d8113e0..ddbc5adb3e1 100644 --- a/Core/include/Acts/SpacePointFormation/SpacePointBuilderOptions.hpp +++ b/Core/include/Acts/SpacePointFormation/SpacePointBuilderOptions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/SpacePointFormation/detail/SpacePointBuilder.ipp b/Core/include/Acts/SpacePointFormation/detail/SpacePointBuilder.ipp index a4626cd027c..532d2c90ec7 100644 --- a/Core/include/Acts/SpacePointFormation/detail/SpacePointBuilder.ipp +++ b/Core/include/Acts/SpacePointFormation/detail/SpacePointBuilder.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Surfaces/AnnulusBounds.hpp b/Core/include/Acts/Surfaces/AnnulusBounds.hpp index 548512f8100..17e64f2a505 100644 --- a/Core/include/Acts/Surfaces/AnnulusBounds.hpp +++ b/Core/include/Acts/Surfaces/AnnulusBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/BoundaryTolerance.hpp b/Core/include/Acts/Surfaces/BoundaryTolerance.hpp index eaadf019ffa..603b8a2abe9 100644 --- a/Core/include/Acts/Surfaces/BoundaryTolerance.hpp +++ b/Core/include/Acts/Surfaces/BoundaryTolerance.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/ConeBounds.hpp b/Core/include/Acts/Surfaces/ConeBounds.hpp index de40027f32b..55b2203686c 100644 --- a/Core/include/Acts/Surfaces/ConeBounds.hpp +++ b/Core/include/Acts/Surfaces/ConeBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/ConeSurface.hpp b/Core/include/Acts/Surfaces/ConeSurface.hpp index 45377c2de68..c15d84d1c23 100644 --- a/Core/include/Acts/Surfaces/ConeSurface.hpp +++ b/Core/include/Acts/Surfaces/ConeSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/ConvexPolygonBounds.hpp b/Core/include/Acts/Surfaces/ConvexPolygonBounds.hpp index 3537f6e9c7a..2f116ddcee5 100644 --- a/Core/include/Acts/Surfaces/ConvexPolygonBounds.hpp +++ b/Core/include/Acts/Surfaces/ConvexPolygonBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/ConvexPolygonBounds.ipp b/Core/include/Acts/Surfaces/ConvexPolygonBounds.ipp index fa1c34cf662..505d9f95d82 100644 --- a/Core/include/Acts/Surfaces/ConvexPolygonBounds.ipp +++ b/Core/include/Acts/Surfaces/ConvexPolygonBounds.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/BoundaryTolerance.hpp" #include "Acts/Surfaces/detail/BoundaryCheckHelper.hpp" diff --git a/Core/include/Acts/Surfaces/CurvilinearSurface.hpp b/Core/include/Acts/Surfaces/CurvilinearSurface.hpp index 299c1e9ab46..4c9cae727df 100644 --- a/Core/include/Acts/Surfaces/CurvilinearSurface.hpp +++ b/Core/include/Acts/Surfaces/CurvilinearSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/CylinderBounds.hpp b/Core/include/Acts/Surfaces/CylinderBounds.hpp index c291ae1ea56..7453029c213 100644 --- a/Core/include/Acts/Surfaces/CylinderBounds.hpp +++ b/Core/include/Acts/Surfaces/CylinderBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/CylinderSurface.hpp b/Core/include/Acts/Surfaces/CylinderSurface.hpp index b7b1cc34fbd..82bc1c68bc2 100644 --- a/Core/include/Acts/Surfaces/CylinderSurface.hpp +++ b/Core/include/Acts/Surfaces/CylinderSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/DiamondBounds.hpp b/Core/include/Acts/Surfaces/DiamondBounds.hpp index 3e50e934bbb..ddaf727a3e9 100644 --- a/Core/include/Acts/Surfaces/DiamondBounds.hpp +++ b/Core/include/Acts/Surfaces/DiamondBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/DiscBounds.hpp b/Core/include/Acts/Surfaces/DiscBounds.hpp index cc4a8a265ee..22bcce3f960 100644 --- a/Core/include/Acts/Surfaces/DiscBounds.hpp +++ b/Core/include/Acts/Surfaces/DiscBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/DiscSurface.hpp b/Core/include/Acts/Surfaces/DiscSurface.hpp index 819d3d3d106..112ec0b30d2 100644 --- a/Core/include/Acts/Surfaces/DiscSurface.hpp +++ b/Core/include/Acts/Surfaces/DiscSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/DiscTrapezoidBounds.hpp b/Core/include/Acts/Surfaces/DiscTrapezoidBounds.hpp index b1f92d96f5c..1e4d9d7706a 100644 --- a/Core/include/Acts/Surfaces/DiscTrapezoidBounds.hpp +++ b/Core/include/Acts/Surfaces/DiscTrapezoidBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Surfaces/EllipseBounds.hpp b/Core/include/Acts/Surfaces/EllipseBounds.hpp index 1f3d03b7d29..dc6983b86bb 100644 --- a/Core/include/Acts/Surfaces/EllipseBounds.hpp +++ b/Core/include/Acts/Surfaces/EllipseBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/InfiniteBounds.hpp b/Core/include/Acts/Surfaces/InfiniteBounds.hpp index 3a05548108f..261f40e4729 100644 --- a/Core/include/Acts/Surfaces/InfiniteBounds.hpp +++ b/Core/include/Acts/Surfaces/InfiniteBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/LineBounds.hpp b/Core/include/Acts/Surfaces/LineBounds.hpp index 8388cb85898..e3169d8a845 100644 --- a/Core/include/Acts/Surfaces/LineBounds.hpp +++ b/Core/include/Acts/Surfaces/LineBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/LineSurface.hpp b/Core/include/Acts/Surfaces/LineSurface.hpp index 5a4b6245390..d07e9f6dc37 100644 --- a/Core/include/Acts/Surfaces/LineSurface.hpp +++ b/Core/include/Acts/Surfaces/LineSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Surfaces/PerigeeSurface.hpp b/Core/include/Acts/Surfaces/PerigeeSurface.hpp index c5ea7e957c7..37b1044f0ce 100644 --- a/Core/include/Acts/Surfaces/PerigeeSurface.hpp +++ b/Core/include/Acts/Surfaces/PerigeeSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Surfaces/PlanarBounds.hpp b/Core/include/Acts/Surfaces/PlanarBounds.hpp index 22762fc3e1e..8c4363dbbc3 100644 --- a/Core/include/Acts/Surfaces/PlanarBounds.hpp +++ b/Core/include/Acts/Surfaces/PlanarBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/PlaneSurface.hpp b/Core/include/Acts/Surfaces/PlaneSurface.hpp index da15e3bd794..866cb4d4585 100644 --- a/Core/include/Acts/Surfaces/PlaneSurface.hpp +++ b/Core/include/Acts/Surfaces/PlaneSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/RadialBounds.hpp b/Core/include/Acts/Surfaces/RadialBounds.hpp index 8b7eb08c9f0..0c7aea81400 100644 --- a/Core/include/Acts/Surfaces/RadialBounds.hpp +++ b/Core/include/Acts/Surfaces/RadialBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/RectangleBounds.hpp b/Core/include/Acts/Surfaces/RectangleBounds.hpp index 813e9cb2130..7ad67f3aafb 100644 --- a/Core/include/Acts/Surfaces/RectangleBounds.hpp +++ b/Core/include/Acts/Surfaces/RectangleBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/RegularSurface.hpp b/Core/include/Acts/Surfaces/RegularSurface.hpp index c911a739519..f091c73b99a 100644 --- a/Core/include/Acts/Surfaces/RegularSurface.hpp +++ b/Core/include/Acts/Surfaces/RegularSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/StrawSurface.hpp b/Core/include/Acts/Surfaces/StrawSurface.hpp index dffa85fc4a4..88fd8423525 100644 --- a/Core/include/Acts/Surfaces/StrawSurface.hpp +++ b/Core/include/Acts/Surfaces/StrawSurface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/Surface.hpp b/Core/include/Acts/Surfaces/Surface.hpp index d07fe6e51d4..c93e7d3c9aa 100644 --- a/Core/include/Acts/Surfaces/Surface.hpp +++ b/Core/include/Acts/Surfaces/Surface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/SurfaceArray.hpp b/Core/include/Acts/Surfaces/SurfaceArray.hpp index c25278d9c02..94a571268d5 100644 --- a/Core/include/Acts/Surfaces/SurfaceArray.hpp +++ b/Core/include/Acts/Surfaces/SurfaceArray.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Surfaces/SurfaceBounds.hpp b/Core/include/Acts/Surfaces/SurfaceBounds.hpp index 89ce44339ce..62216f75c29 100644 --- a/Core/include/Acts/Surfaces/SurfaceBounds.hpp +++ b/Core/include/Acts/Surfaces/SurfaceBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Surfaces/SurfaceConcept.hpp b/Core/include/Acts/Surfaces/SurfaceConcept.hpp index 5425ad3a4ca..e09b420ee9f 100644 --- a/Core/include/Acts/Surfaces/SurfaceConcept.hpp +++ b/Core/include/Acts/Surfaces/SurfaceConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/SurfaceError.hpp b/Core/include/Acts/Surfaces/SurfaceError.hpp index 9530cb31822..cc41c6de9e3 100644 --- a/Core/include/Acts/Surfaces/SurfaceError.hpp +++ b/Core/include/Acts/Surfaces/SurfaceError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/SurfaceMergingException.hpp b/Core/include/Acts/Surfaces/SurfaceMergingException.hpp index ed5511302ad..f2ae605aab7 100644 --- a/Core/include/Acts/Surfaces/SurfaceMergingException.hpp +++ b/Core/include/Acts/Surfaces/SurfaceMergingException.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/SurfaceVisitorConcept.hpp b/Core/include/Acts/Surfaces/SurfaceVisitorConcept.hpp index 1de5b60d50c..1c000d9d61d 100644 --- a/Core/include/Acts/Surfaces/SurfaceVisitorConcept.hpp +++ b/Core/include/Acts/Surfaces/SurfaceVisitorConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/TrapezoidBounds.hpp b/Core/include/Acts/Surfaces/TrapezoidBounds.hpp index 9aeec429138..3f116dc4110 100644 --- a/Core/include/Acts/Surfaces/TrapezoidBounds.hpp +++ b/Core/include/Acts/Surfaces/TrapezoidBounds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Surfaces/detail/AlignmentHelper.hpp b/Core/include/Acts/Surfaces/detail/AlignmentHelper.hpp index 9dd5ddad59a..5d4ef72b8bd 100644 --- a/Core/include/Acts/Surfaces/detail/AlignmentHelper.hpp +++ b/Core/include/Acts/Surfaces/detail/AlignmentHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/detail/AnnulusBoundsHelper.hpp b/Core/include/Acts/Surfaces/detail/AnnulusBoundsHelper.hpp index 5cd081bbdee..84f2d4ec61a 100644 --- a/Core/include/Acts/Surfaces/detail/AnnulusBoundsHelper.hpp +++ b/Core/include/Acts/Surfaces/detail/AnnulusBoundsHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/detail/BoundaryCheckHelper.hpp b/Core/include/Acts/Surfaces/detail/BoundaryCheckHelper.hpp index a210693908b..eefdde58bb8 100644 --- a/Core/include/Acts/Surfaces/detail/BoundaryCheckHelper.hpp +++ b/Core/include/Acts/Surfaces/detail/BoundaryCheckHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/detail/FacesHelper.hpp b/Core/include/Acts/Surfaces/detail/FacesHelper.hpp index a9eaf763db6..260f7ce3b01 100644 --- a/Core/include/Acts/Surfaces/detail/FacesHelper.hpp +++ b/Core/include/Acts/Surfaces/detail/FacesHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/detail/IntersectionHelper2D.hpp b/Core/include/Acts/Surfaces/detail/IntersectionHelper2D.hpp index 125d1fc8bc3..db6860006a3 100644 --- a/Core/include/Acts/Surfaces/detail/IntersectionHelper2D.hpp +++ b/Core/include/Acts/Surfaces/detail/IntersectionHelper2D.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/detail/MergeHelper.hpp b/Core/include/Acts/Surfaces/detail/MergeHelper.hpp index 33b2c53d709..a0121173591 100644 --- a/Core/include/Acts/Surfaces/detail/MergeHelper.hpp +++ b/Core/include/Acts/Surfaces/detail/MergeHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/detail/PlanarHelper.hpp b/Core/include/Acts/Surfaces/detail/PlanarHelper.hpp index a83cc6563c4..f7b21a960aa 100644 --- a/Core/include/Acts/Surfaces/detail/PlanarHelper.hpp +++ b/Core/include/Acts/Surfaces/detail/PlanarHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Surfaces/detail/VerticesHelper.hpp b/Core/include/Acts/Surfaces/detail/VerticesHelper.hpp index 80d16c8c017..71938626eaf 100644 --- a/Core/include/Acts/Surfaces/detail/VerticesHelper.hpp +++ b/Core/include/Acts/Surfaces/detail/VerticesHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFinding/CombinatorialKalmanFilter.hpp b/Core/include/Acts/TrackFinding/CombinatorialKalmanFilter.hpp index 10043abc39b..4878724f99e 100644 --- a/Core/include/Acts/TrackFinding/CombinatorialKalmanFilter.hpp +++ b/Core/include/Acts/TrackFinding/CombinatorialKalmanFilter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFinding/CombinatorialKalmanFilterError.hpp b/Core/include/Acts/TrackFinding/CombinatorialKalmanFilterError.hpp index dd2088a04e7..85e9240950e 100644 --- a/Core/include/Acts/TrackFinding/CombinatorialKalmanFilterError.hpp +++ b/Core/include/Acts/TrackFinding/CombinatorialKalmanFilterError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFinding/GbtsConnector.hpp b/Core/include/Acts/TrackFinding/GbtsConnector.hpp index f4a53a0241b..f4cddd2527b 100644 --- a/Core/include/Acts/TrackFinding/GbtsConnector.hpp +++ b/Core/include/Acts/TrackFinding/GbtsConnector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFinding/MeasurementSelector.hpp b/Core/include/Acts/TrackFinding/MeasurementSelector.hpp index 011530b4c24..fd348d44075 100644 --- a/Core/include/Acts/TrackFinding/MeasurementSelector.hpp +++ b/Core/include/Acts/TrackFinding/MeasurementSelector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFinding/MeasurementSelector.ipp b/Core/include/Acts/TrackFinding/MeasurementSelector.ipp index 1a157f2a324..3e32c884585 100644 --- a/Core/include/Acts/TrackFinding/MeasurementSelector.ipp +++ b/Core/include/Acts/TrackFinding/MeasurementSelector.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { diff --git a/Core/include/Acts/TrackFinding/RoiDescriptor.hpp b/Core/include/Acts/TrackFinding/RoiDescriptor.hpp index 0d7ac2e9c01..4e3b07eb4af 100644 --- a/Core/include/Acts/TrackFinding/RoiDescriptor.hpp +++ b/Core/include/Acts/TrackFinding/RoiDescriptor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFinding/TrackSelector.hpp b/Core/include/Acts/TrackFinding/TrackSelector.hpp index 0695bf08a8b..d0e8526dc35 100644 --- a/Core/include/Acts/TrackFinding/TrackSelector.hpp +++ b/Core/include/Acts/TrackFinding/TrackSelector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFinding/detail/AmbiguityTrackClustering.hpp b/Core/include/Acts/TrackFinding/detail/AmbiguityTrackClustering.hpp index 14a30bb2dd3..6bc565f80eb 100644 --- a/Core/include/Acts/TrackFinding/detail/AmbiguityTrackClustering.hpp +++ b/Core/include/Acts/TrackFinding/detail/AmbiguityTrackClustering.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/BetheHeitlerApprox.hpp b/Core/include/Acts/TrackFitting/BetheHeitlerApprox.hpp index b13f11c2d53..653bef7e899 100644 --- a/Core/include/Acts/TrackFitting/BetheHeitlerApprox.hpp +++ b/Core/include/Acts/TrackFitting/BetheHeitlerApprox.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/GainMatrixSmoother.hpp b/Core/include/Acts/TrackFitting/GainMatrixSmoother.hpp index 4847364b663..cf5b372f487 100644 --- a/Core/include/Acts/TrackFitting/GainMatrixSmoother.hpp +++ b/Core/include/Acts/TrackFitting/GainMatrixSmoother.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/GainMatrixUpdater.hpp b/Core/include/Acts/TrackFitting/GainMatrixUpdater.hpp index 538c875709b..0ac45a79b1d 100644 --- a/Core/include/Acts/TrackFitting/GainMatrixUpdater.hpp +++ b/Core/include/Acts/TrackFitting/GainMatrixUpdater.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/GaussianSumFitter.hpp b/Core/include/Acts/TrackFitting/GaussianSumFitter.hpp index 9be3100a759..efe21b58a60 100644 --- a/Core/include/Acts/TrackFitting/GaussianSumFitter.hpp +++ b/Core/include/Acts/TrackFitting/GaussianSumFitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/GlobalChiSquareFitter.hpp b/Core/include/Acts/TrackFitting/GlobalChiSquareFitter.hpp index fecf8a498f5..2de65a78a07 100644 --- a/Core/include/Acts/TrackFitting/GlobalChiSquareFitter.hpp +++ b/Core/include/Acts/TrackFitting/GlobalChiSquareFitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/GlobalChiSquareFitterError.hpp b/Core/include/Acts/TrackFitting/GlobalChiSquareFitterError.hpp index ac47142b07d..7c95750a3f6 100644 --- a/Core/include/Acts/TrackFitting/GlobalChiSquareFitterError.hpp +++ b/Core/include/Acts/TrackFitting/GlobalChiSquareFitterError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/GsfError.hpp b/Core/include/Acts/TrackFitting/GsfError.hpp index c2efce24611..28c714bf668 100644 --- a/Core/include/Acts/TrackFitting/GsfError.hpp +++ b/Core/include/Acts/TrackFitting/GsfError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/GsfMixtureReduction.hpp b/Core/include/Acts/TrackFitting/GsfMixtureReduction.hpp index 5bb2e5c50b8..46e46c63883 100644 --- a/Core/include/Acts/TrackFitting/GsfMixtureReduction.hpp +++ b/Core/include/Acts/TrackFitting/GsfMixtureReduction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/GsfOptions.hpp b/Core/include/Acts/TrackFitting/GsfOptions.hpp index c5a4a8c7662..4840b6b6184 100644 --- a/Core/include/Acts/TrackFitting/GsfOptions.hpp +++ b/Core/include/Acts/TrackFitting/GsfOptions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/KalmanFitter.hpp b/Core/include/Acts/TrackFitting/KalmanFitter.hpp index 24966c71568..f55b0fac1cf 100644 --- a/Core/include/Acts/TrackFitting/KalmanFitter.hpp +++ b/Core/include/Acts/TrackFitting/KalmanFitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/KalmanFitterError.hpp b/Core/include/Acts/TrackFitting/KalmanFitterError.hpp index e8b3beabd25..fa0536c6932 100644 --- a/Core/include/Acts/TrackFitting/KalmanFitterError.hpp +++ b/Core/include/Acts/TrackFitting/KalmanFitterError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/MbfSmoother.hpp b/Core/include/Acts/TrackFitting/MbfSmoother.hpp index 57cdd0dd483..02066a642e7 100644 --- a/Core/include/Acts/TrackFitting/MbfSmoother.hpp +++ b/Core/include/Acts/TrackFitting/MbfSmoother.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/detail/GainMatrixUpdaterImpl.hpp b/Core/include/Acts/TrackFitting/detail/GainMatrixUpdaterImpl.hpp index cc0f7b45596..7a6e1ec6434 100644 --- a/Core/include/Acts/TrackFitting/detail/GainMatrixUpdaterImpl.hpp +++ b/Core/include/Acts/TrackFitting/detail/GainMatrixUpdaterImpl.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/detail/GsfActor.hpp b/Core/include/Acts/TrackFitting/detail/GsfActor.hpp index 3bdfc60c785..92c5529d319 100644 --- a/Core/include/Acts/TrackFitting/detail/GsfActor.hpp +++ b/Core/include/Acts/TrackFitting/detail/GsfActor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/detail/GsfComponentMerging.hpp b/Core/include/Acts/TrackFitting/detail/GsfComponentMerging.hpp index 8881bf8a298..019865f49c1 100644 --- a/Core/include/Acts/TrackFitting/detail/GsfComponentMerging.hpp +++ b/Core/include/Acts/TrackFitting/detail/GsfComponentMerging.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/detail/GsfUtils.hpp b/Core/include/Acts/TrackFitting/detail/GsfUtils.hpp index 49f61eed3f3..501208b7e09 100644 --- a/Core/include/Acts/TrackFitting/detail/GsfUtils.hpp +++ b/Core/include/Acts/TrackFitting/detail/GsfUtils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/detail/KalmanGlobalCovariance.hpp b/Core/include/Acts/TrackFitting/detail/KalmanGlobalCovariance.hpp index 7daaa52e88f..cf9a3f36b01 100644 --- a/Core/include/Acts/TrackFitting/detail/KalmanGlobalCovariance.hpp +++ b/Core/include/Acts/TrackFitting/detail/KalmanGlobalCovariance.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/detail/KalmanUpdateHelpers.hpp b/Core/include/Acts/TrackFitting/detail/KalmanUpdateHelpers.hpp index 332d173f09d..f4230e0e18d 100644 --- a/Core/include/Acts/TrackFitting/detail/KalmanUpdateHelpers.hpp +++ b/Core/include/Acts/TrackFitting/detail/KalmanUpdateHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/detail/SymmetricKlDistanceMatrix.hpp b/Core/include/Acts/TrackFitting/detail/SymmetricKlDistanceMatrix.hpp index a4ab04e4ffa..f7fcfbd871e 100644 --- a/Core/include/Acts/TrackFitting/detail/SymmetricKlDistanceMatrix.hpp +++ b/Core/include/Acts/TrackFitting/detail/SymmetricKlDistanceMatrix.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/TrackFitting/detail/VoidFitterComponents.hpp b/Core/include/Acts/TrackFitting/detail/VoidFitterComponents.hpp index c7ffc2f1a61..c350992cfa9 100644 --- a/Core/include/Acts/TrackFitting/detail/VoidFitterComponents.hpp +++ b/Core/include/Acts/TrackFitting/detail/VoidFitterComponents.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/AlgebraHelpers.hpp b/Core/include/Acts/Utilities/AlgebraHelpers.hpp index ea5767f865b..06379ec3559 100644 --- a/Core/include/Acts/Utilities/AlgebraHelpers.hpp +++ b/Core/include/Acts/Utilities/AlgebraHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/AnnealingUtility.hpp b/Core/include/Acts/Utilities/AnnealingUtility.hpp index 204f6c59008..ce6fc9e7db3 100644 --- a/Core/include/Acts/Utilities/AnnealingUtility.hpp +++ b/Core/include/Acts/Utilities/AnnealingUtility.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Any.hpp b/Core/include/Acts/Utilities/Any.hpp index b0aaf8533b8..337dafb2c24 100644 --- a/Core/include/Acts/Utilities/Any.hpp +++ b/Core/include/Acts/Utilities/Any.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Axis.hpp b/Core/include/Acts/Utilities/Axis.hpp index 1591ff9e90a..f843d0e7f92 100644 --- a/Core/include/Acts/Utilities/Axis.hpp +++ b/Core/include/Acts/Utilities/Axis.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/AxisFwd.hpp b/Core/include/Acts/Utilities/AxisFwd.hpp index 3f5dc538fa1..fefa980cbfd 100644 --- a/Core/include/Acts/Utilities/AxisFwd.hpp +++ b/Core/include/Acts/Utilities/AxisFwd.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/BinAdjustment.hpp b/Core/include/Acts/Utilities/BinAdjustment.hpp index 7b4a90eb630..6424276c5cf 100644 --- a/Core/include/Acts/Utilities/BinAdjustment.hpp +++ b/Core/include/Acts/Utilities/BinAdjustment.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // BinAdjustment.hpp, Acts project diff --git a/Core/include/Acts/Utilities/BinAdjustmentVolume.hpp b/Core/include/Acts/Utilities/BinAdjustmentVolume.hpp index 7dfa6b77724..7e115e7b607 100644 --- a/Core/include/Acts/Utilities/BinAdjustmentVolume.hpp +++ b/Core/include/Acts/Utilities/BinAdjustmentVolume.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // BinAdjustment.hpp, Acts project diff --git a/Core/include/Acts/Utilities/BinUtility.hpp b/Core/include/Acts/Utilities/BinUtility.hpp index 59a736dae68..b01c8d27158 100644 --- a/Core/include/Acts/Utilities/BinUtility.hpp +++ b/Core/include/Acts/Utilities/BinUtility.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/BinnedArray.hpp b/Core/include/Acts/Utilities/BinnedArray.hpp index c735b53e4ab..bde26fa67b6 100644 --- a/Core/include/Acts/Utilities/BinnedArray.hpp +++ b/Core/include/Acts/Utilities/BinnedArray.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // BinnedArray.h, Acts project diff --git a/Core/include/Acts/Utilities/BinnedArrayXD.hpp b/Core/include/Acts/Utilities/BinnedArrayXD.hpp index 281bd9d11b3..97748802d31 100644 --- a/Core/include/Acts/Utilities/BinnedArrayXD.hpp +++ b/Core/include/Acts/Utilities/BinnedArrayXD.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // BinnedArrayXD.h, Acts project diff --git a/Core/include/Acts/Utilities/BinningData.hpp b/Core/include/Acts/Utilities/BinningData.hpp index e4fcf700c9a..553ab10b2a9 100644 --- a/Core/include/Acts/Utilities/BinningData.hpp +++ b/Core/include/Acts/Utilities/BinningData.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/BinningType.hpp b/Core/include/Acts/Utilities/BinningType.hpp index 4ed8c35bbb4..f3570d27f98 100644 --- a/Core/include/Acts/Utilities/BinningType.hpp +++ b/Core/include/Acts/Utilities/BinningType.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include diff --git a/Core/include/Acts/Utilities/BoundingBox.hpp b/Core/include/Acts/Utilities/BoundingBox.hpp index aee5ec8d016..3c6f450a1b3 100644 --- a/Core/include/Acts/Utilities/BoundingBox.hpp +++ b/Core/include/Acts/Utilities/BoundingBox.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/BoundingBox.ipp b/Core/include/Acts/Utilities/BoundingBox.ipp index bce97e29825..330353014fa 100644 --- a/Core/include/Acts/Utilities/BoundingBox.ipp +++ b/Core/include/Acts/Utilities/BoundingBox.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. template Acts::AxisAlignedBoundingBox::AxisAlignedBoundingBox( diff --git a/Core/include/Acts/Utilities/CalibrationContext.hpp b/Core/include/Acts/Utilities/CalibrationContext.hpp index 1a2a16ec86e..a33142555ed 100644 --- a/Core/include/Acts/Utilities/CalibrationContext.hpp +++ b/Core/include/Acts/Utilities/CalibrationContext.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Concepts.hpp b/Core/include/Acts/Utilities/Concepts.hpp index bcd0f597981..2aafdd40320 100644 --- a/Core/include/Acts/Utilities/Concepts.hpp +++ b/Core/include/Acts/Utilities/Concepts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/DBScan.hpp b/Core/include/Acts/Utilities/DBScan.hpp index 79f862ce573..9436a4e4b2e 100644 --- a/Core/include/Acts/Utilities/DBScan.hpp +++ b/Core/include/Acts/Utilities/DBScan.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Delegate.hpp b/Core/include/Acts/Utilities/Delegate.hpp index 8f22e219bc4..8817411d90d 100644 --- a/Core/include/Acts/Utilities/Delegate.hpp +++ b/Core/include/Acts/Utilities/Delegate.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp b/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp index f664b4c6fc8..bcc93d9e6b5 100644 --- a/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp +++ b/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Enumerate.hpp b/Core/include/Acts/Utilities/Enumerate.hpp index 130fec7405a..cdfb9bb2bdb 100644 --- a/Core/include/Acts/Utilities/Enumerate.hpp +++ b/Core/include/Acts/Utilities/Enumerate.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/FiniteStateMachine.hpp b/Core/include/Acts/Utilities/FiniteStateMachine.hpp index 4691edc9bab..1171b91d30a 100644 --- a/Core/include/Acts/Utilities/FiniteStateMachine.hpp +++ b/Core/include/Acts/Utilities/FiniteStateMachine.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Frustum.hpp b/Core/include/Acts/Utilities/Frustum.hpp index 90efe92e2ae..f51c1432930 100644 --- a/Core/include/Acts/Utilities/Frustum.hpp +++ b/Core/include/Acts/Utilities/Frustum.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Frustum.ipp b/Core/include/Acts/Utilities/Frustum.ipp index 1f194931afe..5854ef2d94a 100644 --- a/Core/include/Acts/Utilities/Frustum.ipp +++ b/Core/include/Acts/Utilities/Frustum.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/VectorHelpers.hpp" diff --git a/Core/include/Acts/Utilities/GraphViz.hpp b/Core/include/Acts/Utilities/GraphViz.hpp index 2aeb75dba5f..02cf9487d8d 100644 --- a/Core/include/Acts/Utilities/GraphViz.hpp +++ b/Core/include/Acts/Utilities/GraphViz.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Grid.hpp b/Core/include/Acts/Utilities/Grid.hpp index b422777b901..f6c5f9ddaf9 100644 --- a/Core/include/Acts/Utilities/Grid.hpp +++ b/Core/include/Acts/Utilities/Grid.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/GridAccessHelpers.hpp b/Core/include/Acts/Utilities/GridAccessHelpers.hpp index 0a34b5519be..20755d01ff6 100644 --- a/Core/include/Acts/Utilities/GridAccessHelpers.hpp +++ b/Core/include/Acts/Utilities/GridAccessHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/GridAxisGenerators.hpp b/Core/include/Acts/Utilities/GridAxisGenerators.hpp index cea146252ac..2ebeb78406f 100644 --- a/Core/include/Acts/Utilities/GridAxisGenerators.hpp +++ b/Core/include/Acts/Utilities/GridAxisGenerators.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/GridBinFinder.hpp b/Core/include/Acts/Utilities/GridBinFinder.hpp index 4617176bc6d..acd11f865d2 100644 --- a/Core/include/Acts/Utilities/GridBinFinder.hpp +++ b/Core/include/Acts/Utilities/GridBinFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/GridBinFinder.ipp b/Core/include/Acts/Utilities/GridBinFinder.ipp index d138242fd40..8b06748ffec 100644 --- a/Core/include/Acts/Utilities/GridBinFinder.ipp +++ b/Core/include/Acts/Utilities/GridBinFinder.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Core/include/Acts/Utilities/GridIterator.hpp b/Core/include/Acts/Utilities/GridIterator.hpp index 0e73498c1b5..cc4ba96c8a0 100644 --- a/Core/include/Acts/Utilities/GridIterator.hpp +++ b/Core/include/Acts/Utilities/GridIterator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/GridIterator.ipp b/Core/include/Acts/Utilities/GridIterator.ipp index 44f5911eeef..3524081a23c 100644 --- a/Core/include/Acts/Utilities/GridIterator.ipp +++ b/Core/include/Acts/Utilities/GridIterator.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { // Global Iterator diff --git a/Core/include/Acts/Utilities/HashedString.hpp b/Core/include/Acts/Utilities/HashedString.hpp index b89c11b8ecc..6cdbe9d21e6 100644 --- a/Core/include/Acts/Utilities/HashedString.hpp +++ b/Core/include/Acts/Utilities/HashedString.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Helpers.hpp b/Core/include/Acts/Utilities/Helpers.hpp index 34248fd9047..2308d2a3014 100644 --- a/Core/include/Acts/Utilities/Helpers.hpp +++ b/Core/include/Acts/Utilities/Helpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Holders.hpp b/Core/include/Acts/Utilities/Holders.hpp index dbedcc8567f..110b241451b 100644 --- a/Core/include/Acts/Utilities/Holders.hpp +++ b/Core/include/Acts/Utilities/Holders.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/IAxis.hpp b/Core/include/Acts/Utilities/IAxis.hpp index 62b241a9b19..e279b83ed1a 100644 --- a/Core/include/Acts/Utilities/IAxis.hpp +++ b/Core/include/Acts/Utilities/IAxis.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Interpolation.hpp b/Core/include/Acts/Utilities/Interpolation.hpp index 73d727e821b..27b71e10358 100644 --- a/Core/include/Acts/Utilities/Interpolation.hpp +++ b/Core/include/Acts/Utilities/Interpolation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Intersection.hpp b/Core/include/Acts/Utilities/Intersection.hpp index 03cce17ffb9..6276538ed5e 100644 --- a/Core/include/Acts/Utilities/Intersection.hpp +++ b/Core/include/Acts/Utilities/Intersection.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/JacobianHelpers.hpp b/Core/include/Acts/Utilities/JacobianHelpers.hpp index be56e5f1759..b3b51b510fa 100644 --- a/Core/include/Acts/Utilities/JacobianHelpers.hpp +++ b/Core/include/Acts/Utilities/JacobianHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/KDTree.hpp b/Core/include/Acts/Utilities/KDTree.hpp index a3ff86a43fb..dc8f9f9b844 100644 --- a/Core/include/Acts/Utilities/KDTree.hpp +++ b/Core/include/Acts/Utilities/KDTree.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Logger.hpp b/Core/include/Acts/Utilities/Logger.hpp index 2f833fd5916..48cadb49ec4 100644 --- a/Core/include/Acts/Utilities/Logger.hpp +++ b/Core/include/Acts/Utilities/Logger.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once // STL include(s) diff --git a/Core/include/Acts/Utilities/MultiIndex.hpp b/Core/include/Acts/Utilities/MultiIndex.hpp index 48265ecb5dc..f809771fd60 100644 --- a/Core/include/Acts/Utilities/MultiIndex.hpp +++ b/Core/include/Acts/Utilities/MultiIndex.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/QuickMath.hpp b/Core/include/Acts/Utilities/QuickMath.hpp index ef09d22485d..2f03ebb5e50 100644 --- a/Core/include/Acts/Utilities/QuickMath.hpp +++ b/Core/include/Acts/Utilities/QuickMath.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/RangeXD.hpp b/Core/include/Acts/Utilities/RangeXD.hpp index cd0a7841598..19f82245460 100644 --- a/Core/include/Acts/Utilities/RangeXD.hpp +++ b/Core/include/Acts/Utilities/RangeXD.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Ray.hpp b/Core/include/Acts/Utilities/Ray.hpp index 91c7369b57a..3ec972847ff 100644 --- a/Core/include/Acts/Utilities/Ray.hpp +++ b/Core/include/Acts/Utilities/Ray.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Ray.ipp b/Core/include/Acts/Utilities/Ray.ipp index 3c2d8f5bafd..deb2ea0feb3 100644 --- a/Core/include/Acts/Utilities/Ray.ipp +++ b/Core/include/Acts/Utilities/Ray.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" template diff --git a/Core/include/Acts/Utilities/Result.hpp b/Core/include/Acts/Utilities/Result.hpp index 101a6d08b3e..9410fa0edfe 100644 --- a/Core/include/Acts/Utilities/Result.hpp +++ b/Core/include/Acts/Utilities/Result.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/SpacePointUtility.hpp b/Core/include/Acts/Utilities/SpacePointUtility.hpp index 7c1c81ec328..c995bfd3c36 100644 --- a/Core/include/Acts/Utilities/SpacePointUtility.hpp +++ b/Core/include/Acts/Utilities/SpacePointUtility.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/StringHelpers.hpp b/Core/include/Acts/Utilities/StringHelpers.hpp index 86be7c49df7..e77b317eb0d 100644 --- a/Core/include/Acts/Utilities/StringHelpers.hpp +++ b/Core/include/Acts/Utilities/StringHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/ThrowAssert.hpp b/Core/include/Acts/Utilities/ThrowAssert.hpp index bb408a93dde..2cc768daccf 100644 --- a/Core/include/Acts/Utilities/ThrowAssert.hpp +++ b/Core/include/Acts/Utilities/ThrowAssert.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include diff --git a/Core/include/Acts/Utilities/TrackHelpers.hpp b/Core/include/Acts/Utilities/TrackHelpers.hpp index 69e91b5a738..20cc1be8621 100644 --- a/Core/include/Acts/Utilities/TrackHelpers.hpp +++ b/Core/include/Acts/Utilities/TrackHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/TransformRange.hpp b/Core/include/Acts/Utilities/TransformRange.hpp index a3ef3296e30..4c7653c49e2 100644 --- a/Core/include/Acts/Utilities/TransformRange.hpp +++ b/Core/include/Acts/Utilities/TransformRange.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/TypeList.hpp b/Core/include/Acts/Utilities/TypeList.hpp index fc28ece94a0..b4eabe7e930 100644 --- a/Core/include/Acts/Utilities/TypeList.hpp +++ b/Core/include/Acts/Utilities/TypeList.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/TypeTag.hpp b/Core/include/Acts/Utilities/TypeTag.hpp index f8704a80a95..42be118413d 100644 --- a/Core/include/Acts/Utilities/TypeTag.hpp +++ b/Core/include/Acts/Utilities/TypeTag.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/UnitVectors.hpp b/Core/include/Acts/Utilities/UnitVectors.hpp index 33352c63866..15aa5dc335e 100644 --- a/Core/include/Acts/Utilities/UnitVectors.hpp +++ b/Core/include/Acts/Utilities/UnitVectors.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/VectorHelpers.hpp b/Core/include/Acts/Utilities/VectorHelpers.hpp index a1ed9debf3f..e00bfb5ddc7 100644 --- a/Core/include/Acts/Utilities/VectorHelpers.hpp +++ b/Core/include/Acts/Utilities/VectorHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/Zip.hpp b/Core/include/Acts/Utilities/Zip.hpp index 3c2c470a880..639c1e8c629 100644 --- a/Core/include/Acts/Utilities/Zip.hpp +++ b/Core/include/Acts/Utilities/Zip.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/detail/ContextType.hpp b/Core/include/Acts/Utilities/detail/ContextType.hpp index 486e07d425d..143e8b2d521 100644 --- a/Core/include/Acts/Utilities/detail/ContextType.hpp +++ b/Core/include/Acts/Utilities/detail/ContextType.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/detail/Extendable.hpp b/Core/include/Acts/Utilities/detail/Extendable.hpp index dca964e5216..9c6c520eaf0 100644 --- a/Core/include/Acts/Utilities/detail/Extendable.hpp +++ b/Core/include/Acts/Utilities/detail/Extendable.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/detail/RealQuadraticEquation.hpp b/Core/include/Acts/Utilities/detail/RealQuadraticEquation.hpp index c401d8f1549..c208a4a1d98 100644 --- a/Core/include/Acts/Utilities/detail/RealQuadraticEquation.hpp +++ b/Core/include/Acts/Utilities/detail/RealQuadraticEquation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // RealQuadraticEquation.h, Acts project diff --git a/Core/include/Acts/Utilities/detail/ReferenceWrapperAnyCompat.hpp b/Core/include/Acts/Utilities/detail/ReferenceWrapperAnyCompat.hpp index ecba9039256..29c1aa23adc 100644 --- a/Core/include/Acts/Utilities/detail/ReferenceWrapperAnyCompat.hpp +++ b/Core/include/Acts/Utilities/detail/ReferenceWrapperAnyCompat.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/detail/grid_helper.hpp b/Core/include/Acts/Utilities/detail/grid_helper.hpp index e39c556f29f..efc0f0a70cf 100644 --- a/Core/include/Acts/Utilities/detail/grid_helper.hpp +++ b/Core/include/Acts/Utilities/detail/grid_helper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/detail/interpolation_impl.hpp b/Core/include/Acts/Utilities/detail/interpolation_impl.hpp index 36464c9105d..717d75b8ffe 100644 --- a/Core/include/Acts/Utilities/detail/interpolation_impl.hpp +++ b/Core/include/Acts/Utilities/detail/interpolation_impl.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Utilities/detail/periodic.hpp b/Core/include/Acts/Utilities/detail/periodic.hpp index 2c27314c388..b128a1e7cc4 100644 --- a/Core/include/Acts/Utilities/detail/periodic.hpp +++ b/Core/include/Acts/Utilities/detail/periodic.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/AMVFInfo.hpp b/Core/include/Acts/Vertexing/AMVFInfo.hpp index 988c3f6b99e..f2012961c27 100644 --- a/Core/include/Acts/Vertexing/AMVFInfo.hpp +++ b/Core/include/Acts/Vertexing/AMVFInfo.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/AdaptiveGridDensityVertexFinder.hpp b/Core/include/Acts/Vertexing/AdaptiveGridDensityVertexFinder.hpp index 49f9ae93ce2..91c2bfd7409 100644 --- a/Core/include/Acts/Vertexing/AdaptiveGridDensityVertexFinder.hpp +++ b/Core/include/Acts/Vertexing/AdaptiveGridDensityVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/AdaptiveGridTrackDensity.hpp b/Core/include/Acts/Vertexing/AdaptiveGridTrackDensity.hpp index 9677a2826d1..a5e276674eb 100644 --- a/Core/include/Acts/Vertexing/AdaptiveGridTrackDensity.hpp +++ b/Core/include/Acts/Vertexing/AdaptiveGridTrackDensity.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Vertexing/AdaptiveMultiVertexFinder.hpp b/Core/include/Acts/Vertexing/AdaptiveMultiVertexFinder.hpp index 818d2c363be..4d1ac3ad4fd 100644 --- a/Core/include/Acts/Vertexing/AdaptiveMultiVertexFinder.hpp +++ b/Core/include/Acts/Vertexing/AdaptiveMultiVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/AdaptiveMultiVertexFitter.hpp b/Core/include/Acts/Vertexing/AdaptiveMultiVertexFitter.hpp index 2bd3827faa7..73884fd31f3 100644 --- a/Core/include/Acts/Vertexing/AdaptiveMultiVertexFitter.hpp +++ b/Core/include/Acts/Vertexing/AdaptiveMultiVertexFitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/DummyVertexFitter.hpp b/Core/include/Acts/Vertexing/DummyVertexFitter.hpp index 545ac17f1f1..ca2c0c06455 100644 --- a/Core/include/Acts/Vertexing/DummyVertexFitter.hpp +++ b/Core/include/Acts/Vertexing/DummyVertexFitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/FsmwMode1dFinder.hpp b/Core/include/Acts/Vertexing/FsmwMode1dFinder.hpp index e93325c625e..df7d1a4c3fd 100644 --- a/Core/include/Acts/Vertexing/FsmwMode1dFinder.hpp +++ b/Core/include/Acts/Vertexing/FsmwMode1dFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/FullBilloirVertexFitter.hpp b/Core/include/Acts/Vertexing/FullBilloirVertexFitter.hpp index 78e1d70c201..16433d88825 100644 --- a/Core/include/Acts/Vertexing/FullBilloirVertexFitter.hpp +++ b/Core/include/Acts/Vertexing/FullBilloirVertexFitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/GaussianGridTrackDensity.hpp b/Core/include/Acts/Vertexing/GaussianGridTrackDensity.hpp index 66b7136d501..0a4a19d3165 100644 --- a/Core/include/Acts/Vertexing/GaussianGridTrackDensity.hpp +++ b/Core/include/Acts/Vertexing/GaussianGridTrackDensity.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Core/include/Acts/Vertexing/GaussianTrackDensity.hpp b/Core/include/Acts/Vertexing/GaussianTrackDensity.hpp index 748e63dbdb7..60853f46646 100644 --- a/Core/include/Acts/Vertexing/GaussianTrackDensity.hpp +++ b/Core/include/Acts/Vertexing/GaussianTrackDensity.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/GridDensityVertexFinder.hpp b/Core/include/Acts/Vertexing/GridDensityVertexFinder.hpp index fd198ad7784..9d6c0ee9686 100644 --- a/Core/include/Acts/Vertexing/GridDensityVertexFinder.hpp +++ b/Core/include/Acts/Vertexing/GridDensityVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/HelicalTrackLinearizer.hpp b/Core/include/Acts/Vertexing/HelicalTrackLinearizer.hpp index 4f6015db549..fa1eef6d50a 100644 --- a/Core/include/Acts/Vertexing/HelicalTrackLinearizer.hpp +++ b/Core/include/Acts/Vertexing/HelicalTrackLinearizer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/IVertexFinder.hpp b/Core/include/Acts/Vertexing/IVertexFinder.hpp index 56c79d8f036..faee1e930c4 100644 --- a/Core/include/Acts/Vertexing/IVertexFinder.hpp +++ b/Core/include/Acts/Vertexing/IVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/ImpactPointEstimator.hpp b/Core/include/Acts/Vertexing/ImpactPointEstimator.hpp index 40f3bf4208e..80968e9a320 100644 --- a/Core/include/Acts/Vertexing/ImpactPointEstimator.hpp +++ b/Core/include/Acts/Vertexing/ImpactPointEstimator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/IterativeVertexFinder.hpp b/Core/include/Acts/Vertexing/IterativeVertexFinder.hpp index a1804e1aaff..1ca9c026f41 100644 --- a/Core/include/Acts/Vertexing/IterativeVertexFinder.hpp +++ b/Core/include/Acts/Vertexing/IterativeVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/KalmanVertexUpdater.hpp b/Core/include/Acts/Vertexing/KalmanVertexUpdater.hpp index 77d5a8bf37e..c1698c2d21f 100644 --- a/Core/include/Acts/Vertexing/KalmanVertexUpdater.hpp +++ b/Core/include/Acts/Vertexing/KalmanVertexUpdater.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/LinearizedTrack.hpp b/Core/include/Acts/Vertexing/LinearizedTrack.hpp index c57f850318a..aa34f9d7809 100644 --- a/Core/include/Acts/Vertexing/LinearizedTrack.hpp +++ b/Core/include/Acts/Vertexing/LinearizedTrack.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/LinearizerTrackParameters.hpp b/Core/include/Acts/Vertexing/LinearizerTrackParameters.hpp index b4b665152fa..d0d2bd69f2e 100644 --- a/Core/include/Acts/Vertexing/LinearizerTrackParameters.hpp +++ b/Core/include/Acts/Vertexing/LinearizerTrackParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/NumericalTrackLinearizer.hpp b/Core/include/Acts/Vertexing/NumericalTrackLinearizer.hpp index 1eddcd3908e..00d5cddf989 100644 --- a/Core/include/Acts/Vertexing/NumericalTrackLinearizer.hpp +++ b/Core/include/Acts/Vertexing/NumericalTrackLinearizer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/SingleSeedVertexFinder.hpp b/Core/include/Acts/Vertexing/SingleSeedVertexFinder.hpp index ea3e7c42859..cc5bdf20289 100644 --- a/Core/include/Acts/Vertexing/SingleSeedVertexFinder.hpp +++ b/Core/include/Acts/Vertexing/SingleSeedVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/SingleSeedVertexFinder.ipp b/Core/include/Acts/Vertexing/SingleSeedVertexFinder.ipp index 0f26a6a1ed3..ed5bfeeffba 100644 --- a/Core/include/Acts/Vertexing/SingleSeedVertexFinder.ipp +++ b/Core/include/Acts/Vertexing/SingleSeedVertexFinder.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Core/include/Acts/Vertexing/TrackAtVertex.hpp b/Core/include/Acts/Vertexing/TrackAtVertex.hpp index 9d702b807a9..fb57c02ec60 100644 --- a/Core/include/Acts/Vertexing/TrackAtVertex.hpp +++ b/Core/include/Acts/Vertexing/TrackAtVertex.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/TrackDensityVertexFinder.hpp b/Core/include/Acts/Vertexing/TrackDensityVertexFinder.hpp index 6468717db43..e940292a7f0 100644 --- a/Core/include/Acts/Vertexing/TrackDensityVertexFinder.hpp +++ b/Core/include/Acts/Vertexing/TrackDensityVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/TrackLinearizer.hpp b/Core/include/Acts/Vertexing/TrackLinearizer.hpp index 3734cc1687a..b0fbbb2c657 100644 --- a/Core/include/Acts/Vertexing/TrackLinearizer.hpp +++ b/Core/include/Acts/Vertexing/TrackLinearizer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/Vertex.hpp b/Core/include/Acts/Vertexing/Vertex.hpp index 10fbf6a2df0..d656c7a199f 100644 --- a/Core/include/Acts/Vertexing/Vertex.hpp +++ b/Core/include/Acts/Vertexing/Vertex.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/VertexingError.hpp b/Core/include/Acts/Vertexing/VertexingError.hpp index 3e4931a12ad..80e98ce75d9 100644 --- a/Core/include/Acts/Vertexing/VertexingError.hpp +++ b/Core/include/Acts/Vertexing/VertexingError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/VertexingOptions.hpp b/Core/include/Acts/Vertexing/VertexingOptions.hpp index 41cdd91f51f..9f18d0a60f2 100644 --- a/Core/include/Acts/Vertexing/VertexingOptions.hpp +++ b/Core/include/Acts/Vertexing/VertexingOptions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/ZScanVertexFinder.hpp b/Core/include/Acts/Vertexing/ZScanVertexFinder.hpp index 432036c1007..83477ed7db8 100644 --- a/Core/include/Acts/Vertexing/ZScanVertexFinder.hpp +++ b/Core/include/Acts/Vertexing/ZScanVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Vertexing/detail/KalmanVertexUpdaterImpl.hpp b/Core/include/Acts/Vertexing/detail/KalmanVertexUpdaterImpl.hpp index ecfdcda2715..4c08820e693 100644 --- a/Core/include/Acts/Vertexing/detail/KalmanVertexUpdaterImpl.hpp +++ b/Core/include/Acts/Vertexing/detail/KalmanVertexUpdaterImpl.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Visualization/EventDataView3D.hpp b/Core/include/Acts/Visualization/EventDataView3D.hpp index ca60fb25fce..9d62d57ea82 100644 --- a/Core/include/Acts/Visualization/EventDataView3D.hpp +++ b/Core/include/Acts/Visualization/EventDataView3D.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Visualization/GeometryView3D.hpp b/Core/include/Acts/Visualization/GeometryView3D.hpp index cd313561f61..05053de31ef 100644 --- a/Core/include/Acts/Visualization/GeometryView3D.hpp +++ b/Core/include/Acts/Visualization/GeometryView3D.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Visualization/IVisualization3D.hpp b/Core/include/Acts/Visualization/IVisualization3D.hpp index b012fb6447c..734ab3fe129 100644 --- a/Core/include/Acts/Visualization/IVisualization3D.hpp +++ b/Core/include/Acts/Visualization/IVisualization3D.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Visualization/ObjVisualization3D.hpp b/Core/include/Acts/Visualization/ObjVisualization3D.hpp index e7a65b62720..941e719f870 100644 --- a/Core/include/Acts/Visualization/ObjVisualization3D.hpp +++ b/Core/include/Acts/Visualization/ObjVisualization3D.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Visualization/PlyVisualization3D.hpp b/Core/include/Acts/Visualization/PlyVisualization3D.hpp index f8a5bee466d..e2c94481b9c 100644 --- a/Core/include/Acts/Visualization/PlyVisualization3D.hpp +++ b/Core/include/Acts/Visualization/PlyVisualization3D.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Visualization/ViewConfig.hpp b/Core/include/Acts/Visualization/ViewConfig.hpp index cdda1e027c4..6fcf1b47984 100644 --- a/Core/include/Acts/Visualization/ViewConfig.hpp +++ b/Core/include/Acts/Visualization/ViewConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Core/include/Acts/Visualization/detail/ObjVisualization3D.ipp b/Core/include/Acts/Visualization/detail/ObjVisualization3D.ipp index 4709214e206..2419ef8c546 100644 --- a/Core/include/Acts/Visualization/detail/ObjVisualization3D.ipp +++ b/Core/include/Acts/Visualization/detail/ObjVisualization3D.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. template void ObjVisualization3D::vertex(const Vector3& vtx, Color color) { diff --git a/Core/include/Acts/Visualization/detail/PlyVisualization3D.ipp b/Core/include/Acts/Visualization/detail/PlyVisualization3D.ipp index 30d69126b0e..6641dc37fea 100644 --- a/Core/include/Acts/Visualization/detail/PlyVisualization3D.ipp +++ b/Core/include/Acts/Visualization/detail/PlyVisualization3D.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. template void PlyVisualization3D::vertex(const Vector3& vtx, Color color) { diff --git a/Core/src/ActsVersion.cpp b/Core/src/ActsVersion.cpp index dffaef6d0cd..464dcedf07c 100644 --- a/Core/src/ActsVersion.cpp +++ b/Core/src/ActsVersion.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/ActsVersion.hpp" diff --git a/Core/src/AmbiguityResolution/GreedyAmbiguityResolution.cpp b/Core/src/AmbiguityResolution/GreedyAmbiguityResolution.cpp index 73a94da94a2..9038c00bc42 100644 --- a/Core/src/AmbiguityResolution/GreedyAmbiguityResolution.cpp +++ b/Core/src/AmbiguityResolution/GreedyAmbiguityResolution.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/AmbiguityResolution/GreedyAmbiguityResolution.hpp" diff --git a/Core/src/AmbiguityResolution/ScoreBasedAmbiguityResolution.cpp b/Core/src/AmbiguityResolution/ScoreBasedAmbiguityResolution.cpp index 9936df2e9cc..4dcbb5071d4 100644 --- a/Core/src/AmbiguityResolution/ScoreBasedAmbiguityResolution.cpp +++ b/Core/src/AmbiguityResolution/ScoreBasedAmbiguityResolution.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/AmbiguityResolution/ScoreBasedAmbiguityResolution.hpp" diff --git a/Core/src/Definitions/Common.cpp b/Core/src/Definitions/Common.cpp index 79488ca3d42..7f0d030d301 100644 --- a/Core/src/Definitions/Common.cpp +++ b/Core/src/Definitions/Common.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Common.hpp" diff --git a/Core/src/Definitions/Direction.cpp b/Core/src/Definitions/Direction.cpp index 94ad0c1cea5..974df19da92 100644 --- a/Core/src/Definitions/Direction.cpp +++ b/Core/src/Definitions/Direction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Direction.hpp" diff --git a/Core/src/Definitions/ParticleData.cpp b/Core/src/Definitions/ParticleData.cpp index 97ae6e48eca..3fad8925896 100644 --- a/Core/src/Definitions/ParticleData.cpp +++ b/Core/src/Definitions/ParticleData.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/ParticleData.hpp" diff --git a/Core/src/Definitions/ParticleDataTable.hpp b/Core/src/Definitions/ParticleDataTable.hpp index 366ecdd6124..a030f3ed82f 100644 --- a/Core/src/Definitions/ParticleDataTable.hpp +++ b/Core/src/Definitions/ParticleDataTable.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // The entries within this file have been automatically created using the // particle data files from the 2019 edition of the Review of Particle Physics diff --git a/Core/src/Detector/CuboidalContainerBuilder.cpp b/Core/src/Detector/CuboidalContainerBuilder.cpp index 5714cba8d0c..47533bc4a11 100644 --- a/Core/src/Detector/CuboidalContainerBuilder.cpp +++ b/Core/src/Detector/CuboidalContainerBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/CuboidalContainerBuilder.hpp" diff --git a/Core/src/Detector/CylindricalContainerBuilder.cpp b/Core/src/Detector/CylindricalContainerBuilder.cpp index eea4411d7c1..8441dc93762 100644 --- a/Core/src/Detector/CylindricalContainerBuilder.cpp +++ b/Core/src/Detector/CylindricalContainerBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/CylindricalContainerBuilder.hpp" diff --git a/Core/src/Detector/Detector.cpp b/Core/src/Detector/Detector.cpp index 27edc478961..2b57add3509 100644 --- a/Core/src/Detector/Detector.cpp +++ b/Core/src/Detector/Detector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/Detector.hpp" diff --git a/Core/src/Detector/DetectorBuilder.cpp b/Core/src/Detector/DetectorBuilder.cpp index 3a1a2bff6e8..3b7ca942087 100644 --- a/Core/src/Detector/DetectorBuilder.cpp +++ b/Core/src/Detector/DetectorBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/DetectorBuilder.hpp" diff --git a/Core/src/Detector/DetectorVolume.cpp b/Core/src/Detector/DetectorVolume.cpp index 8d5d6d88d6f..6cd8d189298 100644 --- a/Core/src/Detector/DetectorVolume.cpp +++ b/Core/src/Detector/DetectorVolume.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/DetectorVolume.hpp" diff --git a/Core/src/Detector/DetectorVolumeBuilder.cpp b/Core/src/Detector/DetectorVolumeBuilder.cpp index f45624014b4..d52162e5f07 100644 --- a/Core/src/Detector/DetectorVolumeBuilder.cpp +++ b/Core/src/Detector/DetectorVolumeBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/DetectorVolumeBuilder.hpp" diff --git a/Core/src/Detector/GeometryIdGenerator.cpp b/Core/src/Detector/GeometryIdGenerator.cpp index a19db61fd1d..f0d15f0d3b6 100644 --- a/Core/src/Detector/GeometryIdGenerator.cpp +++ b/Core/src/Detector/GeometryIdGenerator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/GeometryIdGenerator.hpp" diff --git a/Core/src/Detector/IndexedRootVolumeFinderBuilder.cpp b/Core/src/Detector/IndexedRootVolumeFinderBuilder.cpp index c6005b5c142..0493750b9a3 100644 --- a/Core/src/Detector/IndexedRootVolumeFinderBuilder.cpp +++ b/Core/src/Detector/IndexedRootVolumeFinderBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/IndexedRootVolumeFinderBuilder.hpp" diff --git a/Core/src/Detector/LayerStructureBuilder.cpp b/Core/src/Detector/LayerStructureBuilder.cpp index c12bafc7b4c..d936b27398a 100644 --- a/Core/src/Detector/LayerStructureBuilder.cpp +++ b/Core/src/Detector/LayerStructureBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/LayerStructureBuilder.hpp" diff --git a/Core/src/Detector/MultiWireStructureBuilder.cpp b/Core/src/Detector/MultiWireStructureBuilder.cpp index 5069797a28c..59f87a7e3c8 100644 --- a/Core/src/Detector/MultiWireStructureBuilder.cpp +++ b/Core/src/Detector/MultiWireStructureBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/MultiWireStructureBuilder.hpp" diff --git a/Core/src/Detector/Portal.cpp b/Core/src/Detector/Portal.cpp index 72519d2b0e9..e3caa8c7c06 100644 --- a/Core/src/Detector/Portal.cpp +++ b/Core/src/Detector/Portal.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/Portal.hpp" diff --git a/Core/src/Detector/PortalGenerators.cpp b/Core/src/Detector/PortalGenerators.cpp index 0136c087b9d..f0875ad65ab 100644 --- a/Core/src/Detector/PortalGenerators.cpp +++ b/Core/src/Detector/PortalGenerators.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/PortalGenerators.hpp" diff --git a/Core/src/Detector/ProtoDetector.cpp b/Core/src/Detector/ProtoDetector.cpp index 20db1689882..e305dc9052c 100644 --- a/Core/src/Detector/ProtoDetector.cpp +++ b/Core/src/Detector/ProtoDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/ProtoDetector.hpp" diff --git a/Core/src/Detector/VolumeStructureBuilder.cpp b/Core/src/Detector/VolumeStructureBuilder.cpp index afa10e45cd7..a7e7c8695d5 100644 --- a/Core/src/Detector/VolumeStructureBuilder.cpp +++ b/Core/src/Detector/VolumeStructureBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/VolumeStructureBuilder.hpp" diff --git a/Core/src/Detector/detail/BlueprintDrawer.cpp b/Core/src/Detector/detail/BlueprintDrawer.cpp index 47ee292fe99..bc17c4c5922 100644 --- a/Core/src/Detector/detail/BlueprintDrawer.cpp +++ b/Core/src/Detector/detail/BlueprintDrawer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/BlueprintDrawer.hpp" diff --git a/Core/src/Detector/detail/BlueprintHelper.cpp b/Core/src/Detector/detail/BlueprintHelper.cpp index 502d91f4d10..bf440c61acc 100644 --- a/Core/src/Detector/detail/BlueprintHelper.cpp +++ b/Core/src/Detector/detail/BlueprintHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/BlueprintHelper.hpp" diff --git a/Core/src/Detector/detail/CuboidalDetectorHelper.cpp b/Core/src/Detector/detail/CuboidalDetectorHelper.cpp index 5cd324cc564..114b8512e7f 100644 --- a/Core/src/Detector/detail/CuboidalDetectorHelper.cpp +++ b/Core/src/Detector/detail/CuboidalDetectorHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/CuboidalDetectorHelper.hpp" diff --git a/Core/src/Detector/detail/CylindricalDetectorHelper.cpp b/Core/src/Detector/detail/CylindricalDetectorHelper.cpp index 98765e4ee9f..ba78a51b84e 100644 --- a/Core/src/Detector/detail/CylindricalDetectorHelper.cpp +++ b/Core/src/Detector/detail/CylindricalDetectorHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/CylindricalDetectorHelper.hpp" diff --git a/Core/src/Detector/detail/DetectorVolumeConsistency.cpp b/Core/src/Detector/detail/DetectorVolumeConsistency.cpp index 0f9487c7953..1d9cae71402 100644 --- a/Core/src/Detector/detail/DetectorVolumeConsistency.cpp +++ b/Core/src/Detector/detail/DetectorVolumeConsistency.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/DetectorVolumeConsistency.hpp" diff --git a/Core/src/Detector/detail/IndexedGridFiller.cpp b/Core/src/Detector/detail/IndexedGridFiller.cpp index d1bd5d17634..6e2f8cfd114 100644 --- a/Core/src/Detector/detail/IndexedGridFiller.cpp +++ b/Core/src/Detector/detail/IndexedGridFiller.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/IndexedGridFiller.hpp" diff --git a/Core/src/Detector/detail/PortalHelper.cpp b/Core/src/Detector/detail/PortalHelper.cpp index ec6458aa42e..72d4d8ac7f1 100644 --- a/Core/src/Detector/detail/PortalHelper.cpp +++ b/Core/src/Detector/detail/PortalHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/PortalHelper.hpp" diff --git a/Core/src/Detector/detail/ProtoMaterialHelper.cpp b/Core/src/Detector/detail/ProtoMaterialHelper.cpp index be3eeb167af..af5b96b187e 100644 --- a/Core/src/Detector/detail/ProtoMaterialHelper.cpp +++ b/Core/src/Detector/detail/ProtoMaterialHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/ProtoMaterialHelper.hpp" diff --git a/Core/src/Detector/detail/SupportSurfacesHelper.cpp b/Core/src/Detector/detail/SupportSurfacesHelper.cpp index 32c12a6499d..ec888733deb 100644 --- a/Core/src/Detector/detail/SupportSurfacesHelper.cpp +++ b/Core/src/Detector/detail/SupportSurfacesHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/detail/SupportSurfacesHelper.hpp" diff --git a/Core/src/EventData/CorrectedTransformationFreeToBound.cpp b/Core/src/EventData/CorrectedTransformationFreeToBound.cpp index fea13647d42..ebeb73c00ba 100644 --- a/Core/src/EventData/CorrectedTransformationFreeToBound.cpp +++ b/Core/src/EventData/CorrectedTransformationFreeToBound.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/detail/CorrectedTransformationFreeToBound.hpp" diff --git a/Core/src/EventData/PrintParameters.cpp b/Core/src/EventData/PrintParameters.cpp index fcb2e61666e..01d62694c66 100644 --- a/Core/src/EventData/PrintParameters.cpp +++ b/Core/src/EventData/PrintParameters.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/detail/PrintParameters.hpp" diff --git a/Core/src/EventData/TrackParameters.cpp b/Core/src/EventData/TrackParameters.cpp index 8b44df3b525..07579817d04 100644 --- a/Core/src/EventData/TrackParameters.cpp +++ b/Core/src/EventData/TrackParameters.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/TrackParameters.hpp" diff --git a/Core/src/EventData/TrackStatePropMask.cpp b/Core/src/EventData/TrackStatePropMask.cpp index 0095eda91fa..1207d5508d7 100644 --- a/Core/src/EventData/TrackStatePropMask.cpp +++ b/Core/src/EventData/TrackStatePropMask.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/TrackStatePropMask.hpp" diff --git a/Core/src/EventData/TransformationHelpers.cpp b/Core/src/EventData/TransformationHelpers.cpp index 8bf6781fff7..90014814073 100644 --- a/Core/src/EventData/TransformationHelpers.cpp +++ b/Core/src/EventData/TransformationHelpers.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/TransformationHelpers.hpp" diff --git a/Core/src/EventData/VectorMultiTrajectory.cpp b/Core/src/EventData/VectorMultiTrajectory.cpp index e4e770a6e9e..66629d65f12 100644 --- a/Core/src/EventData/VectorMultiTrajectory.cpp +++ b/Core/src/EventData/VectorMultiTrajectory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/VectorMultiTrajectory.hpp" diff --git a/Core/src/EventData/VectorTrackContainer.cpp b/Core/src/EventData/VectorTrackContainer.cpp index 7f21f429d62..dc7cca761d1 100644 --- a/Core/src/EventData/VectorTrackContainer.cpp +++ b/Core/src/EventData/VectorTrackContainer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/VectorTrackContainer.hpp" diff --git a/Core/src/Geometry/CompositePortalLink.cpp b/Core/src/Geometry/CompositePortalLink.cpp index fa21653146f..7d80e3b331e 100644 --- a/Core/src/Geometry/CompositePortalLink.cpp +++ b/Core/src/Geometry/CompositePortalLink.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CompositePortalLink.hpp" diff --git a/Core/src/Geometry/ConeLayer.cpp b/Core/src/Geometry/ConeLayer.cpp index c59c244a901..a19e7710135 100644 --- a/Core/src/Geometry/ConeLayer.cpp +++ b/Core/src/Geometry/ConeLayer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/ConeLayer.hpp" diff --git a/Core/src/Geometry/ConeVolumeBounds.cpp b/Core/src/Geometry/ConeVolumeBounds.cpp index 89767492c1e..8eb10e7055a 100644 --- a/Core/src/Geometry/ConeVolumeBounds.cpp +++ b/Core/src/Geometry/ConeVolumeBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/ConeVolumeBounds.hpp" diff --git a/Core/src/Geometry/CuboidVolumeBounds.cpp b/Core/src/Geometry/CuboidVolumeBounds.cpp index e88507860f6..64b0b67f8d7 100644 --- a/Core/src/Geometry/CuboidVolumeBounds.cpp +++ b/Core/src/Geometry/CuboidVolumeBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CuboidVolumeBounds.hpp" diff --git a/Core/src/Geometry/CuboidVolumeBuilder.cpp b/Core/src/Geometry/CuboidVolumeBuilder.cpp index 1d226ca05fd..614ce28a67f 100644 --- a/Core/src/Geometry/CuboidVolumeBuilder.cpp +++ b/Core/src/Geometry/CuboidVolumeBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CuboidVolumeBuilder.hpp" diff --git a/Core/src/Geometry/CutoutCylinderVolumeBounds.cpp b/Core/src/Geometry/CutoutCylinderVolumeBounds.cpp index cdc2c392b43..9d70f49b4b9 100644 --- a/Core/src/Geometry/CutoutCylinderVolumeBounds.cpp +++ b/Core/src/Geometry/CutoutCylinderVolumeBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CutoutCylinderVolumeBounds.hpp" diff --git a/Core/src/Geometry/CylinderLayer.cpp b/Core/src/Geometry/CylinderLayer.cpp index 610147286cd..87b64ef5e12 100644 --- a/Core/src/Geometry/CylinderLayer.cpp +++ b/Core/src/Geometry/CylinderLayer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CylinderLayer.hpp" diff --git a/Core/src/Geometry/CylinderVolumeBounds.cpp b/Core/src/Geometry/CylinderVolumeBounds.cpp index 325345e2465..c7bb8192f4a 100644 --- a/Core/src/Geometry/CylinderVolumeBounds.cpp +++ b/Core/src/Geometry/CylinderVolumeBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CylinderVolumeBounds.hpp" diff --git a/Core/src/Geometry/CylinderVolumeBuilder.cpp b/Core/src/Geometry/CylinderVolumeBuilder.cpp index 8690c1d9b82..bb741167519 100644 --- a/Core/src/Geometry/CylinderVolumeBuilder.cpp +++ b/Core/src/Geometry/CylinderVolumeBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CylinderVolumeBuilder.hpp" diff --git a/Core/src/Geometry/CylinderVolumeHelper.cpp b/Core/src/Geometry/CylinderVolumeHelper.cpp index 6fa8d58f7ef..f02435d1bfc 100644 --- a/Core/src/Geometry/CylinderVolumeHelper.cpp +++ b/Core/src/Geometry/CylinderVolumeHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CylinderVolumeHelper.hpp" diff --git a/Core/src/Geometry/CylinderVolumeStack.cpp b/Core/src/Geometry/CylinderVolumeStack.cpp index af32f1b743e..cb1cfdeb822 100644 --- a/Core/src/Geometry/CylinderVolumeStack.cpp +++ b/Core/src/Geometry/CylinderVolumeStack.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CylinderVolumeStack.hpp" diff --git a/Core/src/Geometry/DiscLayer.cpp b/Core/src/Geometry/DiscLayer.cpp index 14f6f82ad68..021101d5f73 100644 --- a/Core/src/Geometry/DiscLayer.cpp +++ b/Core/src/Geometry/DiscLayer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/DiscLayer.hpp" diff --git a/Core/src/Geometry/Extent.cpp b/Core/src/Geometry/Extent.cpp index 262f84ebcaf..9e520d171a3 100644 --- a/Core/src/Geometry/Extent.cpp +++ b/Core/src/Geometry/Extent.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/Extent.hpp" diff --git a/Core/src/Geometry/GenericApproachDescriptor.cpp b/Core/src/Geometry/GenericApproachDescriptor.cpp index e532e2f5eb2..12d6fd2fd87 100644 --- a/Core/src/Geometry/GenericApproachDescriptor.cpp +++ b/Core/src/Geometry/GenericApproachDescriptor.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/GenericApproachDescriptor.hpp" diff --git a/Core/src/Geometry/GenericCuboidVolumeBounds.cpp b/Core/src/Geometry/GenericCuboidVolumeBounds.cpp index 059338cf538..bdf8f960dc2 100644 --- a/Core/src/Geometry/GenericCuboidVolumeBounds.cpp +++ b/Core/src/Geometry/GenericCuboidVolumeBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/GenericCuboidVolumeBounds.hpp" diff --git a/Core/src/Geometry/GeometryIdentifier.cpp b/Core/src/Geometry/GeometryIdentifier.cpp index 967a291af83..81f7e5aa886 100644 --- a/Core/src/Geometry/GeometryIdentifier.cpp +++ b/Core/src/Geometry/GeometryIdentifier.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/GeometryIdentifier.hpp" diff --git a/Core/src/Geometry/GlueVolumesDescriptor.cpp b/Core/src/Geometry/GlueVolumesDescriptor.cpp index 129e9c71251..7fbd9a5b50a 100644 --- a/Core/src/Geometry/GlueVolumesDescriptor.cpp +++ b/Core/src/Geometry/GlueVolumesDescriptor.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/GlueVolumesDescriptor.hpp" diff --git a/Core/src/Geometry/GridPortalLink.cpp b/Core/src/Geometry/GridPortalLink.cpp index d7c11941374..2ad7ea11ae5 100644 --- a/Core/src/Geometry/GridPortalLink.cpp +++ b/Core/src/Geometry/GridPortalLink.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/GridPortalLink.hpp" diff --git a/Core/src/Geometry/GridPortalLinkMerging.cpp b/Core/src/Geometry/GridPortalLinkMerging.cpp index 80ad2b78ca9..1a828e71176 100644 --- a/Core/src/Geometry/GridPortalLinkMerging.cpp +++ b/Core/src/Geometry/GridPortalLinkMerging.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Tolerance.hpp" #include "Acts/Geometry/CompositePortalLink.hpp" diff --git a/Core/src/Geometry/KDTreeTrackingGeometryBuilder.cpp b/Core/src/Geometry/KDTreeTrackingGeometryBuilder.cpp index 315c06de01c..75e2d50d4fa 100644 --- a/Core/src/Geometry/KDTreeTrackingGeometryBuilder.cpp +++ b/Core/src/Geometry/KDTreeTrackingGeometryBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/KDTreeTrackingGeometryBuilder.hpp" diff --git a/Core/src/Geometry/Layer.cpp b/Core/src/Geometry/Layer.cpp index af9ea08da42..dca511b3978 100644 --- a/Core/src/Geometry/Layer.cpp +++ b/Core/src/Geometry/Layer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/Layer.hpp" diff --git a/Core/src/Geometry/LayerArrayCreator.cpp b/Core/src/Geometry/LayerArrayCreator.cpp index 0a9c74d76f5..e8b972cb6d1 100644 --- a/Core/src/Geometry/LayerArrayCreator.cpp +++ b/Core/src/Geometry/LayerArrayCreator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/LayerArrayCreator.hpp" diff --git a/Core/src/Geometry/LayerCreator.cpp b/Core/src/Geometry/LayerCreator.cpp index 8c4e3c61bc4..632274c671f 100644 --- a/Core/src/Geometry/LayerCreator.cpp +++ b/Core/src/Geometry/LayerCreator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/LayerCreator.hpp" diff --git a/Core/src/Geometry/NavigationLayer.cpp b/Core/src/Geometry/NavigationLayer.cpp index f79eb4ca08f..c00611c78dd 100644 --- a/Core/src/Geometry/NavigationLayer.cpp +++ b/Core/src/Geometry/NavigationLayer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/NavigationLayer.hpp" diff --git a/Core/src/Geometry/PassiveLayerBuilder.cpp b/Core/src/Geometry/PassiveLayerBuilder.cpp index 865067c8a27..2518611111f 100644 --- a/Core/src/Geometry/PassiveLayerBuilder.cpp +++ b/Core/src/Geometry/PassiveLayerBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/PassiveLayerBuilder.hpp" diff --git a/Core/src/Geometry/PlaneLayer.cpp b/Core/src/Geometry/PlaneLayer.cpp index b1baa55f9c6..9ae8efcba0f 100644 --- a/Core/src/Geometry/PlaneLayer.cpp +++ b/Core/src/Geometry/PlaneLayer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/PlaneLayer.hpp" diff --git a/Core/src/Geometry/Polyhedron.cpp b/Core/src/Geometry/Polyhedron.cpp index 437d8d951cb..2d67f086872 100644 --- a/Core/src/Geometry/Polyhedron.cpp +++ b/Core/src/Geometry/Polyhedron.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/Polyhedron.hpp" diff --git a/Core/src/Geometry/Portal.cpp b/Core/src/Geometry/Portal.cpp index dafe42f9e6c..2a9d09b5f68 100644 --- a/Core/src/Geometry/Portal.cpp +++ b/Core/src/Geometry/Portal.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/Portal.hpp" diff --git a/Core/src/Geometry/PortalError.cpp b/Core/src/Geometry/PortalError.cpp index bbedd3010e5..001b23f6b01 100644 --- a/Core/src/Geometry/PortalError.cpp +++ b/Core/src/Geometry/PortalError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/SurfaceError.hpp" diff --git a/Core/src/Geometry/PortalLinkBase.cpp b/Core/src/Geometry/PortalLinkBase.cpp index 46d3d25e202..459c144272e 100644 --- a/Core/src/Geometry/PortalLinkBase.cpp +++ b/Core/src/Geometry/PortalLinkBase.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/PortalLinkBase.hpp" diff --git a/Core/src/Geometry/ProtoLayer.cpp b/Core/src/Geometry/ProtoLayer.cpp index af2313e2ce6..659b34b1168 100644 --- a/Core/src/Geometry/ProtoLayer.cpp +++ b/Core/src/Geometry/ProtoLayer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/ProtoLayer.hpp" diff --git a/Core/src/Geometry/ProtoLayerHelper.cpp b/Core/src/Geometry/ProtoLayerHelper.cpp index 6a2c7fc1ce8..ae3dfc4896b 100644 --- a/Core/src/Geometry/ProtoLayerHelper.cpp +++ b/Core/src/Geometry/ProtoLayerHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/ProtoLayerHelper.hpp" diff --git a/Core/src/Geometry/SurfaceArrayCreator.cpp b/Core/src/Geometry/SurfaceArrayCreator.cpp index 7968b576f2c..727d9e173e9 100644 --- a/Core/src/Geometry/SurfaceArrayCreator.cpp +++ b/Core/src/Geometry/SurfaceArrayCreator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/SurfaceArrayCreator.hpp" diff --git a/Core/src/Geometry/TrackingGeometry.cpp b/Core/src/Geometry/TrackingGeometry.cpp index 82e9c09239c..b68d788d08b 100644 --- a/Core/src/Geometry/TrackingGeometry.cpp +++ b/Core/src/Geometry/TrackingGeometry.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/TrackingGeometry.hpp" diff --git a/Core/src/Geometry/TrackingGeometryBuilder.cpp b/Core/src/Geometry/TrackingGeometryBuilder.cpp index 90a10b0ba04..b8a8b0bf070 100644 --- a/Core/src/Geometry/TrackingGeometryBuilder.cpp +++ b/Core/src/Geometry/TrackingGeometryBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/TrackingGeometryBuilder.hpp" diff --git a/Core/src/Geometry/TrackingVolume.cpp b/Core/src/Geometry/TrackingVolume.cpp index 4a91784ce6b..d2c1124a1ae 100644 --- a/Core/src/Geometry/TrackingVolume.cpp +++ b/Core/src/Geometry/TrackingVolume.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/TrackingVolume.hpp" diff --git a/Core/src/Geometry/TrackingVolumeArrayCreator.cpp b/Core/src/Geometry/TrackingVolumeArrayCreator.cpp index e2d38b15fb0..61727f9dee0 100644 --- a/Core/src/Geometry/TrackingVolumeArrayCreator.cpp +++ b/Core/src/Geometry/TrackingVolumeArrayCreator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/TrackingVolumeArrayCreator.hpp" diff --git a/Core/src/Geometry/TrapezoidVolumeBounds.cpp b/Core/src/Geometry/TrapezoidVolumeBounds.cpp index add969b1769..d17ce06e38b 100644 --- a/Core/src/Geometry/TrapezoidVolumeBounds.cpp +++ b/Core/src/Geometry/TrapezoidVolumeBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/TrapezoidVolumeBounds.hpp" diff --git a/Core/src/Geometry/TrivialPortalLink.cpp b/Core/src/Geometry/TrivialPortalLink.cpp index 6c699b9a320..abcdb44929c 100644 --- a/Core/src/Geometry/TrivialPortalLink.cpp +++ b/Core/src/Geometry/TrivialPortalLink.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/TrivialPortalLink.hpp" diff --git a/Core/src/Geometry/Volume.cpp b/Core/src/Geometry/Volume.cpp index 3701abc837b..c1aefc96186 100644 --- a/Core/src/Geometry/Volume.cpp +++ b/Core/src/Geometry/Volume.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/Volume.hpp" diff --git a/Core/src/Geometry/VolumeBounds.cpp b/Core/src/Geometry/VolumeBounds.cpp index c9ab6bc41ca..b27d7839d39 100644 --- a/Core/src/Geometry/VolumeBounds.cpp +++ b/Core/src/Geometry/VolumeBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/VolumeBounds.hpp" diff --git a/Core/src/MagneticField/BFieldMapUtils.cpp b/Core/src/MagneticField/BFieldMapUtils.cpp index bffdc7520ef..14bc273966b 100644 --- a/Core/src/MagneticField/BFieldMapUtils.cpp +++ b/Core/src/MagneticField/BFieldMapUtils.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/MagneticField/BFieldMapUtils.hpp" diff --git a/Core/src/MagneticField/MagneticFieldError.cpp b/Core/src/MagneticField/MagneticFieldError.cpp index 1a90de4bac1..8afaa3669be 100644 --- a/Core/src/MagneticField/MagneticFieldError.cpp +++ b/Core/src/MagneticField/MagneticFieldError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/MagneticField/MagneticFieldError.hpp" diff --git a/Core/src/MagneticField/SolenoidBField.cpp b/Core/src/MagneticField/SolenoidBField.cpp index bba6f99f3ef..b6b4fbfc2df 100644 --- a/Core/src/MagneticField/SolenoidBField.cpp +++ b/Core/src/MagneticField/SolenoidBField.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/MagneticField/SolenoidBField.hpp" diff --git a/Core/src/Material/AccumulatedMaterialSlab.cpp b/Core/src/Material/AccumulatedMaterialSlab.cpp index f1099578b46..b8b7ebf88fe 100644 --- a/Core/src/Material/AccumulatedMaterialSlab.cpp +++ b/Core/src/Material/AccumulatedMaterialSlab.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/AccumulatedMaterialSlab.hpp" diff --git a/Core/src/Material/AccumulatedSurfaceMaterial.cpp b/Core/src/Material/AccumulatedSurfaceMaterial.cpp index 42350b4f327..be0d9fa3be2 100644 --- a/Core/src/Material/AccumulatedSurfaceMaterial.cpp +++ b/Core/src/Material/AccumulatedSurfaceMaterial.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/AccumulatedSurfaceMaterial.hpp" diff --git a/Core/src/Material/AccumulatedVolumeMaterial.cpp b/Core/src/Material/AccumulatedVolumeMaterial.cpp index 59827a01995..8636dfd7df1 100644 --- a/Core/src/Material/AccumulatedVolumeMaterial.cpp +++ b/Core/src/Material/AccumulatedVolumeMaterial.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/AccumulatedVolumeMaterial.hpp" diff --git a/Core/src/Material/AverageMaterials.cpp b/Core/src/Material/AverageMaterials.cpp index 29d07bd814d..e9770e910bf 100644 --- a/Core/src/Material/AverageMaterials.cpp +++ b/Core/src/Material/AverageMaterials.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/detail/AverageMaterials.hpp" diff --git a/Core/src/Material/BinnedSurfaceMaterial.cpp b/Core/src/Material/BinnedSurfaceMaterial.cpp index 380bcc1a4b3..0113e89a6e3 100644 --- a/Core/src/Material/BinnedSurfaceMaterial.cpp +++ b/Core/src/Material/BinnedSurfaceMaterial.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/BinnedSurfaceMaterial.hpp" diff --git a/Core/src/Material/BinnedSurfaceMaterialAccumulater.cpp b/Core/src/Material/BinnedSurfaceMaterialAccumulater.cpp index 60620bce24e..ca2a460d4d2 100644 --- a/Core/src/Material/BinnedSurfaceMaterialAccumulater.cpp +++ b/Core/src/Material/BinnedSurfaceMaterialAccumulater.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/BinnedSurfaceMaterialAccumulater.hpp" diff --git a/Core/src/Material/HomogeneousSurfaceMaterial.cpp b/Core/src/Material/HomogeneousSurfaceMaterial.cpp index 3c942981eed..ec56cfd4c81 100644 --- a/Core/src/Material/HomogeneousSurfaceMaterial.cpp +++ b/Core/src/Material/HomogeneousSurfaceMaterial.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/HomogeneousSurfaceMaterial.hpp" diff --git a/Core/src/Material/HomogeneousVolumeMaterial.cpp b/Core/src/Material/HomogeneousVolumeMaterial.cpp index fcc8e820755..574859bb648 100644 --- a/Core/src/Material/HomogeneousVolumeMaterial.cpp +++ b/Core/src/Material/HomogeneousVolumeMaterial.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/HomogeneousVolumeMaterial.hpp" diff --git a/Core/src/Material/Interactions.cpp b/Core/src/Material/Interactions.cpp index b6a725cb4ca..9a63f59db8f 100644 --- a/Core/src/Material/Interactions.cpp +++ b/Core/src/Material/Interactions.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/Interactions.hpp" diff --git a/Core/src/Material/IntersectionMaterialAssigner.cpp b/Core/src/Material/IntersectionMaterialAssigner.cpp index 27adf41f78e..f85320ee119 100644 --- a/Core/src/Material/IntersectionMaterialAssigner.cpp +++ b/Core/src/Material/IntersectionMaterialAssigner.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/IntersectionMaterialAssigner.hpp" diff --git a/Core/src/Material/Material.cpp b/Core/src/Material/Material.cpp index 21325f6e900..dd8c1e5cca1 100644 --- a/Core/src/Material/Material.cpp +++ b/Core/src/Material/Material.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/Material.hpp" diff --git a/Core/src/Material/MaterialGridHelper.cpp b/Core/src/Material/MaterialGridHelper.cpp index 23792f3bd7f..a6d1a90416a 100644 --- a/Core/src/Material/MaterialGridHelper.cpp +++ b/Core/src/Material/MaterialGridHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/MaterialGridHelper.hpp" diff --git a/Core/src/Material/MaterialInteractionAssignment.cpp b/Core/src/Material/MaterialInteractionAssignment.cpp index 549f88e7a25..8d4b4b0ac60 100644 --- a/Core/src/Material/MaterialInteractionAssignment.cpp +++ b/Core/src/Material/MaterialInteractionAssignment.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/MaterialInteractionAssignment.hpp" diff --git a/Core/src/Material/MaterialMapUtils.cpp b/Core/src/Material/MaterialMapUtils.cpp index 64fdd1f5187..a9b04275925 100644 --- a/Core/src/Material/MaterialMapUtils.cpp +++ b/Core/src/Material/MaterialMapUtils.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/MaterialMapUtils.hpp" diff --git a/Core/src/Material/MaterialMapper.cpp b/Core/src/Material/MaterialMapper.cpp index 1a490a16c18..bd635bfd608 100644 --- a/Core/src/Material/MaterialMapper.cpp +++ b/Core/src/Material/MaterialMapper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/MaterialMapper.hpp" diff --git a/Core/src/Material/MaterialSlab.cpp b/Core/src/Material/MaterialSlab.cpp index a38a1fcae01..acfd7064936 100644 --- a/Core/src/Material/MaterialSlab.cpp +++ b/Core/src/Material/MaterialSlab.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/MaterialSlab.hpp" diff --git a/Core/src/Material/MaterialValidater.cpp b/Core/src/Material/MaterialValidater.cpp index 04ef21de1ae..ad39692295e 100644 --- a/Core/src/Material/MaterialValidater.cpp +++ b/Core/src/Material/MaterialValidater.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/MaterialValidater.hpp" diff --git a/Core/src/Material/ProtoVolumeMaterial.cpp b/Core/src/Material/ProtoVolumeMaterial.cpp index df3f51a3190..2b2bc74ae0c 100644 --- a/Core/src/Material/ProtoVolumeMaterial.cpp +++ b/Core/src/Material/ProtoVolumeMaterial.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/ProtoVolumeMaterial.hpp" diff --git a/Core/src/Material/SurfaceMaterialMapper.cpp b/Core/src/Material/SurfaceMaterialMapper.cpp index 360d1145e0e..4890354217a 100644 --- a/Core/src/Material/SurfaceMaterialMapper.cpp +++ b/Core/src/Material/SurfaceMaterialMapper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/SurfaceMaterialMapper.hpp" diff --git a/Core/src/Material/VolumeMaterialMapper.cpp b/Core/src/Material/VolumeMaterialMapper.cpp index 67d54d863ef..ca7c00b5730 100644 --- a/Core/src/Material/VolumeMaterialMapper.cpp +++ b/Core/src/Material/VolumeMaterialMapper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Material/VolumeMaterialMapper.hpp" diff --git a/Core/src/Navigation/NavigationStream.cpp b/Core/src/Navigation/NavigationStream.cpp index 3d90c5bb0d4..bf15367cd3b 100644 --- a/Core/src/Navigation/NavigationStream.cpp +++ b/Core/src/Navigation/NavigationStream.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Navigation/NavigationStream.hpp" diff --git a/Core/src/Propagator/EigenStepperError.cpp b/Core/src/Propagator/EigenStepperError.cpp index 6134133cdf1..2ca0476a2c3 100644 --- a/Core/src/Propagator/EigenStepperError.cpp +++ b/Core/src/Propagator/EigenStepperError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/EigenStepperError.hpp" diff --git a/Core/src/Propagator/MultiStepperError.cpp b/Core/src/Propagator/MultiStepperError.cpp index 07cf1b523d3..0bffc361f0e 100644 --- a/Core/src/Propagator/MultiStepperError.cpp +++ b/Core/src/Propagator/MultiStepperError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/MultiStepperError.hpp" diff --git a/Core/src/Propagator/PropagatorError.cpp b/Core/src/Propagator/PropagatorError.cpp index b0da9572a4c..20931b27515 100644 --- a/Core/src/Propagator/PropagatorError.cpp +++ b/Core/src/Propagator/PropagatorError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/PropagatorError.hpp" diff --git a/Core/src/Propagator/StraightLineStepper.cpp b/Core/src/Propagator/StraightLineStepper.cpp index fa28aafe49f..e98f76ee81c 100644 --- a/Core/src/Propagator/StraightLineStepper.cpp +++ b/Core/src/Propagator/StraightLineStepper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/StraightLineStepper.hpp" diff --git a/Core/src/Propagator/SympyStepper.cpp b/Core/src/Propagator/SympyStepper.cpp index 669e17ee7cb..167f44dd7f5 100644 --- a/Core/src/Propagator/SympyStepper.cpp +++ b/Core/src/Propagator/SympyStepper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/SympyStepper.hpp" diff --git a/Core/src/Propagator/codegen/sympy_stepper_math.hpp b/Core/src/Propagator/codegen/sympy_stepper_math.hpp index e65c911cb51..d5c0ed4d769 100644 --- a/Core/src/Propagator/codegen/sympy_stepper_math.hpp +++ b/Core/src/Propagator/codegen/sympy_stepper_math.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Note: This file is generated by generate_sympy_stepper.py // Do not modify it manually. diff --git a/Core/src/Propagator/detail/CovarianceEngine.cpp b/Core/src/Propagator/detail/CovarianceEngine.cpp index 984eae2f580..a89016bce3c 100644 --- a/Core/src/Propagator/detail/CovarianceEngine.cpp +++ b/Core/src/Propagator/detail/CovarianceEngine.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/detail/CovarianceEngine.hpp" diff --git a/Core/src/Propagator/detail/JacobianEngine.cpp b/Core/src/Propagator/detail/JacobianEngine.cpp index 435bd1b1f98..4da84b6569b 100644 --- a/Core/src/Propagator/detail/JacobianEngine.cpp +++ b/Core/src/Propagator/detail/JacobianEngine.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/detail/JacobianEngine.hpp" diff --git a/Core/src/Propagator/detail/PointwiseMaterialInteraction.cpp b/Core/src/Propagator/detail/PointwiseMaterialInteraction.cpp index 8314003111e..b18fd373038 100644 --- a/Core/src/Propagator/detail/PointwiseMaterialInteraction.cpp +++ b/Core/src/Propagator/detail/PointwiseMaterialInteraction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/detail/PointwiseMaterialInteraction.hpp" diff --git a/Core/src/Propagator/detail/SympyCovarianceEngine.cpp b/Core/src/Propagator/detail/SympyCovarianceEngine.cpp index 1bf729a4e3b..f10171cc5ec 100644 --- a/Core/src/Propagator/detail/SympyCovarianceEngine.cpp +++ b/Core/src/Propagator/detail/SympyCovarianceEngine.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/detail/SympyCovarianceEngine.hpp" diff --git a/Core/src/Propagator/detail/SympyJacobianEngine.cpp b/Core/src/Propagator/detail/SympyJacobianEngine.cpp index c59ce74eeaf..aa471918643 100644 --- a/Core/src/Propagator/detail/SympyJacobianEngine.cpp +++ b/Core/src/Propagator/detail/SympyJacobianEngine.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/detail/SympyJacobianEngine.hpp" diff --git a/Core/src/Propagator/detail/codegen/sympy_cov_math.hpp b/Core/src/Propagator/detail/codegen/sympy_cov_math.hpp index b35cbf07798..661d4f51978 100644 --- a/Core/src/Propagator/detail/codegen/sympy_cov_math.hpp +++ b/Core/src/Propagator/detail/codegen/sympy_cov_math.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Note: This file is generated by generate_sympy_cov.py // Do not modify it manually. diff --git a/Core/src/Propagator/detail/codegen/sympy_jac_math.hpp b/Core/src/Propagator/detail/codegen/sympy_jac_math.hpp index 34d5c4efb9f..3b96d867d01 100644 --- a/Core/src/Propagator/detail/codegen/sympy_jac_math.hpp +++ b/Core/src/Propagator/detail/codegen/sympy_jac_math.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Note: This file is generated by generate_sympy_jac.py // Do not modify it manually. diff --git a/Core/src/Surfaces/AnnulusBounds.cpp b/Core/src/Surfaces/AnnulusBounds.cpp index 0752a41b4ff..d96b3bc7e80 100644 --- a/Core/src/Surfaces/AnnulusBounds.cpp +++ b/Core/src/Surfaces/AnnulusBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/AnnulusBounds.hpp" diff --git a/Core/src/Surfaces/BoundaryTolerance.cpp b/Core/src/Surfaces/BoundaryTolerance.cpp index 199105c26b0..b5077fa4ec4 100644 --- a/Core/src/Surfaces/BoundaryTolerance.cpp +++ b/Core/src/Surfaces/BoundaryTolerance.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/BoundaryTolerance.hpp" diff --git a/Core/src/Surfaces/ConeBounds.cpp b/Core/src/Surfaces/ConeBounds.cpp index 8fed88a7f9e..5dce8995326 100644 --- a/Core/src/Surfaces/ConeBounds.cpp +++ b/Core/src/Surfaces/ConeBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/ConeBounds.hpp" diff --git a/Core/src/Surfaces/ConeSurface.cpp b/Core/src/Surfaces/ConeSurface.cpp index 4aee9a679f8..98f1484609d 100644 --- a/Core/src/Surfaces/ConeSurface.cpp +++ b/Core/src/Surfaces/ConeSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/ConeSurface.hpp" diff --git a/Core/src/Surfaces/ConvexPolygonBounds.cpp b/Core/src/Surfaces/ConvexPolygonBounds.cpp index 3d7656ea266..c32bfe9141d 100644 --- a/Core/src/Surfaces/ConvexPolygonBounds.cpp +++ b/Core/src/Surfaces/ConvexPolygonBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/ConvexPolygonBounds.hpp" diff --git a/Core/src/Surfaces/CurvilinearSurface.cpp b/Core/src/Surfaces/CurvilinearSurface.cpp index b0e2914f9d7..c320177de57 100644 --- a/Core/src/Surfaces/CurvilinearSurface.cpp +++ b/Core/src/Surfaces/CurvilinearSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/CurvilinearSurface.hpp" diff --git a/Core/src/Surfaces/CylinderBounds.cpp b/Core/src/Surfaces/CylinderBounds.cpp index a6c037088bc..76e3e902ea7 100644 --- a/Core/src/Surfaces/CylinderBounds.cpp +++ b/Core/src/Surfaces/CylinderBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/CylinderBounds.hpp" diff --git a/Core/src/Surfaces/CylinderSurface.cpp b/Core/src/Surfaces/CylinderSurface.cpp index 08c614d9879..29ca1edf150 100644 --- a/Core/src/Surfaces/CylinderSurface.cpp +++ b/Core/src/Surfaces/CylinderSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/CylinderSurface.hpp" diff --git a/Core/src/Surfaces/DiamondBounds.cpp b/Core/src/Surfaces/DiamondBounds.cpp index 0c30236f31e..b0239eca3f3 100644 --- a/Core/src/Surfaces/DiamondBounds.cpp +++ b/Core/src/Surfaces/DiamondBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/DiamondBounds.hpp" diff --git a/Core/src/Surfaces/DiscSurface.cpp b/Core/src/Surfaces/DiscSurface.cpp index f75b5ce463b..c46390ff1c9 100644 --- a/Core/src/Surfaces/DiscSurface.cpp +++ b/Core/src/Surfaces/DiscSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/DiscSurface.hpp" diff --git a/Core/src/Surfaces/DiscTrapezoidBounds.cpp b/Core/src/Surfaces/DiscTrapezoidBounds.cpp index d83680dbd54..6cebe5433d5 100644 --- a/Core/src/Surfaces/DiscTrapezoidBounds.cpp +++ b/Core/src/Surfaces/DiscTrapezoidBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/DiscTrapezoidBounds.hpp" diff --git a/Core/src/Surfaces/EllipseBounds.cpp b/Core/src/Surfaces/EllipseBounds.cpp index 552eb740bf2..d6357eabcc3 100644 --- a/Core/src/Surfaces/EllipseBounds.cpp +++ b/Core/src/Surfaces/EllipseBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/EllipseBounds.hpp" diff --git a/Core/src/Surfaces/IntersectionHelper2D.cpp b/Core/src/Surfaces/IntersectionHelper2D.cpp index 14fb777eb31..1053021034f 100644 --- a/Core/src/Surfaces/IntersectionHelper2D.cpp +++ b/Core/src/Surfaces/IntersectionHelper2D.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/detail/IntersectionHelper2D.hpp" diff --git a/Core/src/Surfaces/LineBounds.cpp b/Core/src/Surfaces/LineBounds.cpp index 4fffd8ec54e..bdb0673a010 100644 --- a/Core/src/Surfaces/LineBounds.cpp +++ b/Core/src/Surfaces/LineBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/LineBounds.hpp" diff --git a/Core/src/Surfaces/LineSurface.cpp b/Core/src/Surfaces/LineSurface.cpp index ae740658403..f67fe038aa9 100644 --- a/Core/src/Surfaces/LineSurface.cpp +++ b/Core/src/Surfaces/LineSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/LineSurface.hpp" diff --git a/Core/src/Surfaces/PerigeeSurface.cpp b/Core/src/Surfaces/PerigeeSurface.cpp index cfa85858fe2..328db94478e 100644 --- a/Core/src/Surfaces/PerigeeSurface.cpp +++ b/Core/src/Surfaces/PerigeeSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/PerigeeSurface.hpp" diff --git a/Core/src/Surfaces/PlaneSurface.cpp b/Core/src/Surfaces/PlaneSurface.cpp index f3bf814e97e..414f2611eef 100644 --- a/Core/src/Surfaces/PlaneSurface.cpp +++ b/Core/src/Surfaces/PlaneSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/PlaneSurface.hpp" diff --git a/Core/src/Surfaces/RadialBounds.cpp b/Core/src/Surfaces/RadialBounds.cpp index 78e81fe3331..03a32ef2a34 100644 --- a/Core/src/Surfaces/RadialBounds.cpp +++ b/Core/src/Surfaces/RadialBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/RadialBounds.hpp" diff --git a/Core/src/Surfaces/RectangleBounds.cpp b/Core/src/Surfaces/RectangleBounds.cpp index c602b9dd2c2..21c8daec4e9 100644 --- a/Core/src/Surfaces/RectangleBounds.cpp +++ b/Core/src/Surfaces/RectangleBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/RectangleBounds.hpp" diff --git a/Core/src/Surfaces/RegularSurface.cpp b/Core/src/Surfaces/RegularSurface.cpp index 31f015bc6cf..d9664fe2210 100644 --- a/Core/src/Surfaces/RegularSurface.cpp +++ b/Core/src/Surfaces/RegularSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/RegularSurface.hpp" diff --git a/Core/src/Surfaces/StrawSurface.cpp b/Core/src/Surfaces/StrawSurface.cpp index 61ba65b0576..1ac8f8eb264 100644 --- a/Core/src/Surfaces/StrawSurface.cpp +++ b/Core/src/Surfaces/StrawSurface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/StrawSurface.hpp" diff --git a/Core/src/Surfaces/Surface.cpp b/Core/src/Surfaces/Surface.cpp index 79fdc9d9463..3ebf11d8e92 100644 --- a/Core/src/Surfaces/Surface.cpp +++ b/Core/src/Surfaces/Surface.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/Surface.hpp" diff --git a/Core/src/Surfaces/SurfaceArray.cpp b/Core/src/Surfaces/SurfaceArray.cpp index 30bc0cf2ed6..2606c13a702 100644 --- a/Core/src/Surfaces/SurfaceArray.cpp +++ b/Core/src/Surfaces/SurfaceArray.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/SurfaceArray.hpp" diff --git a/Core/src/Surfaces/SurfaceError.cpp b/Core/src/Surfaces/SurfaceError.cpp index a9b7ad7e4ba..254d67064f3 100644 --- a/Core/src/Surfaces/SurfaceError.cpp +++ b/Core/src/Surfaces/SurfaceError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/PortalError.hpp" diff --git a/Core/src/Surfaces/TrapezoidBounds.cpp b/Core/src/Surfaces/TrapezoidBounds.cpp index a065d607ed1..06da2fa0fef 100644 --- a/Core/src/Surfaces/TrapezoidBounds.cpp +++ b/Core/src/Surfaces/TrapezoidBounds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/TrapezoidBounds.hpp" diff --git a/Core/src/Surfaces/VerticesHelper.cpp b/Core/src/Surfaces/VerticesHelper.cpp index 580bb4cbd0c..3ff4785fe37 100644 --- a/Core/src/Surfaces/VerticesHelper.cpp +++ b/Core/src/Surfaces/VerticesHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/detail/VerticesHelper.hpp" diff --git a/Core/src/Surfaces/detail/AlignmentHelper.cpp b/Core/src/Surfaces/detail/AlignmentHelper.cpp index e208a541120..92c1fb7d2a1 100644 --- a/Core/src/Surfaces/detail/AlignmentHelper.cpp +++ b/Core/src/Surfaces/detail/AlignmentHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/detail/AlignmentHelper.hpp" diff --git a/Core/src/Surfaces/detail/AnnulusBoundsHelper.cpp b/Core/src/Surfaces/detail/AnnulusBoundsHelper.cpp index da3fe516c16..68e22e4c72b 100644 --- a/Core/src/Surfaces/detail/AnnulusBoundsHelper.cpp +++ b/Core/src/Surfaces/detail/AnnulusBoundsHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/detail/AnnulusBoundsHelper.hpp" diff --git a/Core/src/Surfaces/detail/MergeHelper.cpp b/Core/src/Surfaces/detail/MergeHelper.cpp index 7910381be0f..8d0b1fa0b5a 100644 --- a/Core/src/Surfaces/detail/MergeHelper.cpp +++ b/Core/src/Surfaces/detail/MergeHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Surfaces/detail/MergeHelper.hpp" diff --git a/Core/src/TrackFinding/AmbiguityTrackClustering.cpp b/Core/src/TrackFinding/AmbiguityTrackClustering.cpp index b9cf526df7e..ca6b39571af 100644 --- a/Core/src/TrackFinding/AmbiguityTrackClustering.cpp +++ b/Core/src/TrackFinding/AmbiguityTrackClustering.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFinding/detail/AmbiguityTrackClustering.hpp" diff --git a/Core/src/TrackFinding/CombinatorialKalmanFilterError.cpp b/Core/src/TrackFinding/CombinatorialKalmanFilterError.cpp index bbac2645ea4..e7d23b90eaf 100644 --- a/Core/src/TrackFinding/CombinatorialKalmanFilterError.cpp +++ b/Core/src/TrackFinding/CombinatorialKalmanFilterError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFinding/CombinatorialKalmanFilterError.hpp" diff --git a/Core/src/TrackFinding/GbtsConnector.cpp b/Core/src/TrackFinding/GbtsConnector.cpp index a91e54dce30..acebffa9f74 100644 --- a/Core/src/TrackFinding/GbtsConnector.cpp +++ b/Core/src/TrackFinding/GbtsConnector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // TODO: update to C++17 style #include "Acts/TrackFinding/GbtsConnector.hpp" diff --git a/Core/src/TrackFinding/MeasurementSelector.cpp b/Core/src/TrackFinding/MeasurementSelector.cpp index 74d5c4347dc..cde6670e4ca 100644 --- a/Core/src/TrackFinding/MeasurementSelector.cpp +++ b/Core/src/TrackFinding/MeasurementSelector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFinding/MeasurementSelector.hpp" diff --git a/Core/src/TrackFinding/RoiDescriptor.cpp b/Core/src/TrackFinding/RoiDescriptor.cpp index c76df027082..edf9c36684c 100644 --- a/Core/src/TrackFinding/RoiDescriptor.cpp +++ b/Core/src/TrackFinding/RoiDescriptor.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // TODO: update to C++17 style #include "Acts/TrackFinding/RoiDescriptor.hpp" diff --git a/Core/src/TrackFitting/BetheHeitlerApprox.cpp b/Core/src/TrackFitting/BetheHeitlerApprox.cpp index 45eca1d0156..b19b9921902 100644 --- a/Core/src/TrackFitting/BetheHeitlerApprox.cpp +++ b/Core/src/TrackFitting/BetheHeitlerApprox.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/BetheHeitlerApprox.hpp" diff --git a/Core/src/TrackFitting/GainMatrixSmoother.cpp b/Core/src/TrackFitting/GainMatrixSmoother.cpp index d5a79f57d59..19d54bdcf4b 100644 --- a/Core/src/TrackFitting/GainMatrixSmoother.cpp +++ b/Core/src/TrackFitting/GainMatrixSmoother.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/GainMatrixSmoother.hpp" diff --git a/Core/src/TrackFitting/GainMatrixUpdater.cpp b/Core/src/TrackFitting/GainMatrixUpdater.cpp index cbb50fcf5c4..5ed9393d1ec 100644 --- a/Core/src/TrackFitting/GainMatrixUpdater.cpp +++ b/Core/src/TrackFitting/GainMatrixUpdater.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/GainMatrixUpdater.hpp" diff --git a/Core/src/TrackFitting/GainMatrixUpdaterImpl.cpp.in b/Core/src/TrackFitting/GainMatrixUpdaterImpl.cpp.in index 245de570cba..76fc6f8e304 100644 --- a/Core/src/TrackFitting/GainMatrixUpdaterImpl.cpp.in +++ b/Core/src/TrackFitting/GainMatrixUpdaterImpl.cpp.in @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/detail/GainMatrixUpdaterImpl.hpp" diff --git a/Core/src/TrackFitting/GlobalChiSquareFitter.cpp b/Core/src/TrackFitting/GlobalChiSquareFitter.cpp index 0bbde3c0100..0784322308b 100644 --- a/Core/src/TrackFitting/GlobalChiSquareFitter.cpp +++ b/Core/src/TrackFitting/GlobalChiSquareFitter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/GlobalChiSquareFitter.hpp" diff --git a/Core/src/TrackFitting/GlobalChiSquareFitterError.cpp b/Core/src/TrackFitting/GlobalChiSquareFitterError.cpp index f1fd9accd3a..98beceb8cb1 100644 --- a/Core/src/TrackFitting/GlobalChiSquareFitterError.cpp +++ b/Core/src/TrackFitting/GlobalChiSquareFitterError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/GlobalChiSquareFitterError.hpp" diff --git a/Core/src/TrackFitting/GsfError.cpp b/Core/src/TrackFitting/GsfError.cpp index 5d11e40e08d..a7712d0ac96 100644 --- a/Core/src/TrackFitting/GsfError.cpp +++ b/Core/src/TrackFitting/GsfError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/GsfError.hpp" diff --git a/Core/src/TrackFitting/GsfMixtureReduction.cpp b/Core/src/TrackFitting/GsfMixtureReduction.cpp index d0d5b2dfd79..88e5e9fca1d 100644 --- a/Core/src/TrackFitting/GsfMixtureReduction.cpp +++ b/Core/src/TrackFitting/GsfMixtureReduction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/GsfMixtureReduction.hpp" diff --git a/Core/src/TrackFitting/GsfUtils.cpp b/Core/src/TrackFitting/GsfUtils.cpp index 56ed204fcd4..ae5b47ca700 100644 --- a/Core/src/TrackFitting/GsfUtils.cpp +++ b/Core/src/TrackFitting/GsfUtils.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/detail/GsfUtils.hpp" diff --git a/Core/src/TrackFitting/KalmanFitterError.cpp b/Core/src/TrackFitting/KalmanFitterError.cpp index 000bcf7242d..b585c52472c 100644 --- a/Core/src/TrackFitting/KalmanFitterError.cpp +++ b/Core/src/TrackFitting/KalmanFitterError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/KalmanFitterError.hpp" diff --git a/Core/src/TrackFitting/MbfSmoother.cpp b/Core/src/TrackFitting/MbfSmoother.cpp index 53e29d19598..8ed74106bfb 100644 --- a/Core/src/TrackFitting/MbfSmoother.cpp +++ b/Core/src/TrackFitting/MbfSmoother.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/TrackFitting/MbfSmoother.hpp" diff --git a/Core/src/Utilities/AnnealingUtility.cpp b/Core/src/Utilities/AnnealingUtility.cpp index 1b2063324c9..d090af6a193 100644 --- a/Core/src/Utilities/AnnealingUtility.cpp +++ b/Core/src/Utilities/AnnealingUtility.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/AnnealingUtility.hpp" diff --git a/Core/src/Utilities/BinUtility.cpp b/Core/src/Utilities/BinUtility.cpp index 4161ccdb4f1..707f6dce1a0 100644 --- a/Core/src/Utilities/BinUtility.cpp +++ b/Core/src/Utilities/BinUtility.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/BinUtility.hpp" diff --git a/Core/src/Utilities/BinningType.cpp b/Core/src/Utilities/BinningType.cpp index 08a3dd58ce5..e1ed3ecea71 100644 --- a/Core/src/Utilities/BinningType.cpp +++ b/Core/src/Utilities/BinningType.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/BinningType.hpp" diff --git a/Core/src/Utilities/GraphViz.cpp b/Core/src/Utilities/GraphViz.cpp index f38de83beca..fda1635abd5 100644 --- a/Core/src/Utilities/GraphViz.cpp +++ b/Core/src/Utilities/GraphViz.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/GraphViz.hpp" diff --git a/Core/src/Utilities/Intersection.cpp b/Core/src/Utilities/Intersection.cpp index 2c9531bdfdf..23378f0b381 100644 --- a/Core/src/Utilities/Intersection.cpp +++ b/Core/src/Utilities/Intersection.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/Intersection.hpp" diff --git a/Core/src/Utilities/Logger.cpp b/Core/src/Utilities/Logger.cpp index 584c0477b0e..c183532a1fb 100644 --- a/Core/src/Utilities/Logger.cpp +++ b/Core/src/Utilities/Logger.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/Logger.hpp" diff --git a/Core/src/Utilities/SpacePointUtility.cpp b/Core/src/Utilities/SpacePointUtility.cpp index 460cd02f43c..c93154091ce 100644 --- a/Core/src/Utilities/SpacePointUtility.cpp +++ b/Core/src/Utilities/SpacePointUtility.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/SpacePointUtility.hpp" diff --git a/Core/src/Utilities/TrackHelpers.cpp b/Core/src/Utilities/TrackHelpers.cpp index a20350628ac..9a607a34ecc 100644 --- a/Core/src/Utilities/TrackHelpers.cpp +++ b/Core/src/Utilities/TrackHelpers.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/TrackHelpers.hpp" diff --git a/Core/src/Vertexing/AdaptiveGridDensityVertexFinder.cpp b/Core/src/Vertexing/AdaptiveGridDensityVertexFinder.cpp index f60ca2f0e09..0db0eeb33c1 100644 --- a/Core/src/Vertexing/AdaptiveGridDensityVertexFinder.cpp +++ b/Core/src/Vertexing/AdaptiveGridDensityVertexFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/AdaptiveGridDensityVertexFinder.hpp" diff --git a/Core/src/Vertexing/AdaptiveGridTrackDensity.cpp b/Core/src/Vertexing/AdaptiveGridTrackDensity.cpp index 37f59506f6f..3b56aa0a3de 100644 --- a/Core/src/Vertexing/AdaptiveGridTrackDensity.cpp +++ b/Core/src/Vertexing/AdaptiveGridTrackDensity.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/AdaptiveGridTrackDensity.hpp" diff --git a/Core/src/Vertexing/AdaptiveMultiVertexFinder.cpp b/Core/src/Vertexing/AdaptiveMultiVertexFinder.cpp index c6308c17152..655ee0b218f 100644 --- a/Core/src/Vertexing/AdaptiveMultiVertexFinder.cpp +++ b/Core/src/Vertexing/AdaptiveMultiVertexFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/AdaptiveMultiVertexFinder.hpp" diff --git a/Core/src/Vertexing/AdaptiveMultiVertexFitter.cpp b/Core/src/Vertexing/AdaptiveMultiVertexFitter.cpp index 99a2e401025..8cb6e6d8e93 100644 --- a/Core/src/Vertexing/AdaptiveMultiVertexFitter.cpp +++ b/Core/src/Vertexing/AdaptiveMultiVertexFitter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/AdaptiveMultiVertexFitter.hpp" diff --git a/Core/src/Vertexing/FsmwMode1dFinder.cpp b/Core/src/Vertexing/FsmwMode1dFinder.cpp index 8d075fe131b..f63433ae08c 100644 --- a/Core/src/Vertexing/FsmwMode1dFinder.cpp +++ b/Core/src/Vertexing/FsmwMode1dFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/FsmwMode1dFinder.hpp" diff --git a/Core/src/Vertexing/FullBilloirVertexFitter.cpp b/Core/src/Vertexing/FullBilloirVertexFitter.cpp index 44e9c3267c7..3c5b17121fb 100644 --- a/Core/src/Vertexing/FullBilloirVertexFitter.cpp +++ b/Core/src/Vertexing/FullBilloirVertexFitter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/FullBilloirVertexFitter.hpp" diff --git a/Core/src/Vertexing/GaussianGridTrackDensity.cpp b/Core/src/Vertexing/GaussianGridTrackDensity.cpp index 41796ed8e6b..753461119ba 100644 --- a/Core/src/Vertexing/GaussianGridTrackDensity.cpp +++ b/Core/src/Vertexing/GaussianGridTrackDensity.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/GaussianGridTrackDensity.hpp" diff --git a/Core/src/Vertexing/GaussianTrackDensity.cpp b/Core/src/Vertexing/GaussianTrackDensity.cpp index b2e489a04ba..073c4500dbf 100644 --- a/Core/src/Vertexing/GaussianTrackDensity.cpp +++ b/Core/src/Vertexing/GaussianTrackDensity.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/GaussianTrackDensity.hpp" diff --git a/Core/src/Vertexing/GridDensityVertexFinder.cpp b/Core/src/Vertexing/GridDensityVertexFinder.cpp index 4eee621843c..a41ac0e4d11 100644 --- a/Core/src/Vertexing/GridDensityVertexFinder.cpp +++ b/Core/src/Vertexing/GridDensityVertexFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/GridDensityVertexFinder.hpp" diff --git a/Core/src/Vertexing/HelicalTrackLinearizer.cpp b/Core/src/Vertexing/HelicalTrackLinearizer.cpp index 8a9f59120da..2d814b95c4f 100644 --- a/Core/src/Vertexing/HelicalTrackLinearizer.cpp +++ b/Core/src/Vertexing/HelicalTrackLinearizer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/HelicalTrackLinearizer.hpp" diff --git a/Core/src/Vertexing/ImpactPointEstimator.cpp b/Core/src/Vertexing/ImpactPointEstimator.cpp index 9be733ff3a2..3c6d29e4bae 100644 --- a/Core/src/Vertexing/ImpactPointEstimator.cpp +++ b/Core/src/Vertexing/ImpactPointEstimator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/ImpactPointEstimator.hpp" diff --git a/Core/src/Vertexing/IterativeVertexFinder.cpp b/Core/src/Vertexing/IterativeVertexFinder.cpp index 66cea9bd64a..e455dca47ec 100644 --- a/Core/src/Vertexing/IterativeVertexFinder.cpp +++ b/Core/src/Vertexing/IterativeVertexFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/IterativeVertexFinder.hpp" diff --git a/Core/src/Vertexing/KalmanVertexUpdater.cpp b/Core/src/Vertexing/KalmanVertexUpdater.cpp index 226e1b88d53..b59aa1ddd7a 100644 --- a/Core/src/Vertexing/KalmanVertexUpdater.cpp +++ b/Core/src/Vertexing/KalmanVertexUpdater.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/KalmanVertexUpdater.hpp" diff --git a/Core/src/Vertexing/KalmanVertexUpdaterImpl3.cpp b/Core/src/Vertexing/KalmanVertexUpdaterImpl3.cpp index ccd250c887c..f2d47961e71 100644 --- a/Core/src/Vertexing/KalmanVertexUpdaterImpl3.cpp +++ b/Core/src/Vertexing/KalmanVertexUpdaterImpl3.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/KalmanVertexUpdater.hpp" #include "Acts/Vertexing/detail/KalmanVertexUpdaterImpl.hpp" diff --git a/Core/src/Vertexing/KalmanVertexUpdaterImpl4.cpp b/Core/src/Vertexing/KalmanVertexUpdaterImpl4.cpp index 4b83ef23e7a..4b28d0fe534 100644 --- a/Core/src/Vertexing/KalmanVertexUpdaterImpl4.cpp +++ b/Core/src/Vertexing/KalmanVertexUpdaterImpl4.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/KalmanVertexUpdater.hpp" #include "Acts/Vertexing/detail/KalmanVertexUpdaterImpl.hpp" diff --git a/Core/src/Vertexing/NumericalTrackLinearizer.cpp b/Core/src/Vertexing/NumericalTrackLinearizer.cpp index 2a5f31007da..035e42ab3c8 100644 --- a/Core/src/Vertexing/NumericalTrackLinearizer.cpp +++ b/Core/src/Vertexing/NumericalTrackLinearizer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/NumericalTrackLinearizer.hpp" diff --git a/Core/src/Vertexing/TrackDensityVertexFinder.cpp b/Core/src/Vertexing/TrackDensityVertexFinder.cpp index 32c2b227678..ae42acae766 100644 --- a/Core/src/Vertexing/TrackDensityVertexFinder.cpp +++ b/Core/src/Vertexing/TrackDensityVertexFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/TrackDensityVertexFinder.hpp" diff --git a/Core/src/Vertexing/Vertex.cpp b/Core/src/Vertexing/Vertex.cpp index 6d1fa9bf902..0a8eda8c279 100644 --- a/Core/src/Vertexing/Vertex.cpp +++ b/Core/src/Vertexing/Vertex.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/Vertex.hpp" diff --git a/Core/src/Vertexing/VertexingError.cpp b/Core/src/Vertexing/VertexingError.cpp index 922b8a83dc9..1ce8ad0d202 100644 --- a/Core/src/Vertexing/VertexingError.cpp +++ b/Core/src/Vertexing/VertexingError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/VertexingError.hpp" diff --git a/Core/src/Vertexing/ZScanVertexFinder.cpp b/Core/src/Vertexing/ZScanVertexFinder.cpp index 1960e7b65dc..5dbed65aaa2 100644 --- a/Core/src/Vertexing/ZScanVertexFinder.cpp +++ b/Core/src/Vertexing/ZScanVertexFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Vertexing/ZScanVertexFinder.hpp" diff --git a/Core/src/Visualization/EventDataView3D.cpp b/Core/src/Visualization/EventDataView3D.cpp index 656cb020616..63644d0204f 100644 --- a/Core/src/Visualization/EventDataView3D.cpp +++ b/Core/src/Visualization/EventDataView3D.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Visualization/EventDataView3D.hpp" diff --git a/Core/src/Visualization/GeometryView3D.cpp b/Core/src/Visualization/GeometryView3D.cpp index f6ee3427e38..e0a7c52a5a7 100644 --- a/Core/src/Visualization/GeometryView3D.cpp +++ b/Core/src/Visualization/GeometryView3D.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Visualization/GeometryView3D.hpp" diff --git a/Examples/Algorithms/Alignment/include/ActsExamples/Alignment/AlignmentAlgorithm.hpp b/Examples/Algorithms/Alignment/include/ActsExamples/Alignment/AlignmentAlgorithm.hpp index 3d37e59f813..fe3442b1a29 100644 --- a/Examples/Algorithms/Alignment/include/ActsExamples/Alignment/AlignmentAlgorithm.hpp +++ b/Examples/Algorithms/Alignment/include/ActsExamples/Alignment/AlignmentAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Alignment/src/AlignmentAlgorithm.cpp b/Examples/Algorithms/Alignment/src/AlignmentAlgorithm.cpp index 444b818233d..aa685217f05 100644 --- a/Examples/Algorithms/Alignment/src/AlignmentAlgorithm.cpp +++ b/Examples/Algorithms/Alignment/src/AlignmentAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Alignment/AlignmentAlgorithm.hpp" diff --git a/Examples/Algorithms/Alignment/src/AlignmentAlgorithmFunction.cpp b/Examples/Algorithms/Alignment/src/AlignmentAlgorithmFunction.cpp index 17ca082f88c..d36a6df9b95 100644 --- a/Examples/Algorithms/Alignment/src/AlignmentAlgorithmFunction.cpp +++ b/Examples/Algorithms/Alignment/src/AlignmentAlgorithmFunction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/TrackParametrization.hpp" #include "Acts/Geometry/GeometryIdentifier.hpp" diff --git a/Examples/Algorithms/AmbiguityResolution/include/ActsExamples/AmbiguityResolution/GreedyAmbiguityResolutionAlgorithm.hpp b/Examples/Algorithms/AmbiguityResolution/include/ActsExamples/AmbiguityResolution/GreedyAmbiguityResolutionAlgorithm.hpp index 36010fda472..af4e0d1045f 100644 --- a/Examples/Algorithms/AmbiguityResolution/include/ActsExamples/AmbiguityResolution/GreedyAmbiguityResolutionAlgorithm.hpp +++ b/Examples/Algorithms/AmbiguityResolution/include/ActsExamples/AmbiguityResolution/GreedyAmbiguityResolutionAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/AmbiguityResolution/include/ActsExamples/AmbiguityResolution/ScoreBasedAmbiguityResolutionAlgorithm.hpp b/Examples/Algorithms/AmbiguityResolution/include/ActsExamples/AmbiguityResolution/ScoreBasedAmbiguityResolutionAlgorithm.hpp index 9f8c50d9a93..1ffeef6ac29 100644 --- a/Examples/Algorithms/AmbiguityResolution/include/ActsExamples/AmbiguityResolution/ScoreBasedAmbiguityResolutionAlgorithm.hpp +++ b/Examples/Algorithms/AmbiguityResolution/include/ActsExamples/AmbiguityResolution/ScoreBasedAmbiguityResolutionAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/AmbiguityResolution/src/GreedyAmbiguityResolutionAlgorithm.cpp b/Examples/Algorithms/AmbiguityResolution/src/GreedyAmbiguityResolutionAlgorithm.cpp index 7af33230b8d..5808fe89987 100644 --- a/Examples/Algorithms/AmbiguityResolution/src/GreedyAmbiguityResolutionAlgorithm.cpp +++ b/Examples/Algorithms/AmbiguityResolution/src/GreedyAmbiguityResolutionAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/AmbiguityResolution/GreedyAmbiguityResolutionAlgorithm.hpp" diff --git a/Examples/Algorithms/AmbiguityResolution/src/ScoreBasedAmbiguityResolutionAlgorithm.cpp b/Examples/Algorithms/AmbiguityResolution/src/ScoreBasedAmbiguityResolutionAlgorithm.cpp index 41446543dc7..bd3584fa4b2 100644 --- a/Examples/Algorithms/AmbiguityResolution/src/ScoreBasedAmbiguityResolutionAlgorithm.cpp +++ b/Examples/Algorithms/AmbiguityResolution/src/ScoreBasedAmbiguityResolutionAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/AmbiguityResolution/ScoreBasedAmbiguityResolutionAlgorithm.hpp" diff --git a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationAlgorithm.hpp b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationAlgorithm.hpp index 1c8a0c8e322..560fcc9b3e5 100644 --- a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationAlgorithm.hpp +++ b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationConfig.hpp b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationConfig.hpp index c49e62ae653..941d01ae494 100644 --- a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationConfig.hpp +++ b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationConfigurator.hpp b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationConfigurator.hpp index 0c6fb6a906e..55754eb79f7 100644 --- a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationConfigurator.hpp +++ b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/DigitizationConfigurator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/MeasurementCreation.hpp b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/MeasurementCreation.hpp index e168858cfd1..b2c76a9820e 100644 --- a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/MeasurementCreation.hpp +++ b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/MeasurementCreation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/ModuleClusters.hpp b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/ModuleClusters.hpp index c5f7a4e8f88..675f86af07d 100644 --- a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/ModuleClusters.hpp +++ b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/ModuleClusters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/Smearers.hpp b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/Smearers.hpp index 416a9a85abe..c51b8e26b64 100644 --- a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/Smearers.hpp +++ b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/Smearers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/SmearingConfig.hpp b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/SmearingConfig.hpp index de32254e6d2..4c46f029f93 100644 --- a/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/SmearingConfig.hpp +++ b/Examples/Algorithms/Digitization/include/ActsExamples/Digitization/SmearingConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Digitization/scripts/smearing-config.py b/Examples/Algorithms/Digitization/scripts/smearing-config.py index 504f364f4c0..5c176d86318 100644 --- a/Examples/Algorithms/Digitization/scripts/smearing-config.py +++ b/Examples/Algorithms/Digitization/scripts/smearing-config.py @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http:#mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # each volume configuration is one logical block diff --git a/Examples/Algorithms/Digitization/src/DigitizationAlgorithm.cpp b/Examples/Algorithms/Digitization/src/DigitizationAlgorithm.cpp index 40b9120a9c4..d6babfe24d0 100644 --- a/Examples/Algorithms/Digitization/src/DigitizationAlgorithm.cpp +++ b/Examples/Algorithms/Digitization/src/DigitizationAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Digitization/DigitizationAlgorithm.hpp" diff --git a/Examples/Algorithms/Digitization/src/DigitizationConfig.cpp b/Examples/Algorithms/Digitization/src/DigitizationConfig.cpp index 901d71a07cd..e19452d1e7a 100644 --- a/Examples/Algorithms/Digitization/src/DigitizationConfig.cpp +++ b/Examples/Algorithms/Digitization/src/DigitizationConfig.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Digitization/DigitizationConfig.hpp" diff --git a/Examples/Algorithms/Digitization/src/DigitizationConfigurator.cpp b/Examples/Algorithms/Digitization/src/DigitizationConfigurator.cpp index 4415d735b5c..e7bd2ddfa09 100644 --- a/Examples/Algorithms/Digitization/src/DigitizationConfigurator.cpp +++ b/Examples/Algorithms/Digitization/src/DigitizationConfigurator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Digitization/DigitizationConfigurator.hpp" diff --git a/Examples/Algorithms/Digitization/src/MeasurementCreation.cpp b/Examples/Algorithms/Digitization/src/MeasurementCreation.cpp index dddbdc8232d..e7a9e6b379e 100644 --- a/Examples/Algorithms/Digitization/src/MeasurementCreation.cpp +++ b/Examples/Algorithms/Digitization/src/MeasurementCreation.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Digitization/MeasurementCreation.hpp" diff --git a/Examples/Algorithms/Digitization/src/ModuleClusters.cpp b/Examples/Algorithms/Digitization/src/ModuleClusters.cpp index b5e7ab8e462..fbe7bb2a901 100644 --- a/Examples/Algorithms/Digitization/src/ModuleClusters.cpp +++ b/Examples/Algorithms/Digitization/src/ModuleClusters.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Digitization/ModuleClusters.hpp" diff --git a/Examples/Algorithms/Fatras/include/ActsExamples/Fatras/FatrasSimulation.hpp b/Examples/Algorithms/Fatras/include/ActsExamples/Fatras/FatrasSimulation.hpp index 86e9a01c2eb..100a34b6257 100644 --- a/Examples/Algorithms/Fatras/include/ActsExamples/Fatras/FatrasSimulation.hpp +++ b/Examples/Algorithms/Fatras/include/ActsExamples/Fatras/FatrasSimulation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Fatras/src/FatrasSimulation.cpp b/Examples/Algorithms/Fatras/src/FatrasSimulation.cpp index 513082320b0..48c66eeff3f 100644 --- a/Examples/Algorithms/Fatras/src/FatrasSimulation.cpp +++ b/Examples/Algorithms/Fatras/src/FatrasSimulation.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Fatras/FatrasSimulation.hpp" diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/DDG4/DDG4DetectorConstruction.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/DDG4/DDG4DetectorConstruction.hpp index 85237e94811..529a3725980 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/DDG4/DDG4DetectorConstruction.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/DDG4/DDG4DetectorConstruction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/DetectorConstructionFactory.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/DetectorConstructionFactory.hpp index ddf3a635d52..a0f5b3e41cd 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/DetectorConstructionFactory.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/DetectorConstructionFactory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/EventStore.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/EventStore.hpp index 37202aaac52..f7ef51638d6 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/EventStore.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/EventStore.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/GdmlDetectorConstruction.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/GdmlDetectorConstruction.hpp index 5ce29404a01..24924bd7867 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/GdmlDetectorConstruction.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/GdmlDetectorConstruction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/Geant4Manager.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/Geant4Manager.hpp index 726b6378ce1..c3db1c3f2fe 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/Geant4Manager.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/Geant4Manager.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/Geant4Simulation.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/Geant4Simulation.hpp index 8e19f1db6f1..487aadaba36 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/Geant4Simulation.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/Geant4Simulation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MagneticFieldWrapper.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MagneticFieldWrapper.hpp index 84e4060ed33..a73663fb503 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MagneticFieldWrapper.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MagneticFieldWrapper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MaterialPhysicsList.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MaterialPhysicsList.hpp index 79861cac819..b53567b77a0 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MaterialPhysicsList.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MaterialPhysicsList.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MaterialSteppingAction.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MaterialSteppingAction.hpp index 9713f427b21..8b21c41a7ce 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MaterialSteppingAction.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/MaterialSteppingAction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/ParticleKillAction.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/ParticleKillAction.hpp index 7802760e739..4eb45d4f6ec 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/ParticleKillAction.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/ParticleKillAction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/ParticleTrackingAction.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/ParticleTrackingAction.hpp index 1c724cad7c7..6e79f654db6 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/ParticleTrackingAction.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/ParticleTrackingAction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/PhysicsListFactory.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/PhysicsListFactory.hpp index a69ea9da91a..d3c4b9f33c2 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/PhysicsListFactory.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/PhysicsListFactory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/RegionCreator.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/RegionCreator.hpp index 873859a27b1..b141948ec90 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/RegionCreator.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/RegionCreator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SensitiveSteppingAction.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SensitiveSteppingAction.hpp index 0d7ceaf96f6..664522349df 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SensitiveSteppingAction.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SensitiveSteppingAction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SensitiveSurfaceMapper.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SensitiveSurfaceMapper.hpp index 3a4bc3f2f3f..60f86d0d4e3 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SensitiveSurfaceMapper.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SensitiveSurfaceMapper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SimParticleTranslation.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SimParticleTranslation.hpp index 9dbd29771c3..8a20f91ae39 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SimParticleTranslation.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SimParticleTranslation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SteppingActionList.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SteppingActionList.hpp index fab420cce26..569914007d8 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SteppingActionList.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/Geant4/SteppingActionList.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/GeoModelG4/GeoModelDetectorConstruction.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/GeoModelG4/GeoModelDetectorConstruction.hpp index 38bfef2ef8e..a919d2866b0 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/GeoModelG4/GeoModelDetectorConstruction.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/GeoModelG4/GeoModelDetectorConstruction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/include/ActsExamples/TelescopeDetector/TelescopeG4DetectorConstruction.hpp b/Examples/Algorithms/Geant4/include/ActsExamples/TelescopeDetector/TelescopeG4DetectorConstruction.hpp index cc3583a53c5..66fc363fe53 100644 --- a/Examples/Algorithms/Geant4/include/ActsExamples/TelescopeDetector/TelescopeG4DetectorConstruction.hpp +++ b/Examples/Algorithms/Geant4/include/ActsExamples/TelescopeDetector/TelescopeG4DetectorConstruction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4/src/DDG4DetectorConstruction.cpp b/Examples/Algorithms/Geant4/src/DDG4DetectorConstruction.cpp index a09314c919c..ae6a4609180 100644 --- a/Examples/Algorithms/Geant4/src/DDG4DetectorConstruction.cpp +++ b/Examples/Algorithms/Geant4/src/DDG4DetectorConstruction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/DDG4/DDG4DetectorConstruction.hpp" diff --git a/Examples/Algorithms/Geant4/src/GdmlDetectorConstruction.cpp b/Examples/Algorithms/Geant4/src/GdmlDetectorConstruction.cpp index b2846f33a3b..5a10933bb3f 100644 --- a/Examples/Algorithms/Geant4/src/GdmlDetectorConstruction.cpp +++ b/Examples/Algorithms/Geant4/src/GdmlDetectorConstruction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/GdmlDetectorConstruction.hpp" diff --git a/Examples/Algorithms/Geant4/src/Geant4Manager.cpp b/Examples/Algorithms/Geant4/src/Geant4Manager.cpp index 33c9a5af781..fb981704561 100644 --- a/Examples/Algorithms/Geant4/src/Geant4Manager.cpp +++ b/Examples/Algorithms/Geant4/src/Geant4Manager.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/Geant4Manager.hpp" diff --git a/Examples/Algorithms/Geant4/src/Geant4Simulation.cpp b/Examples/Algorithms/Geant4/src/Geant4Simulation.cpp index 89f805f184c..515159e3e51 100644 --- a/Examples/Algorithms/Geant4/src/Geant4Simulation.cpp +++ b/Examples/Algorithms/Geant4/src/Geant4Simulation.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/Geant4Simulation.hpp" diff --git a/Examples/Algorithms/Geant4/src/GeoModelDetectorConstruction.cpp b/Examples/Algorithms/Geant4/src/GeoModelDetectorConstruction.cpp index 0447d6acf19..c3ad0eea6de 100644 --- a/Examples/Algorithms/Geant4/src/GeoModelDetectorConstruction.cpp +++ b/Examples/Algorithms/Geant4/src/GeoModelDetectorConstruction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/GeoModelG4/GeoModelDetectorConstruction.hpp" diff --git a/Examples/Algorithms/Geant4/src/MagneticFieldWrapper.cpp b/Examples/Algorithms/Geant4/src/MagneticFieldWrapper.cpp index 580d75f03ed..33f15fa6586 100644 --- a/Examples/Algorithms/Geant4/src/MagneticFieldWrapper.cpp +++ b/Examples/Algorithms/Geant4/src/MagneticFieldWrapper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/MagneticFieldWrapper.hpp" diff --git a/Examples/Algorithms/Geant4/src/MaterialPhysicsList.cpp b/Examples/Algorithms/Geant4/src/MaterialPhysicsList.cpp index f91da093ccb..d115e9e1794 100644 --- a/Examples/Algorithms/Geant4/src/MaterialPhysicsList.cpp +++ b/Examples/Algorithms/Geant4/src/MaterialPhysicsList.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/MaterialPhysicsList.hpp" diff --git a/Examples/Algorithms/Geant4/src/MaterialSteppingAction.cpp b/Examples/Algorithms/Geant4/src/MaterialSteppingAction.cpp index a6d8b8ed25a..c4f0e6528bd 100644 --- a/Examples/Algorithms/Geant4/src/MaterialSteppingAction.cpp +++ b/Examples/Algorithms/Geant4/src/MaterialSteppingAction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/MaterialSteppingAction.hpp" diff --git a/Examples/Algorithms/Geant4/src/ParticleKillAction.cpp b/Examples/Algorithms/Geant4/src/ParticleKillAction.cpp index c27aeb87fd9..5090a74dafa 100644 --- a/Examples/Algorithms/Geant4/src/ParticleKillAction.cpp +++ b/Examples/Algorithms/Geant4/src/ParticleKillAction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/ParticleKillAction.hpp" diff --git a/Examples/Algorithms/Geant4/src/ParticleTrackingAction.cpp b/Examples/Algorithms/Geant4/src/ParticleTrackingAction.cpp index 88aeb33d010..d56509e1ad1 100644 --- a/Examples/Algorithms/Geant4/src/ParticleTrackingAction.cpp +++ b/Examples/Algorithms/Geant4/src/ParticleTrackingAction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/ParticleTrackingAction.hpp" diff --git a/Examples/Algorithms/Geant4/src/PhysicsListFactory.cpp b/Examples/Algorithms/Geant4/src/PhysicsListFactory.cpp index 137046c543a..95866efa188 100644 --- a/Examples/Algorithms/Geant4/src/PhysicsListFactory.cpp +++ b/Examples/Algorithms/Geant4/src/PhysicsListFactory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/PhysicsListFactory.hpp" diff --git a/Examples/Algorithms/Geant4/src/RegionCreator.cpp b/Examples/Algorithms/Geant4/src/RegionCreator.cpp index f5d5fe3d7d4..4e3384a98b7 100644 --- a/Examples/Algorithms/Geant4/src/RegionCreator.cpp +++ b/Examples/Algorithms/Geant4/src/RegionCreator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/RegionCreator.hpp" diff --git a/Examples/Algorithms/Geant4/src/SensitiveSteppingAction.cpp b/Examples/Algorithms/Geant4/src/SensitiveSteppingAction.cpp index f0f015024e6..cb763ecc582 100644 --- a/Examples/Algorithms/Geant4/src/SensitiveSteppingAction.cpp +++ b/Examples/Algorithms/Geant4/src/SensitiveSteppingAction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/SensitiveSteppingAction.hpp" diff --git a/Examples/Algorithms/Geant4/src/SensitiveSurfaceMapper.cpp b/Examples/Algorithms/Geant4/src/SensitiveSurfaceMapper.cpp index 58cd3e6ba3c..ced44d89e94 100644 --- a/Examples/Algorithms/Geant4/src/SensitiveSurfaceMapper.cpp +++ b/Examples/Algorithms/Geant4/src/SensitiveSurfaceMapper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/SensitiveSurfaceMapper.hpp" diff --git a/Examples/Algorithms/Geant4/src/SimParticleTranslation.cpp b/Examples/Algorithms/Geant4/src/SimParticleTranslation.cpp index 1f02fd10151..0543a62119b 100644 --- a/Examples/Algorithms/Geant4/src/SimParticleTranslation.cpp +++ b/Examples/Algorithms/Geant4/src/SimParticleTranslation.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4/SimParticleTranslation.hpp" diff --git a/Examples/Algorithms/Geant4/src/TelescopeG4DetectorConstruction.cpp b/Examples/Algorithms/Geant4/src/TelescopeG4DetectorConstruction.cpp index dfc837889b4..423acf7e2a5 100644 --- a/Examples/Algorithms/Geant4/src/TelescopeG4DetectorConstruction.cpp +++ b/Examples/Algorithms/Geant4/src/TelescopeG4DetectorConstruction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TelescopeDetector/TelescopeG4DetectorConstruction.hpp" diff --git a/Examples/Algorithms/Geant4HepMC/include/ActsExamples/Geant4HepMC/EventRecording.hpp b/Examples/Algorithms/Geant4HepMC/include/ActsExamples/Geant4HepMC/EventRecording.hpp index be3c569e5b2..256a82a4471 100644 --- a/Examples/Algorithms/Geant4HepMC/include/ActsExamples/Geant4HepMC/EventRecording.hpp +++ b/Examples/Algorithms/Geant4HepMC/include/ActsExamples/Geant4HepMC/EventRecording.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4HepMC/src/EventAction.cpp b/Examples/Algorithms/Geant4HepMC/src/EventAction.cpp index eb5de237061..590b6482ae8 100644 --- a/Examples/Algorithms/Geant4HepMC/src/EventAction.cpp +++ b/Examples/Algorithms/Geant4HepMC/src/EventAction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "EventAction.hpp" diff --git a/Examples/Algorithms/Geant4HepMC/src/EventAction.hpp b/Examples/Algorithms/Geant4HepMC/src/EventAction.hpp index 67b77bb6e30..5c078e21cf8 100644 --- a/Examples/Algorithms/Geant4HepMC/src/EventAction.hpp +++ b/Examples/Algorithms/Geant4HepMC/src/EventAction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4HepMC/src/EventRecording.cpp b/Examples/Algorithms/Geant4HepMC/src/EventRecording.cpp index 858de3fdee6..e4900f63c05 100644 --- a/Examples/Algorithms/Geant4HepMC/src/EventRecording.cpp +++ b/Examples/Algorithms/Geant4HepMC/src/EventRecording.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4HepMC/EventRecording.hpp" diff --git a/Examples/Algorithms/Geant4HepMC/src/PrimaryGeneratorAction.cpp b/Examples/Algorithms/Geant4HepMC/src/PrimaryGeneratorAction.cpp index becdc680187..7e14589283b 100644 --- a/Examples/Algorithms/Geant4HepMC/src/PrimaryGeneratorAction.cpp +++ b/Examples/Algorithms/Geant4HepMC/src/PrimaryGeneratorAction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "PrimaryGeneratorAction.hpp" diff --git a/Examples/Algorithms/Geant4HepMC/src/PrimaryGeneratorAction.hpp b/Examples/Algorithms/Geant4HepMC/src/PrimaryGeneratorAction.hpp index aca41fb7e37..c0451c76bf1 100644 --- a/Examples/Algorithms/Geant4HepMC/src/PrimaryGeneratorAction.hpp +++ b/Examples/Algorithms/Geant4HepMC/src/PrimaryGeneratorAction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4HepMC/src/RunAction.cpp b/Examples/Algorithms/Geant4HepMC/src/RunAction.cpp index b41c9d6d699..7fde34e8d02 100644 --- a/Examples/Algorithms/Geant4HepMC/src/RunAction.cpp +++ b/Examples/Algorithms/Geant4HepMC/src/RunAction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "RunAction.hpp" diff --git a/Examples/Algorithms/Geant4HepMC/src/RunAction.hpp b/Examples/Algorithms/Geant4HepMC/src/RunAction.hpp index fa48ad5f11c..abe77d13d1f 100644 --- a/Examples/Algorithms/Geant4HepMC/src/RunAction.hpp +++ b/Examples/Algorithms/Geant4HepMC/src/RunAction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geant4HepMC/src/SteppingAction.cpp b/Examples/Algorithms/Geant4HepMC/src/SteppingAction.cpp index 8852349dc60..7ccb3924eb7 100644 --- a/Examples/Algorithms/Geant4HepMC/src/SteppingAction.cpp +++ b/Examples/Algorithms/Geant4HepMC/src/SteppingAction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "SteppingAction.hpp" diff --git a/Examples/Algorithms/Geant4HepMC/src/SteppingAction.hpp b/Examples/Algorithms/Geant4HepMC/src/SteppingAction.hpp index 8233b5adc5a..51144f3e83c 100644 --- a/Examples/Algorithms/Geant4HepMC/src/SteppingAction.hpp +++ b/Examples/Algorithms/Geant4HepMC/src/SteppingAction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Generators/ActsExamples/Generators/EventGenerator.cpp b/Examples/Algorithms/Generators/ActsExamples/Generators/EventGenerator.cpp index 16b575b4529..5e7e2af3f9a 100644 --- a/Examples/Algorithms/Generators/ActsExamples/Generators/EventGenerator.cpp +++ b/Examples/Algorithms/Generators/ActsExamples/Generators/EventGenerator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Generators/EventGenerator.hpp" diff --git a/Examples/Algorithms/Generators/ActsExamples/Generators/EventGenerator.hpp b/Examples/Algorithms/Generators/ActsExamples/Generators/EventGenerator.hpp index 90ecece72bb..46720b9fff1 100644 --- a/Examples/Algorithms/Generators/ActsExamples/Generators/EventGenerator.hpp +++ b/Examples/Algorithms/Generators/ActsExamples/Generators/EventGenerator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Generators/ActsExamples/Generators/MultiplicityGenerators.hpp b/Examples/Algorithms/Generators/ActsExamples/Generators/MultiplicityGenerators.hpp index c859f24de4f..42290a5e471 100644 --- a/Examples/Algorithms/Generators/ActsExamples/Generators/MultiplicityGenerators.hpp +++ b/Examples/Algorithms/Generators/ActsExamples/Generators/MultiplicityGenerators.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Generators/ActsExamples/Generators/ParametricParticleGenerator.cpp b/Examples/Algorithms/Generators/ActsExamples/Generators/ParametricParticleGenerator.cpp index 11f70002d17..104c8c0f04d 100644 --- a/Examples/Algorithms/Generators/ActsExamples/Generators/ParametricParticleGenerator.cpp +++ b/Examples/Algorithms/Generators/ActsExamples/Generators/ParametricParticleGenerator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Generators/ParametricParticleGenerator.hpp" diff --git a/Examples/Algorithms/Generators/ActsExamples/Generators/ParametricParticleGenerator.hpp b/Examples/Algorithms/Generators/ActsExamples/Generators/ParametricParticleGenerator.hpp index 0130a8d5d67..3bb8ff9d836 100644 --- a/Examples/Algorithms/Generators/ActsExamples/Generators/ParametricParticleGenerator.hpp +++ b/Examples/Algorithms/Generators/ActsExamples/Generators/ParametricParticleGenerator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Generators/ActsExamples/Generators/VertexGenerators.hpp b/Examples/Algorithms/Generators/ActsExamples/Generators/VertexGenerators.hpp index c15ec2bf244..b32b04cfc36 100644 --- a/Examples/Algorithms/Generators/ActsExamples/Generators/VertexGenerators.hpp +++ b/Examples/Algorithms/Generators/ActsExamples/Generators/VertexGenerators.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.cpp b/Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.cpp index 0293443d17c..91de17b9eef 100644 --- a/Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.cpp +++ b/Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Generators/Pythia8ProcessGenerator.hpp" diff --git a/Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.hpp b/Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.hpp index 033d0cd789d..6f1fe4c486f 100644 --- a/Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.hpp +++ b/Examples/Algorithms/GeneratorsPythia8/ActsExamples/Generators/Pythia8ProcessGenerator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geometry/include/ActsExamples/Geometry/VolumeAssociationTest.hpp b/Examples/Algorithms/Geometry/include/ActsExamples/Geometry/VolumeAssociationTest.hpp index 897415af846..c86720c340a 100644 --- a/Examples/Algorithms/Geometry/include/ActsExamples/Geometry/VolumeAssociationTest.hpp +++ b/Examples/Algorithms/Geometry/include/ActsExamples/Geometry/VolumeAssociationTest.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Geometry/src/VolumeAssociationTest.cpp b/Examples/Algorithms/Geometry/src/VolumeAssociationTest.cpp index b1bb86dd278..8ee44a77764 100644 --- a/Examples/Algorithms/Geometry/src/VolumeAssociationTest.cpp +++ b/Examples/Algorithms/Geometry/src/VolumeAssociationTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geometry/VolumeAssociationTest.hpp" diff --git a/Examples/Algorithms/HepMC/include/ActsExamples/HepMC/HepMCProcessExtractor.hpp b/Examples/Algorithms/HepMC/include/ActsExamples/HepMC/HepMCProcessExtractor.hpp index c89aa551346..47f192d59c6 100644 --- a/Examples/Algorithms/HepMC/include/ActsExamples/HepMC/HepMCProcessExtractor.hpp +++ b/Examples/Algorithms/HepMC/include/ActsExamples/HepMC/HepMCProcessExtractor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/HepMC/src/HepMCProcessExtractor.cpp b/Examples/Algorithms/HepMC/src/HepMCProcessExtractor.cpp index 9faa55eecc6..eae5c98bfb4 100644 --- a/Examples/Algorithms/HepMC/src/HepMCProcessExtractor.cpp +++ b/Examples/Algorithms/HepMC/src/HepMCProcessExtractor.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/HepMC/HepMCProcessExtractor.hpp" diff --git a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/CoreMaterialMapping.hpp b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/CoreMaterialMapping.hpp index 9233f67ad5b..8fa2e31f831 100644 --- a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/CoreMaterialMapping.hpp +++ b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/CoreMaterialMapping.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/IMaterialWriter.hpp b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/IMaterialWriter.hpp index 94d7c178cbc..2596b537052 100644 --- a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/IMaterialWriter.hpp +++ b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/IMaterialWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MappingMaterialDecorator.hpp b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MappingMaterialDecorator.hpp index 7a260c5c8ef..565b04c9ae3 100644 --- a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MappingMaterialDecorator.hpp +++ b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MappingMaterialDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialMapping.hpp b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialMapping.hpp index 2f1e1e7334e..762187683f7 100644 --- a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialMapping.hpp +++ b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialMapping.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialMappingOptions.hpp b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialMappingOptions.hpp index 96152b87c77..86ed9778e45 100644 --- a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialMappingOptions.hpp +++ b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialMappingOptions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialValidation.hpp b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialValidation.hpp index 35d73ba4ab4..a629902250a 100644 --- a/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialValidation.hpp +++ b/Examples/Algorithms/MaterialMapping/include/ActsExamples/MaterialMapping/MaterialValidation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/MaterialMapping/src/CoreMaterialMapping.cpp b/Examples/Algorithms/MaterialMapping/src/CoreMaterialMapping.cpp index b8d4e5df30d..e15a641bedc 100644 --- a/Examples/Algorithms/MaterialMapping/src/CoreMaterialMapping.cpp +++ b/Examples/Algorithms/MaterialMapping/src/CoreMaterialMapping.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/MaterialMapping/CoreMaterialMapping.hpp" diff --git a/Examples/Algorithms/MaterialMapping/src/MaterialMapping.cpp b/Examples/Algorithms/MaterialMapping/src/MaterialMapping.cpp index 6e40e27c5b9..c08d7d39456 100644 --- a/Examples/Algorithms/MaterialMapping/src/MaterialMapping.cpp +++ b/Examples/Algorithms/MaterialMapping/src/MaterialMapping.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/MaterialMapping/MaterialMapping.hpp" diff --git a/Examples/Algorithms/MaterialMapping/src/MaterialValidation.cpp b/Examples/Algorithms/MaterialMapping/src/MaterialValidation.cpp index 19d5841ef09..c75c654ed2b 100644 --- a/Examples/Algorithms/MaterialMapping/src/MaterialValidation.cpp +++ b/Examples/Algorithms/MaterialMapping/src/MaterialValidation.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/MaterialMapping/MaterialValidation.hpp" diff --git a/Examples/Algorithms/Printers/ActsExamples/Printers/ParticlesPrinter.cpp b/Examples/Algorithms/Printers/ActsExamples/Printers/ParticlesPrinter.cpp index ef09a37a65d..a03cc280043 100644 --- a/Examples/Algorithms/Printers/ActsExamples/Printers/ParticlesPrinter.cpp +++ b/Examples/Algorithms/Printers/ActsExamples/Printers/ParticlesPrinter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ParticlesPrinter.hpp" diff --git a/Examples/Algorithms/Printers/ActsExamples/Printers/ParticlesPrinter.hpp b/Examples/Algorithms/Printers/ActsExamples/Printers/ParticlesPrinter.hpp index 59983b8e0f7..6aa4fd785a9 100644 --- a/Examples/Algorithms/Printers/ActsExamples/Printers/ParticlesPrinter.hpp +++ b/Examples/Algorithms/Printers/ActsExamples/Printers/ParticlesPrinter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Printers/ActsExamples/Printers/TrackParametersPrinter.cpp b/Examples/Algorithms/Printers/ActsExamples/Printers/TrackParametersPrinter.cpp index 1b90ad08ce0..25660c04212 100644 --- a/Examples/Algorithms/Printers/ActsExamples/Printers/TrackParametersPrinter.cpp +++ b/Examples/Algorithms/Printers/ActsExamples/Printers/TrackParametersPrinter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "TrackParametersPrinter.hpp" diff --git a/Examples/Algorithms/Printers/ActsExamples/Printers/TrackParametersPrinter.hpp b/Examples/Algorithms/Printers/ActsExamples/Printers/TrackParametersPrinter.hpp index 247ae668796..b5f031694ff 100644 --- a/Examples/Algorithms/Printers/ActsExamples/Printers/TrackParametersPrinter.hpp +++ b/Examples/Algorithms/Printers/ActsExamples/Printers/TrackParametersPrinter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/PropagationAlgorithm.hpp b/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/PropagationAlgorithm.hpp index 1cd006d3b45..cc1ebe6815d 100644 --- a/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/PropagationAlgorithm.hpp +++ b/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/PropagationAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/PropagatorInterface.hpp b/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/PropagatorInterface.hpp index 48578e26c9d..c063a2a1a48 100644 --- a/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/PropagatorInterface.hpp +++ b/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/PropagatorInterface.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/SimHitToSummaryConversion.hpp b/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/SimHitToSummaryConversion.hpp index 8782e583f12..60cf993c29f 100644 --- a/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/SimHitToSummaryConversion.hpp +++ b/Examples/Algorithms/Propagation/include/ActsExamples/Propagation/SimHitToSummaryConversion.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Propagation/src/PropagationAlgorithm.cpp b/Examples/Algorithms/Propagation/src/PropagationAlgorithm.cpp index 7c426557b56..1acd1de0814 100644 --- a/Examples/Algorithms/Propagation/src/PropagationAlgorithm.cpp +++ b/Examples/Algorithms/Propagation/src/PropagationAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Propagation/PropagationAlgorithm.hpp" diff --git a/Examples/Algorithms/Propagation/src/SimHitToSummaryConversion.cpp b/Examples/Algorithms/Propagation/src/SimHitToSummaryConversion.cpp index b580fa86814..2d90a2bc8ac 100644 --- a/Examples/Algorithms/Propagation/src/SimHitToSummaryConversion.cpp +++ b/Examples/Algorithms/Propagation/src/SimHitToSummaryConversion.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Propagation/SimHitToSummaryConversion.hpp" diff --git a/Examples/Algorithms/Traccc/include/ActsExamples/Traccc/DetrayPropagator.hpp b/Examples/Algorithms/Traccc/include/ActsExamples/Traccc/DetrayPropagator.hpp index 73984fcbf1a..d27902c7739 100644 --- a/Examples/Algorithms/Traccc/include/ActsExamples/Traccc/DetrayPropagator.hpp +++ b/Examples/Algorithms/Traccc/include/ActsExamples/Traccc/DetrayPropagator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Traccc/include/ActsExamples/Traccc/DetrayStore.hpp b/Examples/Algorithms/Traccc/include/ActsExamples/Traccc/DetrayStore.hpp index c2ccb9f6119..199a0dbc5c1 100644 --- a/Examples/Algorithms/Traccc/include/ActsExamples/Traccc/DetrayStore.hpp +++ b/Examples/Algorithms/Traccc/include/ActsExamples/Traccc/DetrayStore.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/DefaultHoughFunctions.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/DefaultHoughFunctions.hpp index f158d736f61..a60c1dfb470 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/DefaultHoughFunctions.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/DefaultHoughFunctions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Utilities/Result.hpp" diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/GbtsSeedingAlgorithm.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/GbtsSeedingAlgorithm.hpp index 026021e0cdf..b931c72f979 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/GbtsSeedingAlgorithm.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/GbtsSeedingAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // basing off of SeedingOrtho diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/HoughTransformSeeder.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/HoughTransformSeeder.hpp index 0714d144abd..6ea2400a712 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/HoughTransformSeeder.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/HoughTransformSeeder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // @file HoughTransformSeeder.hpp // @author Riley Xu then modified to ACTS by Jahred Adelman diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/HoughVectors.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/HoughVectors.hpp index 11ceff86057..3e0e54a41e1 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/HoughVectors.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/HoughVectors.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/MuonHoughSeeder.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/MuonHoughSeeder.hpp index 8be6d4722ff..588e7dbda51 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/MuonHoughSeeder.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/MuonHoughSeeder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingAlgorithm.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingAlgorithm.hpp index d25138f9086..61042cd5d09 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingAlgorithm.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingAlgorithmHashing.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingAlgorithmHashing.hpp index 44bbda53f12..194ef4944a1 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingAlgorithmHashing.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingAlgorithmHashing.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingOrthogonalAlgorithm.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingOrthogonalAlgorithm.hpp index 002ad3a08d3..527860ee556 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingOrthogonalAlgorithm.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SeedingOrthogonalAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SpacePointMaker.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SpacePointMaker.hpp index 80add3cc4f2..0d5604e5ec4 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SpacePointMaker.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/SpacePointMaker.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/TrackFindingAlgorithm.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/TrackFindingAlgorithm.hpp index 74c13f9a5dd..999bf7ef7fe 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/TrackFindingAlgorithm.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/TrackFindingAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/TrackParamsEstimationAlgorithm.hpp b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/TrackParamsEstimationAlgorithm.hpp index 0111aa7fbcd..1df8dc87700 100644 --- a/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/TrackParamsEstimationAlgorithm.hpp +++ b/Examples/Algorithms/TrackFinding/include/ActsExamples/TrackFinding/TrackParamsEstimationAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFinding/src/GbtsSeedingAlgorithm.cpp b/Examples/Algorithms/TrackFinding/src/GbtsSeedingAlgorithm.cpp index c0151d13ee2..835b027862f 100644 --- a/Examples/Algorithms/TrackFinding/src/GbtsSeedingAlgorithm.cpp +++ b/Examples/Algorithms/TrackFinding/src/GbtsSeedingAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/GbtsSeedingAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/HoughTransformSeeder.cpp b/Examples/Algorithms/TrackFinding/src/HoughTransformSeeder.cpp index acd705d855a..26559797158 100644 --- a/Examples/Algorithms/TrackFinding/src/HoughTransformSeeder.cpp +++ b/Examples/Algorithms/TrackFinding/src/HoughTransformSeeder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/HoughTransformSeeder.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/MuonHoughSeeder.cpp b/Examples/Algorithms/TrackFinding/src/MuonHoughSeeder.cpp index 79553cbd89d..b074d14ab91 100644 --- a/Examples/Algorithms/TrackFinding/src/MuonHoughSeeder.cpp +++ b/Examples/Algorithms/TrackFinding/src/MuonHoughSeeder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/MuonHoughSeeder.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/SeedingAlgorithm.cpp b/Examples/Algorithms/TrackFinding/src/SeedingAlgorithm.cpp index 5c3c6972b2a..40111376a9c 100644 --- a/Examples/Algorithms/TrackFinding/src/SeedingAlgorithm.cpp +++ b/Examples/Algorithms/TrackFinding/src/SeedingAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/SeedingAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/SeedingAlgorithmHashing.cpp b/Examples/Algorithms/TrackFinding/src/SeedingAlgorithmHashing.cpp index 056a782b1e7..ec664aef437 100644 --- a/Examples/Algorithms/TrackFinding/src/SeedingAlgorithmHashing.cpp +++ b/Examples/Algorithms/TrackFinding/src/SeedingAlgorithmHashing.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/SeedingAlgorithmHashing.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/SeedingOrthogonalAlgorithm.cpp b/Examples/Algorithms/TrackFinding/src/SeedingOrthogonalAlgorithm.cpp index 5aee7584550..dcfd995f4e9 100644 --- a/Examples/Algorithms/TrackFinding/src/SeedingOrthogonalAlgorithm.cpp +++ b/Examples/Algorithms/TrackFinding/src/SeedingOrthogonalAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/SeedingOrthogonalAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/SpacePointMaker.cpp b/Examples/Algorithms/TrackFinding/src/SpacePointMaker.cpp index 99de1dfd646..e6fed997a02 100644 --- a/Examples/Algorithms/TrackFinding/src/SpacePointMaker.cpp +++ b/Examples/Algorithms/TrackFinding/src/SpacePointMaker.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/SpacePointMaker.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithm.cpp b/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithm.cpp index 1a99805c496..0a5ae601d20 100644 --- a/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithm.cpp +++ b/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/TrackFindingAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithmFunction.cpp b/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithmFunction.cpp index 0ffef02588f..aaed21134d3 100644 --- a/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithmFunction.cpp +++ b/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithmFunction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Direction.hpp" #include "Acts/EventData/MultiTrajectory.hpp" diff --git a/Examples/Algorithms/TrackFinding/src/TrackParamsEstimationAlgorithm.cpp b/Examples/Algorithms/TrackFinding/src/TrackParamsEstimationAlgorithm.cpp index 590db6f0206..c5dbc8bb625 100644 --- a/Examples/Algorithms/TrackFinding/src/TrackParamsEstimationAlgorithm.cpp +++ b/Examples/Algorithms/TrackFinding/src/TrackParamsEstimationAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFinding/TrackParamsEstimationAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/PrototracksToParameters.hpp b/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/PrototracksToParameters.hpp index f3084eb9691..3f237ac1487 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/PrototracksToParameters.hpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/PrototracksToParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TrackFindingAlgorithmExaTrkX.hpp b/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TrackFindingAlgorithmExaTrkX.hpp index 18f51b5e99c..f85a000aac7 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TrackFindingAlgorithmExaTrkX.hpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TrackFindingAlgorithmExaTrkX.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TrackFindingFromPrototrackAlgorithm.hpp b/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TrackFindingFromPrototrackAlgorithm.hpp index f3271821219..91b3ce43cdb 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TrackFindingFromPrototrackAlgorithm.hpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TrackFindingFromPrototrackAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TruthGraphBuilder.hpp b/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TruthGraphBuilder.hpp index 97c41acc2bb..9217199d0c3 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TruthGraphBuilder.hpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/include/ActsExamples/TrackFindingExaTrkX/TruthGraphBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingExaTrkX/src/PrototracksToParameters.cpp b/Examples/Algorithms/TrackFindingExaTrkX/src/PrototracksToParameters.cpp index 6305210977f..c8d34f71bd2 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/src/PrototracksToParameters.cpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/src/PrototracksToParameters.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFindingExaTrkX/PrototracksToParameters.hpp" diff --git a/Examples/Algorithms/TrackFindingExaTrkX/src/TrackFindingAlgorithmExaTrkX.cpp b/Examples/Algorithms/TrackFindingExaTrkX/src/TrackFindingAlgorithmExaTrkX.cpp index dbc123fc4d3..06fcb1c9438 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/src/TrackFindingAlgorithmExaTrkX.cpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/src/TrackFindingAlgorithmExaTrkX.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFindingExaTrkX/TrackFindingAlgorithmExaTrkX.hpp" diff --git a/Examples/Algorithms/TrackFindingExaTrkX/src/TrackFindingFromPrototrackAlgorithm.cpp b/Examples/Algorithms/TrackFindingExaTrkX/src/TrackFindingFromPrototrackAlgorithm.cpp index bd4b57dd4e5..4eef98a6f83 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/src/TrackFindingFromPrototrackAlgorithm.cpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/src/TrackFindingFromPrototrackAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFindingExaTrkX/TrackFindingFromPrototrackAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp b/Examples/Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp index 489bf042ecd..2247c6126f4 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityDBScanClustering.hpp b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityDBScanClustering.hpp index efe7ef0aa5f..45fe4cb5480 100644 --- a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityDBScanClustering.hpp +++ b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityDBScanClustering.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionML.hpp b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionML.hpp index aafc5c403fc..ea967a23c22 100644 --- a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionML.hpp +++ b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionML.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionMLAlgorithm.hpp b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionMLAlgorithm.hpp index eaf36aff0ce..2e5d22ac01d 100644 --- a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionMLAlgorithm.hpp +++ b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionMLAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionMLDBScanAlgorithm.hpp b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionMLDBScanAlgorithm.hpp index 23c444c2273..6ad387ffdc4 100644 --- a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionMLDBScanAlgorithm.hpp +++ b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/AmbiguityResolutionMLDBScanAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/SeedFilterDBScanClustering.hpp b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/SeedFilterDBScanClustering.hpp index ab6d0aa0438..36674d64800 100644 --- a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/SeedFilterDBScanClustering.hpp +++ b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/SeedFilterDBScanClustering.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/SeedFilterMLAlgorithm.hpp b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/SeedFilterMLAlgorithm.hpp index 122feb693c7..6472a6e8d2b 100644 --- a/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/SeedFilterMLAlgorithm.hpp +++ b/Examples/Algorithms/TrackFindingML/include/ActsExamples/TrackFindingML/SeedFilterMLAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionML.cpp b/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionML.cpp index 6b2d7a52b3d..f3282a15d94 100644 --- a/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionML.cpp +++ b/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionML.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFindingML/AmbiguityResolutionML.hpp" diff --git a/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionMLAlgorithm.cpp b/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionMLAlgorithm.cpp index 0bdbe661c14..ba2e9abeb98 100644 --- a/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionMLAlgorithm.cpp +++ b/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionMLAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFindingML/AmbiguityResolutionMLAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionMLDBScanAlgorithm.cpp b/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionMLDBScanAlgorithm.cpp index cf552639486..6f0c7529208 100644 --- a/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionMLDBScanAlgorithm.cpp +++ b/Examples/Algorithms/TrackFindingML/src/AmbiguityResolutionMLDBScanAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFindingML/AmbiguityResolutionMLDBScanAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFindingML/src/SeedFilterMLAlgorithm.cpp b/Examples/Algorithms/TrackFindingML/src/SeedFilterMLAlgorithm.cpp index fa784a258db..f17fc666ec0 100644 --- a/Examples/Algorithms/TrackFindingML/src/SeedFilterMLAlgorithm.cpp +++ b/Examples/Algorithms/TrackFindingML/src/SeedFilterMLAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFindingML/SeedFilterMLAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/RefittingAlgorithm.hpp b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/RefittingAlgorithm.hpp index 99f01daae5d..19e08f7572f 100644 --- a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/RefittingAlgorithm.hpp +++ b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/RefittingAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/RefittingCalibrator.hpp b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/RefittingCalibrator.hpp index d9a0c80d553..31c196554fe 100644 --- a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/RefittingCalibrator.hpp +++ b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/RefittingCalibrator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/SurfaceSortingAlgorithm.hpp b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/SurfaceSortingAlgorithm.hpp index ac9a70f0656..02f85bff2e1 100644 --- a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/SurfaceSortingAlgorithm.hpp +++ b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/SurfaceSortingAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/TrackFitterFunction.hpp b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/TrackFitterFunction.hpp index 8e00a47b4a7..a58d0a90afb 100644 --- a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/TrackFitterFunction.hpp +++ b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/TrackFitterFunction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/TrackFittingAlgorithm.hpp b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/TrackFittingAlgorithm.hpp index 1ad5522315b..3c3a62c4c4c 100644 --- a/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/TrackFittingAlgorithm.hpp +++ b/Examples/Algorithms/TrackFitting/include/ActsExamples/TrackFitting/TrackFittingAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TrackFitting/src/GlobalChiSquareFitterFunction.cpp b/Examples/Algorithms/TrackFitting/src/GlobalChiSquareFitterFunction.cpp index 4078e3977a5..4f6f6a97d92 100644 --- a/Examples/Algorithms/TrackFitting/src/GlobalChiSquareFitterFunction.cpp +++ b/Examples/Algorithms/TrackFitting/src/GlobalChiSquareFitterFunction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // TODO We still use some Kalman Fitter functionalities. Check for replacement diff --git a/Examples/Algorithms/TrackFitting/src/GsfFitterFunction.cpp b/Examples/Algorithms/TrackFitting/src/GsfFitterFunction.cpp index 8770b77bf52..7e893fff468 100644 --- a/Examples/Algorithms/TrackFitting/src/GsfFitterFunction.cpp +++ b/Examples/Algorithms/TrackFitting/src/GsfFitterFunction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Common.hpp" #include "Acts/Definitions/Direction.hpp" diff --git a/Examples/Algorithms/TrackFitting/src/KalmanFitterFunction.cpp b/Examples/Algorithms/TrackFitting/src/KalmanFitterFunction.cpp index c96abb3ab9a..6a5d2e0059b 100644 --- a/Examples/Algorithms/TrackFitting/src/KalmanFitterFunction.cpp +++ b/Examples/Algorithms/TrackFitting/src/KalmanFitterFunction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Direction.hpp" #include "Acts/Definitions/TrackParametrization.hpp" diff --git a/Examples/Algorithms/TrackFitting/src/RefittingAlgorithm.cpp b/Examples/Algorithms/TrackFitting/src/RefittingAlgorithm.cpp index ac1e41f005f..03aa74fa58f 100644 --- a/Examples/Algorithms/TrackFitting/src/RefittingAlgorithm.cpp +++ b/Examples/Algorithms/TrackFitting/src/RefittingAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFitting/RefittingAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFitting/src/RefittingCalibrator.cpp b/Examples/Algorithms/TrackFitting/src/RefittingCalibrator.cpp index b97a13434c7..b54efd0dcb4 100644 --- a/Examples/Algorithms/TrackFitting/src/RefittingCalibrator.cpp +++ b/Examples/Algorithms/TrackFitting/src/RefittingCalibrator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFitting/RefittingCalibrator.hpp" diff --git a/Examples/Algorithms/TrackFitting/src/SurfaceSortingAlgorithm.cpp b/Examples/Algorithms/TrackFitting/src/SurfaceSortingAlgorithm.cpp index 8eb05bd5d03..040634efbe9 100644 --- a/Examples/Algorithms/TrackFitting/src/SurfaceSortingAlgorithm.cpp +++ b/Examples/Algorithms/TrackFitting/src/SurfaceSortingAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFitting/SurfaceSortingAlgorithm.hpp" diff --git a/Examples/Algorithms/TrackFitting/src/TrackFittingAlgorithm.cpp b/Examples/Algorithms/TrackFitting/src/TrackFittingAlgorithm.cpp index 0a352d71fe6..49ed2c285cd 100644 --- a/Examples/Algorithms/TrackFitting/src/TrackFittingAlgorithm.cpp +++ b/Examples/Algorithms/TrackFitting/src/TrackFittingAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TrackFitting/TrackFittingAlgorithm.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSelector.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSelector.cpp index 9987e7106b2..d9248358160 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSelector.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSelector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/ParticleSelector.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSelector.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSelector.hpp index 8a1bd27ec97..d6c8440fdc7 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSelector.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSelector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSmearing.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSmearing.cpp index 5cacd1bd6be..f0d20f1a370 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSmearing.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSmearing.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/ParticleSmearing.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSmearing.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSmearing.hpp index 68ebad5b14d..3b60f12b099 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSmearing.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/ParticleSmearing.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackModifier.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackModifier.cpp index a0c31c299cb..1f6b3af571e 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackModifier.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackModifier.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/TrackModifier.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackModifier.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackModifier.hpp index 3321b566663..caf77d4ad24 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackModifier.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackModifier.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackParameterSelector.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackParameterSelector.cpp index 27712b00fcf..13b0481e178 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackParameterSelector.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackParameterSelector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/TrackParameterSelector.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackParameterSelector.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackParameterSelector.hpp index e5ce89fd7d4..a22b62319b7 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackParameterSelector.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackParameterSelector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackTruthMatcher.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackTruthMatcher.cpp index dcdb1dc834c..1b77a74008a 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackTruthMatcher.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackTruthMatcher.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/TrackTruthMatcher.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackTruthMatcher.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackTruthMatcher.hpp index ffb0a545540..5f8d89a98b0 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackTruthMatcher.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TrackTruthMatcher.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedSelector.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedSelector.cpp index b97483cac62..49640e5079f 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedSelector.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedSelector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/TruthSeedSelector.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedSelector.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedSelector.hpp index ccdcf515019..1bb12042aa3 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedSelector.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedSelector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedingAlgorithm.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedingAlgorithm.cpp index 10a9d60e1fb..b1e19293a6e 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedingAlgorithm.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedingAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/TruthSeedingAlgorithm.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedingAlgorithm.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedingAlgorithm.hpp index 9f7cca8ac68..a6cb0416160 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedingAlgorithm.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthSeedingAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthTrackFinder.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthTrackFinder.cpp index f738ba4c49f..54953ce7c2b 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthTrackFinder.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthTrackFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/TruthTrackFinder.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthTrackFinder.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthTrackFinder.hpp index 119f176ad41..8f7affb79c3 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthTrackFinder.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthTrackFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthVertexFinder.cpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthVertexFinder.cpp index 527d0ec6750..43742d01855 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthVertexFinder.cpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthVertexFinder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TruthTracking/TruthVertexFinder.hpp" diff --git a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthVertexFinder.hpp b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthVertexFinder.hpp index da699caca71..2ea7d401866 100644 --- a/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthVertexFinder.hpp +++ b/Examples/Algorithms/TruthTracking/ActsExamples/TruthTracking/TruthVertexFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/HitSelector.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/HitSelector.hpp index ee356445670..bb1f7ba24e8 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/HitSelector.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/HitSelector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/MeasurementMapSelector.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/MeasurementMapSelector.hpp index b9042452399..3cf5eace6d9 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/MeasurementMapSelector.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/MeasurementMapSelector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/ProtoTracksToTracks.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/ProtoTracksToTracks.hpp index c2bdcacccc3..f6b83dcd2f9 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/ProtoTracksToTracks.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/ProtoTracksToTracks.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/PrototracksToSeeds.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/PrototracksToSeeds.hpp index 1668a861ab6..d1944ae0f12 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/PrototracksToSeeds.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/PrototracksToSeeds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/SeedsToPrototracks.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/SeedsToPrototracks.hpp index a7192361b53..36b03d42194 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/SeedsToPrototracks.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/SeedsToPrototracks.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TrackSelectorAlgorithm.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TrackSelectorAlgorithm.hpp index 3dbb4bbbadd..a3761fcd010 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TrackSelectorAlgorithm.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TrackSelectorAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TracksToParameters.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TracksToParameters.hpp index 03c9da77084..b498da3fb4a 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TracksToParameters.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TracksToParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TracksToTrajectories.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TracksToTrajectories.hpp index 3bb6c840e5b..761e3d76239 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TracksToTrajectories.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TracksToTrajectories.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TrajectoriesToPrototracks.hpp b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TrajectoriesToPrototracks.hpp index 1d2f0c74c17..5056d83f802 100644 --- a/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TrajectoriesToPrototracks.hpp +++ b/Examples/Algorithms/Utilities/include/ActsExamples/Utilities/TrajectoriesToPrototracks.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Utilities/src/HitSelector.cpp b/Examples/Algorithms/Utilities/src/HitSelector.cpp index 1da7e059483..c9a33b5f65a 100644 --- a/Examples/Algorithms/Utilities/src/HitSelector.cpp +++ b/Examples/Algorithms/Utilities/src/HitSelector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/HitSelector.hpp" diff --git a/Examples/Algorithms/Utilities/src/PrototracksToSeeds.cpp b/Examples/Algorithms/Utilities/src/PrototracksToSeeds.cpp index 73d94825b07..6274e2cbb1e 100644 --- a/Examples/Algorithms/Utilities/src/PrototracksToSeeds.cpp +++ b/Examples/Algorithms/Utilities/src/PrototracksToSeeds.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/PrototracksToSeeds.hpp" diff --git a/Examples/Algorithms/Utilities/src/PrototracksToTracks.cpp b/Examples/Algorithms/Utilities/src/PrototracksToTracks.cpp index 9506bc9b1e8..01e2fac6a38 100644 --- a/Examples/Algorithms/Utilities/src/PrototracksToTracks.cpp +++ b/Examples/Algorithms/Utilities/src/PrototracksToTracks.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/ProtoTracksToTracks.hpp" diff --git a/Examples/Algorithms/Utilities/src/SeedsToPrototracks.cpp b/Examples/Algorithms/Utilities/src/SeedsToPrototracks.cpp index 0761bf6fe7f..e423154805d 100644 --- a/Examples/Algorithms/Utilities/src/SeedsToPrototracks.cpp +++ b/Examples/Algorithms/Utilities/src/SeedsToPrototracks.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/SeedsToPrototracks.hpp" diff --git a/Examples/Algorithms/Utilities/src/TrackSelectorAlgorithm.cpp b/Examples/Algorithms/Utilities/src/TrackSelectorAlgorithm.cpp index 8db10634a24..25bee1c19fb 100644 --- a/Examples/Algorithms/Utilities/src/TrackSelectorAlgorithm.cpp +++ b/Examples/Algorithms/Utilities/src/TrackSelectorAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/TrackSelectorAlgorithm.hpp" diff --git a/Examples/Algorithms/Utilities/src/TracksToParameters.cpp b/Examples/Algorithms/Utilities/src/TracksToParameters.cpp index e8111fa9593..75bdd747f58 100644 --- a/Examples/Algorithms/Utilities/src/TracksToParameters.cpp +++ b/Examples/Algorithms/Utilities/src/TracksToParameters.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/TracksToParameters.hpp" diff --git a/Examples/Algorithms/Utilities/src/TracksToTrajectories.cpp b/Examples/Algorithms/Utilities/src/TracksToTrajectories.cpp index 99835202091..3cdd1cd3628 100644 --- a/Examples/Algorithms/Utilities/src/TracksToTrajectories.cpp +++ b/Examples/Algorithms/Utilities/src/TracksToTrajectories.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/TracksToTrajectories.hpp" diff --git a/Examples/Algorithms/Utilities/src/TrajectoriesToPrototracks.cpp b/Examples/Algorithms/Utilities/src/TrajectoriesToPrototracks.cpp index 0f458707139..cd961ab6141 100644 --- a/Examples/Algorithms/Utilities/src/TrajectoriesToPrototracks.cpp +++ b/Examples/Algorithms/Utilities/src/TrajectoriesToPrototracks.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/TrajectoriesToPrototracks.hpp" diff --git a/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/AdaptiveMultiVertexFinderAlgorithm.hpp b/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/AdaptiveMultiVertexFinderAlgorithm.hpp index 519c9e3e911..25047f125cb 100644 --- a/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/AdaptiveMultiVertexFinderAlgorithm.hpp +++ b/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/AdaptiveMultiVertexFinderAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/IterativeVertexFinderAlgorithm.hpp b/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/IterativeVertexFinderAlgorithm.hpp index 85410f8ebb3..9a27b527d7b 100644 --- a/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/IterativeVertexFinderAlgorithm.hpp +++ b/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/IterativeVertexFinderAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/SingleSeedVertexFinderAlgorithm.hpp b/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/SingleSeedVertexFinderAlgorithm.hpp index e5e828dd88d..e11eac25c86 100644 --- a/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/SingleSeedVertexFinderAlgorithm.hpp +++ b/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/SingleSeedVertexFinderAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/VertexFitterAlgorithm.hpp b/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/VertexFitterAlgorithm.hpp index 4050e542155..12478535b7d 100644 --- a/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/VertexFitterAlgorithm.hpp +++ b/Examples/Algorithms/Vertexing/include/ActsExamples/Vertexing/VertexFitterAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Vertexing/src/AdaptiveMultiVertexFinderAlgorithm.cpp b/Examples/Algorithms/Vertexing/src/AdaptiveMultiVertexFinderAlgorithm.cpp index c4a471669d6..9ef72913e37 100644 --- a/Examples/Algorithms/Vertexing/src/AdaptiveMultiVertexFinderAlgorithm.cpp +++ b/Examples/Algorithms/Vertexing/src/AdaptiveMultiVertexFinderAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Vertexing/AdaptiveMultiVertexFinderAlgorithm.hpp" diff --git a/Examples/Algorithms/Vertexing/src/IterativeVertexFinderAlgorithm.cpp b/Examples/Algorithms/Vertexing/src/IterativeVertexFinderAlgorithm.cpp index 7ffa7abdd5f..03d6c4f6ff7 100644 --- a/Examples/Algorithms/Vertexing/src/IterativeVertexFinderAlgorithm.cpp +++ b/Examples/Algorithms/Vertexing/src/IterativeVertexFinderAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Vertexing/IterativeVertexFinderAlgorithm.hpp" diff --git a/Examples/Algorithms/Vertexing/src/SingleSeedVertexFinderAlgorithm.cpp b/Examples/Algorithms/Vertexing/src/SingleSeedVertexFinderAlgorithm.cpp index 12350448cfd..aa571726f5e 100644 --- a/Examples/Algorithms/Vertexing/src/SingleSeedVertexFinderAlgorithm.cpp +++ b/Examples/Algorithms/Vertexing/src/SingleSeedVertexFinderAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Vertexing/SingleSeedVertexFinderAlgorithm.hpp" diff --git a/Examples/Algorithms/Vertexing/src/TruthVertexSeeder.cpp b/Examples/Algorithms/Vertexing/src/TruthVertexSeeder.cpp index 89a3ba90d91..24d54308ac5 100644 --- a/Examples/Algorithms/Vertexing/src/TruthVertexSeeder.cpp +++ b/Examples/Algorithms/Vertexing/src/TruthVertexSeeder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "TruthVertexSeeder.hpp" diff --git a/Examples/Algorithms/Vertexing/src/TruthVertexSeeder.hpp b/Examples/Algorithms/Vertexing/src/TruthVertexSeeder.hpp index 27a27425c4b..d7b4c85eaf3 100644 --- a/Examples/Algorithms/Vertexing/src/TruthVertexSeeder.hpp +++ b/Examples/Algorithms/Vertexing/src/TruthVertexSeeder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Algorithms/Vertexing/src/VertexFitterAlgorithm.cpp b/Examples/Algorithms/Vertexing/src/VertexFitterAlgorithm.cpp index 22b14b62a07..373787361d1 100644 --- a/Examples/Algorithms/Vertexing/src/VertexFitterAlgorithm.cpp +++ b/Examples/Algorithms/Vertexing/src/VertexFitterAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Vertexing/VertexFitterAlgorithm.hpp" diff --git a/Examples/Algorithms/Vertexing/src/VertexingHelpers.hpp b/Examples/Algorithms/Vertexing/src/VertexingHelpers.hpp index 6c0a7e12815..9d3afe19646 100644 --- a/Examples/Algorithms/Vertexing/src/VertexingHelpers.hpp +++ b/Examples/Algorithms/Vertexing/src/VertexingHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/AlignedDetector.hpp b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/AlignedDetector.hpp index 82e4e0f7806..66a0f3b6b42 100644 --- a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/AlignedDetector.hpp +++ b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/AlignedDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/AlignmentDecorator.hpp b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/AlignmentDecorator.hpp index 379ff8d6868..1edf7e03d06 100644 --- a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/AlignmentDecorator.hpp +++ b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/AlignmentDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/ExternalAlignmentDecorator.hpp b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/ExternalAlignmentDecorator.hpp index 0130e4a45b6..de3f58b7e0a 100644 --- a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/ExternalAlignmentDecorator.hpp +++ b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/ExternalAlignmentDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/ExternallyAlignedDetectorElement.hpp b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/ExternallyAlignedDetectorElement.hpp index 7a4310fede1..7456b9bb61e 100644 --- a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/ExternallyAlignedDetectorElement.hpp +++ b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/ExternallyAlignedDetectorElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/InternalAlignmentDecorator.hpp b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/InternalAlignmentDecorator.hpp index 49084d443ff..e9af06d7755 100644 --- a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/InternalAlignmentDecorator.hpp +++ b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/InternalAlignmentDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/InternallyAlignedDetectorElement.hpp b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/InternallyAlignedDetectorElement.hpp index 183bff9fbed..aaa1c8d9b98 100644 --- a/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/InternallyAlignedDetectorElement.hpp +++ b/Examples/Detectors/ContextualDetector/include/ActsExamples/ContextualDetector/InternallyAlignedDetectorElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/ContextualDetector/src/AlignedDetector.cpp b/Examples/Detectors/ContextualDetector/src/AlignedDetector.cpp index e6459c2dbf4..044cc943a81 100644 --- a/Examples/Detectors/ContextualDetector/src/AlignedDetector.cpp +++ b/Examples/Detectors/ContextualDetector/src/AlignedDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/ContextualDetector/AlignedDetector.hpp" diff --git a/Examples/Detectors/ContextualDetector/src/ExternalAlignmentDecorator.cpp b/Examples/Detectors/ContextualDetector/src/ExternalAlignmentDecorator.cpp index 065ef4c6e2f..bca56249419 100644 --- a/Examples/Detectors/ContextualDetector/src/ExternalAlignmentDecorator.cpp +++ b/Examples/Detectors/ContextualDetector/src/ExternalAlignmentDecorator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/ContextualDetector/ExternalAlignmentDecorator.hpp" diff --git a/Examples/Detectors/ContextualDetector/src/InternalAlignmentDecorator.cpp b/Examples/Detectors/ContextualDetector/src/InternalAlignmentDecorator.cpp index 1cfaa44de8d..0ce8dd80f1c 100644 --- a/Examples/Detectors/ContextualDetector/src/InternalAlignmentDecorator.cpp +++ b/Examples/Detectors/ContextualDetector/src/InternalAlignmentDecorator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/ContextualDetector/InternalAlignmentDecorator.hpp" diff --git a/Examples/Detectors/DD4hepDetector/include/ActsExamples/DD4hepDetector/DD4hepDetector.hpp b/Examples/Detectors/DD4hepDetector/include/ActsExamples/DD4hepDetector/DD4hepDetector.hpp index 899df36fad9..fec8cfdd052 100644 --- a/Examples/Detectors/DD4hepDetector/include/ActsExamples/DD4hepDetector/DD4hepDetector.hpp +++ b/Examples/Detectors/DD4hepDetector/include/ActsExamples/DD4hepDetector/DD4hepDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/DD4hepDetector/include/ActsExamples/DD4hepDetector/DD4hepGeometryService.hpp b/Examples/Detectors/DD4hepDetector/include/ActsExamples/DD4hepDetector/DD4hepGeometryService.hpp index cfef3becff0..6fb17141814 100644 --- a/Examples/Detectors/DD4hepDetector/include/ActsExamples/DD4hepDetector/DD4hepGeometryService.hpp +++ b/Examples/Detectors/DD4hepDetector/include/ActsExamples/DD4hepDetector/DD4hepGeometryService.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/DD4hepDetector/src/DD4hepDetector.cpp b/Examples/Detectors/DD4hepDetector/src/DD4hepDetector.cpp index e3b607d5fc5..a6494ce0860 100644 --- a/Examples/Detectors/DD4hepDetector/src/DD4hepDetector.cpp +++ b/Examples/Detectors/DD4hepDetector/src/DD4hepDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/DD4hepDetector/DD4hepDetector.hpp" diff --git a/Examples/Detectors/DD4hepDetector/src/DD4hepGeometryService.cpp b/Examples/Detectors/DD4hepDetector/src/DD4hepGeometryService.cpp index 780fbca385a..6856ff94a5c 100644 --- a/Examples/Detectors/DD4hepDetector/src/DD4hepGeometryService.cpp +++ b/Examples/Detectors/DD4hepDetector/src/DD4hepGeometryService.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/DD4hepDetector/DD4hepGeometryService.hpp" diff --git a/Examples/Detectors/Geant4Detector/include/ActsExamples/Geant4Detector/Geant4Detector.hpp b/Examples/Detectors/Geant4Detector/include/ActsExamples/Geant4Detector/Geant4Detector.hpp index 1899a1e035a..5a948c3f3b5 100644 --- a/Examples/Detectors/Geant4Detector/include/ActsExamples/Geant4Detector/Geant4Detector.hpp +++ b/Examples/Detectors/Geant4Detector/include/ActsExamples/Geant4Detector/Geant4Detector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/Geant4Detector/src/Geant4Detector.cpp b/Examples/Detectors/Geant4Detector/src/Geant4Detector.cpp index 828304e342c..e3b52f36cd3 100644 --- a/Examples/Detectors/Geant4Detector/src/Geant4Detector.cpp +++ b/Examples/Detectors/Geant4Detector/src/Geant4Detector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Geant4Detector/Geant4Detector.hpp" diff --git a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/BuildGenericDetector.hpp b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/BuildGenericDetector.hpp index 9d42ad9441c..c5968ef4ca3 100644 --- a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/BuildGenericDetector.hpp +++ b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/BuildGenericDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/GenericDetector.hpp b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/GenericDetector.hpp index 0279b91efef..c487f43d3a6 100644 --- a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/GenericDetector.hpp +++ b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/GenericDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/GenericDetectorElement.hpp b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/GenericDetectorElement.hpp index c9d335a6ab8..97d2f7fad3e 100644 --- a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/GenericDetectorElement.hpp +++ b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/GenericDetectorElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/LayerBuilderT.hpp b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/LayerBuilderT.hpp index c317a9437e7..642b4a63ffc 100644 --- a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/LayerBuilderT.hpp +++ b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/LayerBuilderT.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/ProtoLayerCreatorT.hpp b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/ProtoLayerCreatorT.hpp index 8eef808dbb9..fc4fa4c1459 100644 --- a/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/ProtoLayerCreatorT.hpp +++ b/Examples/Detectors/GenericDetector/include/ActsExamples/GenericDetector/ProtoLayerCreatorT.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/GenericDetector/src/BuildGenericDetector.cpp b/Examples/Detectors/GenericDetector/src/BuildGenericDetector.cpp index cd232545eab..5a21d36dd65 100644 --- a/Examples/Detectors/GenericDetector/src/BuildGenericDetector.cpp +++ b/Examples/Detectors/GenericDetector/src/BuildGenericDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/GenericDetector/BuildGenericDetector.hpp" diff --git a/Examples/Detectors/GenericDetector/src/GenericDetector.cpp b/Examples/Detectors/GenericDetector/src/GenericDetector.cpp index 044f2e209fa..6a152128edc 100644 --- a/Examples/Detectors/GenericDetector/src/GenericDetector.cpp +++ b/Examples/Detectors/GenericDetector/src/GenericDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/GenericDetector/GenericDetector.hpp" diff --git a/Examples/Detectors/GenericDetector/src/GenericDetectorElement.cpp b/Examples/Detectors/GenericDetector/src/GenericDetectorElement.cpp index 2d855856334..def22d443d3 100644 --- a/Examples/Detectors/GenericDetector/src/GenericDetectorElement.cpp +++ b/Examples/Detectors/GenericDetector/src/GenericDetectorElement.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/GenericDetector/GenericDetectorElement.hpp" diff --git a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/FieldMapRootIo.hpp b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/FieldMapRootIo.hpp index 46a565660fc..b5a523c2c0e 100644 --- a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/FieldMapRootIo.hpp +++ b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/FieldMapRootIo.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/FieldMapTextIo.hpp b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/FieldMapTextIo.hpp index eb7149d9e34..ed191226705 100644 --- a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/FieldMapTextIo.hpp +++ b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/FieldMapTextIo.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/MagneticField.hpp b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/MagneticField.hpp index 33206c937a3..e694f0fdd35 100644 --- a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/MagneticField.hpp +++ b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/MagneticField.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/ScalableBField.hpp b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/ScalableBField.hpp index 0cc5d9600f6..bd7f7af38df 100644 --- a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/ScalableBField.hpp +++ b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/ScalableBField.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/ScalableBFieldService.hpp b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/ScalableBFieldService.hpp index e9ee99741cc..a228eccfe55 100644 --- a/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/ScalableBFieldService.hpp +++ b/Examples/Detectors/MagneticField/include/ActsExamples/MagneticField/ScalableBFieldService.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/MagneticField/src/FieldMapRootIo.cpp b/Examples/Detectors/MagneticField/src/FieldMapRootIo.cpp index c7663ad937a..bcc93238364 100644 --- a/Examples/Detectors/MagneticField/src/FieldMapRootIo.cpp +++ b/Examples/Detectors/MagneticField/src/FieldMapRootIo.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/MagneticField/FieldMapRootIo.hpp" diff --git a/Examples/Detectors/MagneticField/src/FieldMapTextIo.cpp b/Examples/Detectors/MagneticField/src/FieldMapTextIo.cpp index a04738df738..d298ec046b2 100644 --- a/Examples/Detectors/MagneticField/src/FieldMapTextIo.cpp +++ b/Examples/Detectors/MagneticField/src/FieldMapTextIo.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/MagneticField/FieldMapTextIo.hpp" diff --git a/Examples/Detectors/MagneticField/src/ScalableBFieldService.cpp b/Examples/Detectors/MagneticField/src/ScalableBFieldService.cpp index ab22b8fed54..0d1cb1bfa6a 100644 --- a/Examples/Detectors/MagneticField/src/ScalableBFieldService.cpp +++ b/Examples/Detectors/MagneticField/src/ScalableBFieldService.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/MagneticField/ScalableBFieldService.hpp" diff --git a/Examples/Detectors/MuonSpectrometerMockupDetector/include/ActsExamples/MuonSpectrometerMockupDetector/MockupSectorBuilder.hpp b/Examples/Detectors/MuonSpectrometerMockupDetector/include/ActsExamples/MuonSpectrometerMockupDetector/MockupSectorBuilder.hpp index 8e0b37179f2..62ae610224e 100644 --- a/Examples/Detectors/MuonSpectrometerMockupDetector/include/ActsExamples/MuonSpectrometerMockupDetector/MockupSectorBuilder.hpp +++ b/Examples/Detectors/MuonSpectrometerMockupDetector/include/ActsExamples/MuonSpectrometerMockupDetector/MockupSectorBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/MuonSpectrometerMockupDetector/src/MockupSectorBuilder.cpp b/Examples/Detectors/MuonSpectrometerMockupDetector/src/MockupSectorBuilder.cpp index 7b3323fe7af..bdfe8fe532c 100644 --- a/Examples/Detectors/MuonSpectrometerMockupDetector/src/MockupSectorBuilder.cpp +++ b/Examples/Detectors/MuonSpectrometerMockupDetector/src/MockupSectorBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/MuonSpectrometerMockupDetector/MockupSectorBuilder.hpp" diff --git a/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/JsonTGeoDetectorConfig.hpp b/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/JsonTGeoDetectorConfig.hpp index 634127fc9b3..eb038572fcf 100644 --- a/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/JsonTGeoDetectorConfig.hpp +++ b/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/JsonTGeoDetectorConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/TGeoDetector.hpp b/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/TGeoDetector.hpp index cb0b8d90f7a..8982e3dbfb9 100644 --- a/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/TGeoDetector.hpp +++ b/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/TGeoDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/TGeoITkModuleSplitter.hpp b/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/TGeoITkModuleSplitter.hpp index a08dbebd661..ab928752f49 100644 --- a/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/TGeoITkModuleSplitter.hpp +++ b/Examples/Detectors/TGeoDetector/include/ActsExamples/TGeoDetector/TGeoITkModuleSplitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/TGeoDetector/src/TGeoDetector.cpp b/Examples/Detectors/TGeoDetector/src/TGeoDetector.cpp index 77edfa78e1a..aeed881eb1e 100644 --- a/Examples/Detectors/TGeoDetector/src/TGeoDetector.cpp +++ b/Examples/Detectors/TGeoDetector/src/TGeoDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TGeoDetector/TGeoDetector.hpp" diff --git a/Examples/Detectors/TGeoDetector/src/TGeoITkModuleSplitter.cpp b/Examples/Detectors/TGeoDetector/src/TGeoITkModuleSplitter.cpp index f1dc1c5f5cf..0aafbe2d7d7 100644 --- a/Examples/Detectors/TGeoDetector/src/TGeoITkModuleSplitter.cpp +++ b/Examples/Detectors/TGeoDetector/src/TGeoITkModuleSplitter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TGeoDetector/TGeoITkModuleSplitter.hpp" diff --git a/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/BuildTelescopeDetector.hpp b/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/BuildTelescopeDetector.hpp index 34656cc0a32..9e3b5977a6a 100644 --- a/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/BuildTelescopeDetector.hpp +++ b/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/BuildTelescopeDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/TelescopeDetector.hpp b/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/TelescopeDetector.hpp index 19bb2b700d1..31095f42636 100644 --- a/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/TelescopeDetector.hpp +++ b/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/TelescopeDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/TelescopeDetectorElement.hpp b/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/TelescopeDetectorElement.hpp index e56bbf98465..5a5d276cf9e 100644 --- a/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/TelescopeDetectorElement.hpp +++ b/Examples/Detectors/TelescopeDetector/include/ActsExamples/TelescopeDetector/TelescopeDetectorElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Detectors/TelescopeDetector/src/BuildTelescopeDetector.cpp b/Examples/Detectors/TelescopeDetector/src/BuildTelescopeDetector.cpp index 35136911325..7e01a9499bd 100644 --- a/Examples/Detectors/TelescopeDetector/src/BuildTelescopeDetector.cpp +++ b/Examples/Detectors/TelescopeDetector/src/BuildTelescopeDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TelescopeDetector/BuildTelescopeDetector.hpp" diff --git a/Examples/Detectors/TelescopeDetector/src/TelescopeDetector.cpp b/Examples/Detectors/TelescopeDetector/src/TelescopeDetector.cpp index 47dcf82bbd9..7a5e262067a 100644 --- a/Examples/Detectors/TelescopeDetector/src/TelescopeDetector.cpp +++ b/Examples/Detectors/TelescopeDetector/src/TelescopeDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TelescopeDetector/TelescopeDetector.hpp" diff --git a/Examples/Detectors/TelescopeDetector/src/TelescopeDetectorElement.cpp b/Examples/Detectors/TelescopeDetector/src/TelescopeDetectorElement.cpp index dfea5b43886..22421064ef1 100644 --- a/Examples/Detectors/TelescopeDetector/src/TelescopeDetectorElement.cpp +++ b/Examples/Detectors/TelescopeDetector/src/TelescopeDetectorElement.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/TelescopeDetector/TelescopeDetectorElement.hpp" diff --git a/Examples/Framework/ML/include/ActsExamples/EventData/NeuralCalibrator.hpp b/Examples/Framework/ML/include/ActsExamples/EventData/NeuralCalibrator.hpp index 8b2aee291b0..9fa7f45e8a1 100644 --- a/Examples/Framework/ML/include/ActsExamples/EventData/NeuralCalibrator.hpp +++ b/Examples/Framework/ML/include/ActsExamples/EventData/NeuralCalibrator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/ML/src/NeuralCalibrator.cpp b/Examples/Framework/ML/src/NeuralCalibrator.cpp index 8b0e07f1a62..ee1a8566aa4 100644 --- a/Examples/Framework/ML/src/NeuralCalibrator.cpp +++ b/Examples/Framework/ML/src/NeuralCalibrator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/EventData/NeuralCalibrator.hpp" diff --git a/Examples/Framework/include/ActsExamples/EventData/AverageSimHits.hpp b/Examples/Framework/include/ActsExamples/EventData/AverageSimHits.hpp index a88ca90aea9..31756f4620a 100644 --- a/Examples/Framework/include/ActsExamples/EventData/AverageSimHits.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/AverageSimHits.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/Cluster.hpp b/Examples/Framework/include/ActsExamples/EventData/Cluster.hpp index f69e74da587..d0e7bed55d6 100644 --- a/Examples/Framework/include/ActsExamples/EventData/Cluster.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/Cluster.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/DriftCircle.hpp b/Examples/Framework/include/ActsExamples/EventData/DriftCircle.hpp index 38ba7513f9f..88cad84fffe 100644 --- a/Examples/Framework/include/ActsExamples/EventData/DriftCircle.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/DriftCircle.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/ExtractedSimulationProcess.hpp b/Examples/Framework/include/ActsExamples/EventData/ExtractedSimulationProcess.hpp index 2005df06a94..1d323089f0c 100644 --- a/Examples/Framework/include/ActsExamples/EventData/ExtractedSimulationProcess.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/ExtractedSimulationProcess.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/GeometryContainers.hpp b/Examples/Framework/include/ActsExamples/EventData/GeometryContainers.hpp index e3007901bfc..e6cec85a47f 100644 --- a/Examples/Framework/include/ActsExamples/EventData/GeometryContainers.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/GeometryContainers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/Graph.hpp b/Examples/Framework/include/ActsExamples/EventData/Graph.hpp index 5014f6548c4..a7a1e504c85 100644 --- a/Examples/Framework/include/ActsExamples/EventData/Graph.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/Graph.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/Index.hpp b/Examples/Framework/include/ActsExamples/EventData/Index.hpp index 6502c246065..46e431ea76a 100644 --- a/Examples/Framework/include/ActsExamples/EventData/Index.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/Index.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/IndexSourceLink.hpp b/Examples/Framework/include/ActsExamples/EventData/IndexSourceLink.hpp index 75481f504f1..cc2e6249a2e 100644 --- a/Examples/Framework/include/ActsExamples/EventData/IndexSourceLink.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/IndexSourceLink.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/Measurement.hpp b/Examples/Framework/include/ActsExamples/EventData/Measurement.hpp index fc3aacc84e7..5d57c82b531 100644 --- a/Examples/Framework/include/ActsExamples/EventData/Measurement.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/Measurement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/MeasurementCalibration.hpp b/Examples/Framework/include/ActsExamples/EventData/MeasurementCalibration.hpp index 576b09f9ad5..248edacc032 100644 --- a/Examples/Framework/include/ActsExamples/EventData/MeasurementCalibration.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/MeasurementCalibration.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/MeasurementConcept.hpp b/Examples/Framework/include/ActsExamples/EventData/MeasurementConcept.hpp index 16455a6d810..f95ab117728 100644 --- a/Examples/Framework/include/ActsExamples/EventData/MeasurementConcept.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/MeasurementConcept.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/MuonSimHit.hpp b/Examples/Framework/include/ActsExamples/EventData/MuonSimHit.hpp index 9a3144eeb4e..09bba217b03 100644 --- a/Examples/Framework/include/ActsExamples/EventData/MuonSimHit.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/MuonSimHit.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/PropagationSummary.hpp b/Examples/Framework/include/ActsExamples/EventData/PropagationSummary.hpp index e628d757cf9..aa9a736675f 100644 --- a/Examples/Framework/include/ActsExamples/EventData/PropagationSummary.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/PropagationSummary.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/ProtoTrack.hpp b/Examples/Framework/include/ActsExamples/EventData/ProtoTrack.hpp index fcc8c231c06..e091c5e863b 100644 --- a/Examples/Framework/include/ActsExamples/EventData/ProtoTrack.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/ProtoTrack.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/ProtoVertex.hpp b/Examples/Framework/include/ActsExamples/EventData/ProtoVertex.hpp index e0fb02ecb86..6eb8a0214ea 100644 --- a/Examples/Framework/include/ActsExamples/EventData/ProtoVertex.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/ProtoVertex.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/ScalingCalibrator.hpp b/Examples/Framework/include/ActsExamples/EventData/ScalingCalibrator.hpp index 2ab114d9181..706ef5291cd 100644 --- a/Examples/Framework/include/ActsExamples/EventData/ScalingCalibrator.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/ScalingCalibrator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/SimHit.hpp b/Examples/Framework/include/ActsExamples/EventData/SimHit.hpp index 08a0a956616..be10ce2639c 100644 --- a/Examples/Framework/include/ActsExamples/EventData/SimHit.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/SimHit.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/SimParticle.hpp b/Examples/Framework/include/ActsExamples/EventData/SimParticle.hpp index 2eda0b4edd1..a557ea94646 100644 --- a/Examples/Framework/include/ActsExamples/EventData/SimParticle.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/SimParticle.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/SimSeed.hpp b/Examples/Framework/include/ActsExamples/EventData/SimSeed.hpp index b5eb881ce38..627b160b08f 100644 --- a/Examples/Framework/include/ActsExamples/EventData/SimSeed.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/SimSeed.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/SimSpacePoint.hpp b/Examples/Framework/include/ActsExamples/EventData/SimSpacePoint.hpp index 42d75328552..0359913199f 100644 --- a/Examples/Framework/include/ActsExamples/EventData/SimSpacePoint.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/SimSpacePoint.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/SimVertex.hpp b/Examples/Framework/include/ActsExamples/EventData/SimVertex.hpp index 3936b28f5ba..d012ac3eb80 100644 --- a/Examples/Framework/include/ActsExamples/EventData/SimVertex.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/SimVertex.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/SpacePointContainer.hpp b/Examples/Framework/include/ActsExamples/EventData/SpacePointContainer.hpp index 3a1074ad38b..14f50ff249a 100644 --- a/Examples/Framework/include/ActsExamples/EventData/SpacePointContainer.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/SpacePointContainer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/Track.hpp b/Examples/Framework/include/ActsExamples/EventData/Track.hpp index f70c6cf66b8..aafb8533e49 100644 --- a/Examples/Framework/include/ActsExamples/EventData/Track.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/Track.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/Trajectories.hpp b/Examples/Framework/include/ActsExamples/EventData/Trajectories.hpp index 90f6eecf366..b3423266eb9 100644 --- a/Examples/Framework/include/ActsExamples/EventData/Trajectories.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/Trajectories.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/TruthMatching.hpp b/Examples/Framework/include/ActsExamples/EventData/TruthMatching.hpp index f83e254421f..7b135498d6f 100644 --- a/Examples/Framework/include/ActsExamples/EventData/TruthMatching.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/TruthMatching.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/EventData/Vertex.hpp b/Examples/Framework/include/ActsExamples/EventData/Vertex.hpp index f808aa392ad..62e1af074e2 100644 --- a/Examples/Framework/include/ActsExamples/EventData/Vertex.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/Vertex.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/AlgorithmContext.hpp b/Examples/Framework/include/ActsExamples/Framework/AlgorithmContext.hpp index 0cc81dc9409..f78e5b9c798 100644 --- a/Examples/Framework/include/ActsExamples/Framework/AlgorithmContext.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/AlgorithmContext.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/DataHandle.hpp b/Examples/Framework/include/ActsExamples/Framework/DataHandle.hpp index 6e8edbf07fc..2aaa469446c 100644 --- a/Examples/Framework/include/ActsExamples/Framework/DataHandle.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/DataHandle.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/IAlgorithm.hpp b/Examples/Framework/include/ActsExamples/Framework/IAlgorithm.hpp index 29b6d894bae..46856ed7103 100644 --- a/Examples/Framework/include/ActsExamples/Framework/IAlgorithm.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/IAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/IContextDecorator.hpp b/Examples/Framework/include/ActsExamples/Framework/IContextDecorator.hpp index fbbd300a0c1..4c646348d0e 100644 --- a/Examples/Framework/include/ActsExamples/Framework/IContextDecorator.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/IContextDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/IReader.hpp b/Examples/Framework/include/ActsExamples/Framework/IReader.hpp index 51e056c24e3..fc5987b14b9 100644 --- a/Examples/Framework/include/ActsExamples/Framework/IReader.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/IReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/IWriter.hpp b/Examples/Framework/include/ActsExamples/Framework/IWriter.hpp index 49a096da2e1..025730887c8 100644 --- a/Examples/Framework/include/ActsExamples/Framework/IWriter.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/IWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/ProcessCode.hpp b/Examples/Framework/include/ActsExamples/Framework/ProcessCode.hpp index e309735ef84..014076904e8 100644 --- a/Examples/Framework/include/ActsExamples/Framework/ProcessCode.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/ProcessCode.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/RandomNumbers.hpp b/Examples/Framework/include/ActsExamples/Framework/RandomNumbers.hpp index 56bc8e20043..5389ae5a8b6 100644 --- a/Examples/Framework/include/ActsExamples/Framework/RandomNumbers.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/RandomNumbers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // // RandomNumbers.hpp diff --git a/Examples/Framework/include/ActsExamples/Framework/SequenceElement.hpp b/Examples/Framework/include/ActsExamples/Framework/SequenceElement.hpp index 3844cba840c..4db3b8d1af6 100644 --- a/Examples/Framework/include/ActsExamples/Framework/SequenceElement.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/SequenceElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/Sequencer.hpp b/Examples/Framework/include/ActsExamples/Framework/Sequencer.hpp index 460580e5f97..fa1c53618a0 100644 --- a/Examples/Framework/include/ActsExamples/Framework/Sequencer.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/Sequencer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/WhiteBoard.hpp b/Examples/Framework/include/ActsExamples/Framework/WhiteBoard.hpp index ffadf3f84dc..ca5e1904879 100644 --- a/Examples/Framework/include/ActsExamples/Framework/WhiteBoard.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/WhiteBoard.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Framework/WriterT.hpp b/Examples/Framework/include/ActsExamples/Framework/WriterT.hpp index 84b3bcbf571..5f150ca652d 100644 --- a/Examples/Framework/include/ActsExamples/Framework/WriterT.hpp +++ b/Examples/Framework/include/ActsExamples/Framework/WriterT.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Utilities/EventDataTransforms.hpp b/Examples/Framework/include/ActsExamples/Utilities/EventDataTransforms.hpp index dc0a8c4414a..fdbc7991ddc 100644 --- a/Examples/Framework/include/ActsExamples/Utilities/EventDataTransforms.hpp +++ b/Examples/Framework/include/ActsExamples/Utilities/EventDataTransforms.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Utilities/GroupBy.hpp b/Examples/Framework/include/ActsExamples/Utilities/GroupBy.hpp index d5465c67bd3..638c641ff6a 100644 --- a/Examples/Framework/include/ActsExamples/Utilities/GroupBy.hpp +++ b/Examples/Framework/include/ActsExamples/Utilities/GroupBy.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Utilities/Helpers.hpp b/Examples/Framework/include/ActsExamples/Utilities/Helpers.hpp index e57c650c365..81315d7d042 100644 --- a/Examples/Framework/include/ActsExamples/Utilities/Helpers.hpp +++ b/Examples/Framework/include/ActsExamples/Utilities/Helpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Utilities/Options.hpp b/Examples/Framework/include/ActsExamples/Utilities/Options.hpp index c60c3cc1812..c82934bccf8 100644 --- a/Examples/Framework/include/ActsExamples/Utilities/Options.hpp +++ b/Examples/Framework/include/ActsExamples/Utilities/Options.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Utilities/OptionsFwd.hpp b/Examples/Framework/include/ActsExamples/Utilities/OptionsFwd.hpp index 945400b2922..749dd086bfd 100644 --- a/Examples/Framework/include/ActsExamples/Utilities/OptionsFwd.hpp +++ b/Examples/Framework/include/ActsExamples/Utilities/OptionsFwd.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Utilities/Paths.hpp b/Examples/Framework/include/ActsExamples/Utilities/Paths.hpp index 782ca28a550..a2b6f372b73 100644 --- a/Examples/Framework/include/ActsExamples/Utilities/Paths.hpp +++ b/Examples/Framework/include/ActsExamples/Utilities/Paths.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Utilities/Range.hpp b/Examples/Framework/include/ActsExamples/Utilities/Range.hpp index 2ce5db9684e..5acc97f082b 100644 --- a/Examples/Framework/include/ActsExamples/Utilities/Range.hpp +++ b/Examples/Framework/include/ActsExamples/Utilities/Range.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Utilities/tbbWrap.hpp b/Examples/Framework/include/ActsExamples/Utilities/tbbWrap.hpp index 839545252c7..985cbb2180b 100644 --- a/Examples/Framework/include/ActsExamples/Utilities/tbbWrap.hpp +++ b/Examples/Framework/include/ActsExamples/Utilities/tbbWrap.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Validation/DuplicationPlotTool.hpp b/Examples/Framework/include/ActsExamples/Validation/DuplicationPlotTool.hpp index 4fade111a67..55fbf056015 100644 --- a/Examples/Framework/include/ActsExamples/Validation/DuplicationPlotTool.hpp +++ b/Examples/Framework/include/ActsExamples/Validation/DuplicationPlotTool.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Validation/EffPlotTool.hpp b/Examples/Framework/include/ActsExamples/Validation/EffPlotTool.hpp index 2399bb16023..534549fbaa4 100644 --- a/Examples/Framework/include/ActsExamples/Validation/EffPlotTool.hpp +++ b/Examples/Framework/include/ActsExamples/Validation/EffPlotTool.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Validation/FakeRatePlotTool.hpp b/Examples/Framework/include/ActsExamples/Validation/FakeRatePlotTool.hpp index c84d7823539..13b4b4fd86f 100644 --- a/Examples/Framework/include/ActsExamples/Validation/FakeRatePlotTool.hpp +++ b/Examples/Framework/include/ActsExamples/Validation/FakeRatePlotTool.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Validation/ResPlotTool.hpp b/Examples/Framework/include/ActsExamples/Validation/ResPlotTool.hpp index ce0aac548dd..5eeddb7ed8c 100644 --- a/Examples/Framework/include/ActsExamples/Validation/ResPlotTool.hpp +++ b/Examples/Framework/include/ActsExamples/Validation/ResPlotTool.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Validation/TrackClassification.hpp b/Examples/Framework/include/ActsExamples/Validation/TrackClassification.hpp index 47c5bd61d30..aaea6705432 100644 --- a/Examples/Framework/include/ActsExamples/Validation/TrackClassification.hpp +++ b/Examples/Framework/include/ActsExamples/Validation/TrackClassification.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/include/ActsExamples/Validation/TrackSummaryPlotTool.hpp b/Examples/Framework/include/ActsExamples/Validation/TrackSummaryPlotTool.hpp index f5b8894085f..d5ca6f26558 100644 --- a/Examples/Framework/include/ActsExamples/Validation/TrackSummaryPlotTool.hpp +++ b/Examples/Framework/include/ActsExamples/Validation/TrackSummaryPlotTool.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Framework/src/EventData/Measurement.cpp b/Examples/Framework/src/EventData/Measurement.cpp index d9ae3520d86..09c1e0a257a 100644 --- a/Examples/Framework/src/EventData/Measurement.cpp +++ b/Examples/Framework/src/EventData/Measurement.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/EventData/Measurement.hpp" diff --git a/Examples/Framework/src/EventData/MeasurementCalibration.cpp b/Examples/Framework/src/EventData/MeasurementCalibration.cpp index 84b1c5a2d45..963ef57ea24 100644 --- a/Examples/Framework/src/EventData/MeasurementCalibration.cpp +++ b/Examples/Framework/src/EventData/MeasurementCalibration.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/EventData/MeasurementCalibration.hpp" diff --git a/Examples/Framework/src/EventData/ScalingCalibrator.cpp b/Examples/Framework/src/EventData/ScalingCalibrator.cpp index 183dc3cb7d0..12da0078659 100644 --- a/Examples/Framework/src/EventData/ScalingCalibrator.cpp +++ b/Examples/Framework/src/EventData/ScalingCalibrator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/EventData/ScalingCalibrator.hpp" diff --git a/Examples/Framework/src/Framework/IAlgorithm.cpp b/Examples/Framework/src/Framework/IAlgorithm.cpp index c97d48db4d1..32ea6445dda 100644 --- a/Examples/Framework/src/Framework/IAlgorithm.cpp +++ b/Examples/Framework/src/Framework/IAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Framework/IAlgorithm.hpp" diff --git a/Examples/Framework/src/Framework/RandomNumbers.cpp b/Examples/Framework/src/Framework/RandomNumbers.cpp index 35dcbce0338..5fd0cdcf7d7 100644 --- a/Examples/Framework/src/Framework/RandomNumbers.cpp +++ b/Examples/Framework/src/Framework/RandomNumbers.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // // RandomNumbers.cpp diff --git a/Examples/Framework/src/Framework/SequenceElement.cpp b/Examples/Framework/src/Framework/SequenceElement.cpp index cef2bc635e3..4232e7b59fb 100644 --- a/Examples/Framework/src/Framework/SequenceElement.cpp +++ b/Examples/Framework/src/Framework/SequenceElement.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Framework/SequenceElement.hpp" diff --git a/Examples/Framework/src/Framework/Sequencer.cpp b/Examples/Framework/src/Framework/Sequencer.cpp index 908f202bfb2..100f55cf93c 100644 --- a/Examples/Framework/src/Framework/Sequencer.cpp +++ b/Examples/Framework/src/Framework/Sequencer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Framework/Sequencer.hpp" diff --git a/Examples/Framework/src/Framework/WhiteBoard.cpp b/Examples/Framework/src/Framework/WhiteBoard.cpp index a71ac23e7b0..099eac53efc 100644 --- a/Examples/Framework/src/Framework/WhiteBoard.cpp +++ b/Examples/Framework/src/Framework/WhiteBoard.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Framework/WhiteBoard.hpp" diff --git a/Examples/Framework/src/Utilities/EventDataTransforms.cpp b/Examples/Framework/src/Utilities/EventDataTransforms.cpp index 736c40b2d51..9e0cbbff3fd 100644 --- a/Examples/Framework/src/Utilities/EventDataTransforms.cpp +++ b/Examples/Framework/src/Utilities/EventDataTransforms.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/EventDataTransforms.hpp" diff --git a/Examples/Framework/src/Utilities/Helpers.cpp b/Examples/Framework/src/Utilities/Helpers.cpp index 544d58dfd22..2706e09a631 100644 --- a/Examples/Framework/src/Utilities/Helpers.cpp +++ b/Examples/Framework/src/Utilities/Helpers.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/Helpers.hpp" diff --git a/Examples/Framework/src/Utilities/Options.cpp b/Examples/Framework/src/Utilities/Options.cpp index afafbfaf095..2e4e40536bf 100644 --- a/Examples/Framework/src/Utilities/Options.cpp +++ b/Examples/Framework/src/Utilities/Options.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/Options.hpp" diff --git a/Examples/Framework/src/Utilities/Paths.cpp b/Examples/Framework/src/Utilities/Paths.cpp index 8cd858a40e4..02bf5889c68 100644 --- a/Examples/Framework/src/Utilities/Paths.cpp +++ b/Examples/Framework/src/Utilities/Paths.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/Paths.hpp" diff --git a/Examples/Framework/src/Validation/DuplicationPlotTool.cpp b/Examples/Framework/src/Validation/DuplicationPlotTool.cpp index a0af3b4be2e..b200957e0c0 100644 --- a/Examples/Framework/src/Validation/DuplicationPlotTool.cpp +++ b/Examples/Framework/src/Validation/DuplicationPlotTool.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Validation/DuplicationPlotTool.hpp" diff --git a/Examples/Framework/src/Validation/EffPlotTool.cpp b/Examples/Framework/src/Validation/EffPlotTool.cpp index 23225d8f778..a30c1499796 100644 --- a/Examples/Framework/src/Validation/EffPlotTool.cpp +++ b/Examples/Framework/src/Validation/EffPlotTool.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Validation/EffPlotTool.hpp" diff --git a/Examples/Framework/src/Validation/FakeRatePlotTool.cpp b/Examples/Framework/src/Validation/FakeRatePlotTool.cpp index b62a108a299..9b37bc673fe 100644 --- a/Examples/Framework/src/Validation/FakeRatePlotTool.cpp +++ b/Examples/Framework/src/Validation/FakeRatePlotTool.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Validation/FakeRatePlotTool.hpp" diff --git a/Examples/Framework/src/Validation/ResPlotTool.cpp b/Examples/Framework/src/Validation/ResPlotTool.cpp index 3a53fd2877a..14321050144 100644 --- a/Examples/Framework/src/Validation/ResPlotTool.cpp +++ b/Examples/Framework/src/Validation/ResPlotTool.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Validation/ResPlotTool.hpp" diff --git a/Examples/Framework/src/Validation/TrackClassification.cpp b/Examples/Framework/src/Validation/TrackClassification.cpp index 5763b41d369..0341dc09e5a 100644 --- a/Examples/Framework/src/Validation/TrackClassification.cpp +++ b/Examples/Framework/src/Validation/TrackClassification.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Validation/TrackClassification.hpp" diff --git a/Examples/Framework/src/Validation/TrackSummaryPlotTool.cpp b/Examples/Framework/src/Validation/TrackSummaryPlotTool.cpp index 913aadfde5b..1805da6079b 100644 --- a/Examples/Framework/src/Validation/TrackSummaryPlotTool.cpp +++ b/Examples/Framework/src/Validation/TrackSummaryPlotTool.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Validation/TrackSummaryPlotTool.hpp" diff --git a/Examples/HelloWorld/HelloData.hpp b/Examples/HelloWorld/HelloData.hpp index c400e43e3ae..6aed4ac7d09 100644 --- a/Examples/HelloWorld/HelloData.hpp +++ b/Examples/HelloWorld/HelloData.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/HelloWorld/HelloLoggerAlgorithm.cpp b/Examples/HelloWorld/HelloLoggerAlgorithm.cpp index d84c838c8cc..696bda8ac78 100644 --- a/Examples/HelloWorld/HelloLoggerAlgorithm.cpp +++ b/Examples/HelloWorld/HelloLoggerAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "HelloLoggerAlgorithm.hpp" diff --git a/Examples/HelloWorld/HelloLoggerAlgorithm.hpp b/Examples/HelloWorld/HelloLoggerAlgorithm.hpp index dcbab97f35c..934c0b67f5c 100644 --- a/Examples/HelloWorld/HelloLoggerAlgorithm.hpp +++ b/Examples/HelloWorld/HelloLoggerAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/HelloWorld/HelloRandomAlgorithm.cpp b/Examples/HelloWorld/HelloRandomAlgorithm.cpp index 5c279e76c3b..27ed5b7f488 100644 --- a/Examples/HelloWorld/HelloRandomAlgorithm.cpp +++ b/Examples/HelloWorld/HelloRandomAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "HelloRandomAlgorithm.hpp" diff --git a/Examples/HelloWorld/HelloRandomAlgorithm.hpp b/Examples/HelloWorld/HelloRandomAlgorithm.hpp index 860eeb45dbb..1a4f804e4a2 100644 --- a/Examples/HelloWorld/HelloRandomAlgorithm.hpp +++ b/Examples/HelloWorld/HelloRandomAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/HelloWorld/HelloWhiteBoardAlgorithm.cpp b/Examples/HelloWorld/HelloWhiteBoardAlgorithm.cpp index 9ca49236a85..55562e8c6e8 100644 --- a/Examples/HelloWorld/HelloWhiteBoardAlgorithm.cpp +++ b/Examples/HelloWorld/HelloWhiteBoardAlgorithm.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "HelloWhiteBoardAlgorithm.hpp" diff --git a/Examples/HelloWorld/HelloWhiteBoardAlgorithm.hpp b/Examples/HelloWorld/HelloWhiteBoardAlgorithm.hpp index 630a1a2e653..65074585cb1 100644 --- a/Examples/HelloWorld/HelloWhiteBoardAlgorithm.hpp +++ b/Examples/HelloWorld/HelloWhiteBoardAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/HelloWorld/HelloWorld.cpp b/Examples/HelloWorld/HelloWorld.cpp index 391f5ab274a..51fae31070c 100644 --- a/Examples/HelloWorld/HelloWorld.cpp +++ b/Examples/HelloWorld/HelloWorld.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Framework/RandomNumbers.hpp" #include "ActsExamples/Framework/Sequencer.hpp" diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvBFieldWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvBFieldWriter.hpp index 84b5f288ae9..d3bc6b457bb 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvBFieldWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvBFieldWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvDriftCircleReader.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvDriftCircleReader.hpp index 147f2fb8c62..af9eeef8b3a 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvDriftCircleReader.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvDriftCircleReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvExaTrkXGraphReader.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvExaTrkXGraphReader.hpp index 4b41d57a448..bb30bc07fb0 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvExaTrkXGraphReader.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvExaTrkXGraphReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvExaTrkXGraphWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvExaTrkXGraphWriter.hpp index 15a2f7bb182..5147acc702b 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvExaTrkXGraphWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvExaTrkXGraphWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvInputOutput.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvInputOutput.hpp index 97b14ba91bf..3cdbe789e3c 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvInputOutput.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvInputOutput.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMeasurementReader.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMeasurementReader.hpp index 1050a7ee4bf..c26387e1260 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMeasurementReader.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMeasurementReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Geometry/GeometryIdentifier.hpp" diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMeasurementWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMeasurementWriter.hpp index d567d81397b..f166a5ab6b9 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMeasurementWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMeasurementWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMuonSimHitReader.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMuonSimHitReader.hpp index 1b5919aa559..03577d86140 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMuonSimHitReader.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvMuonSimHitReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvParticleReader.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvParticleReader.hpp index de1ca9f0a75..9d45af9b241 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvParticleReader.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvParticleReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvParticleWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvParticleWriter.hpp index 01dc4fdaea7..342ca8f3516 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvParticleWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvParticleWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvProtoTrackWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvProtoTrackWriter.hpp index 5d8da5e6dce..eaf166a95da 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvProtoTrackWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvProtoTrackWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSeedWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSeedWriter.hpp index b3b7c49d001..670183f7c29 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSeedWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSeedWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSimHitReader.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSimHitReader.hpp index 3b249d083b4..1c912dca618 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSimHitReader.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSimHitReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSimHitWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSimHitWriter.hpp index f62f12e8347..f2a09bfbd49 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSimHitWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSimHitWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacePointReader.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacePointReader.hpp index 57ef8055598..46c0780e02d 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacePointReader.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacePointReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacePointsBucketWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacePointsBucketWriter.hpp index 3f769c5e4ff..713665f0929 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacePointsBucketWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacePointsBucketWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacepointWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacepointWriter.hpp index bf282982e96..1e24eb4bc97 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacepointWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvSpacepointWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackParameterReader.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackParameterReader.hpp index 1b4ae98baaf..4fee8ad8aec 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackParameterReader.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackParameterReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackParameterWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackParameterWriter.hpp index 34525b9c5eb..4b448b7cd2e 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackParameterWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackParameterWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackWriter.hpp index d8267d04f5e..06a449e2615 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackingGeometryWriter.hpp b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackingGeometryWriter.hpp index f407c253a9d..7035e792075 100644 --- a/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackingGeometryWriter.hpp +++ b/Examples/Io/Csv/include/ActsExamples/Io/Csv/CsvTrackingGeometryWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/src/CsvBFieldWriter.cpp b/Examples/Io/Csv/src/CsvBFieldWriter.cpp index 05e2c8ca93f..dc38472c8ef 100644 --- a/Examples/Io/Csv/src/CsvBFieldWriter.cpp +++ b/Examples/Io/Csv/src/CsvBFieldWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvBFieldWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvDriftCircleReader.cpp b/Examples/Io/Csv/src/CsvDriftCircleReader.cpp index 9fdb0d86083..ce179d9d5be 100644 --- a/Examples/Io/Csv/src/CsvDriftCircleReader.cpp +++ b/Examples/Io/Csv/src/CsvDriftCircleReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvDriftCircleReader.hpp" diff --git a/Examples/Io/Csv/src/CsvExaTrkXGraphReader.cpp b/Examples/Io/Csv/src/CsvExaTrkXGraphReader.cpp index 9caf1df4142..f6ad7ba850d 100644 --- a/Examples/Io/Csv/src/CsvExaTrkXGraphReader.cpp +++ b/Examples/Io/Csv/src/CsvExaTrkXGraphReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvExaTrkXGraphReader.hpp" diff --git a/Examples/Io/Csv/src/CsvExaTrkXGraphWriter.cpp b/Examples/Io/Csv/src/CsvExaTrkXGraphWriter.cpp index 664ed1f5fb5..eb12cdcdf89 100644 --- a/Examples/Io/Csv/src/CsvExaTrkXGraphWriter.cpp +++ b/Examples/Io/Csv/src/CsvExaTrkXGraphWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvExaTrkXGraphWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvMeasurementReader.cpp b/Examples/Io/Csv/src/CsvMeasurementReader.cpp index 4eef28c2a6c..cbc030c6939 100644 --- a/Examples/Io/Csv/src/CsvMeasurementReader.cpp +++ b/Examples/Io/Csv/src/CsvMeasurementReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvMeasurementReader.hpp" diff --git a/Examples/Io/Csv/src/CsvMeasurementWriter.cpp b/Examples/Io/Csv/src/CsvMeasurementWriter.cpp index f31c812ba46..f421c8c2501 100644 --- a/Examples/Io/Csv/src/CsvMeasurementWriter.cpp +++ b/Examples/Io/Csv/src/CsvMeasurementWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvMeasurementWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvMuonSimHitReader.cpp b/Examples/Io/Csv/src/CsvMuonSimHitReader.cpp index d6d166eee7d..58240dcecce 100644 --- a/Examples/Io/Csv/src/CsvMuonSimHitReader.cpp +++ b/Examples/Io/Csv/src/CsvMuonSimHitReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvMuonSimHitReader.hpp" diff --git a/Examples/Io/Csv/src/CsvOutputData.hpp b/Examples/Io/Csv/src/CsvOutputData.hpp index 84dac6209db..63fd8a23f0d 100644 --- a/Examples/Io/Csv/src/CsvOutputData.hpp +++ b/Examples/Io/Csv/src/CsvOutputData.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Csv/src/CsvParticleReader.cpp b/Examples/Io/Csv/src/CsvParticleReader.cpp index fa8a17f0f13..c738acc0fc4 100644 --- a/Examples/Io/Csv/src/CsvParticleReader.cpp +++ b/Examples/Io/Csv/src/CsvParticleReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvParticleReader.hpp" diff --git a/Examples/Io/Csv/src/CsvParticleWriter.cpp b/Examples/Io/Csv/src/CsvParticleWriter.cpp index db2d38d6af9..787fae5439b 100644 --- a/Examples/Io/Csv/src/CsvParticleWriter.cpp +++ b/Examples/Io/Csv/src/CsvParticleWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvParticleWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvProtoTrackWriter.cpp b/Examples/Io/Csv/src/CsvProtoTrackWriter.cpp index 1b6c3d4ae37..802533f8bbe 100644 --- a/Examples/Io/Csv/src/CsvProtoTrackWriter.cpp +++ b/Examples/Io/Csv/src/CsvProtoTrackWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvProtoTrackWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvSeedWriter.cpp b/Examples/Io/Csv/src/CsvSeedWriter.cpp index 411064591d2..96dd04b07a4 100644 --- a/Examples/Io/Csv/src/CsvSeedWriter.cpp +++ b/Examples/Io/Csv/src/CsvSeedWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvSeedWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvSimHitReader.cpp b/Examples/Io/Csv/src/CsvSimHitReader.cpp index 5e9d6180389..949b6d4ce5c 100644 --- a/Examples/Io/Csv/src/CsvSimHitReader.cpp +++ b/Examples/Io/Csv/src/CsvSimHitReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvSimHitReader.hpp" diff --git a/Examples/Io/Csv/src/CsvSimHitWriter.cpp b/Examples/Io/Csv/src/CsvSimHitWriter.cpp index 96b628afb33..0cd5b46d79f 100644 --- a/Examples/Io/Csv/src/CsvSimHitWriter.cpp +++ b/Examples/Io/Csv/src/CsvSimHitWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvSimHitWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvSpacePointReader.cpp b/Examples/Io/Csv/src/CsvSpacePointReader.cpp index 2db167975f9..58b7ab6ceb5 100644 --- a/Examples/Io/Csv/src/CsvSpacePointReader.cpp +++ b/Examples/Io/Csv/src/CsvSpacePointReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvSpacePointReader.hpp" diff --git a/Examples/Io/Csv/src/CsvSpacePointWriter.cpp b/Examples/Io/Csv/src/CsvSpacePointWriter.cpp index 6fecad15461..9eb440f7692 100644 --- a/Examples/Io/Csv/src/CsvSpacePointWriter.cpp +++ b/Examples/Io/Csv/src/CsvSpacePointWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvSpacepointWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvSpacePointsBucketWriter.cpp b/Examples/Io/Csv/src/CsvSpacePointsBucketWriter.cpp index 2273ed0d6a3..73150330f62 100755 --- a/Examples/Io/Csv/src/CsvSpacePointsBucketWriter.cpp +++ b/Examples/Io/Csv/src/CsvSpacePointsBucketWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvSpacePointsBucketWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvTrackParameterReader.cpp b/Examples/Io/Csv/src/CsvTrackParameterReader.cpp index 3e9c4ebb3a6..76db2e2ca05 100644 --- a/Examples/Io/Csv/src/CsvTrackParameterReader.cpp +++ b/Examples/Io/Csv/src/CsvTrackParameterReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvTrackParameterReader.hpp" diff --git a/Examples/Io/Csv/src/CsvTrackParameterWriter.cpp b/Examples/Io/Csv/src/CsvTrackParameterWriter.cpp index 6251f983b4b..4370451e606 100644 --- a/Examples/Io/Csv/src/CsvTrackParameterWriter.cpp +++ b/Examples/Io/Csv/src/CsvTrackParameterWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvTrackParameterWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvTrackWriter.cpp b/Examples/Io/Csv/src/CsvTrackWriter.cpp index f7a44668183..26ac3ad2e6b 100644 --- a/Examples/Io/Csv/src/CsvTrackWriter.cpp +++ b/Examples/Io/Csv/src/CsvTrackWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvTrackWriter.hpp" diff --git a/Examples/Io/Csv/src/CsvTrackingGeometryWriter.cpp b/Examples/Io/Csv/src/CsvTrackingGeometryWriter.cpp index 0d98c8d0f54..1257be23ff6 100644 --- a/Examples/Io/Csv/src/CsvTrackingGeometryWriter.cpp +++ b/Examples/Io/Csv/src/CsvTrackingGeometryWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Csv/CsvTrackingGeometryWriter.hpp" diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMeasurementReader.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMeasurementReader.hpp index b32259f176b..a81341f0edc 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMeasurementReader.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMeasurementReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Plugins/Podio/PodioUtil.hpp" diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMeasurementWriter.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMeasurementWriter.hpp index 11c52b04de4..d559ee9a5e4 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMeasurementWriter.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMeasurementWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMultiTrajectoryWriter.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMultiTrajectoryWriter.hpp index 5d200d57cf9..8117e4b663d 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMultiTrajectoryWriter.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepMultiTrajectoryWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepParticleWriter.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepParticleWriter.hpp index 7120d634053..55f28c5f011 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepParticleWriter.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepParticleWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepReader.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepReader.hpp index 51c716aaa4b..bfa87a6a7da 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepReader.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepSimHitWriter.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepSimHitWriter.hpp index 91d55b4394e..bf1f49e7da7 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepSimHitWriter.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepSimHitWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepTrackReader.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepTrackReader.hpp index 3bd0dea4554..c795af039fe 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepTrackReader.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepTrackReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepTrackWriter.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepTrackWriter.hpp index 30d4d5af85e..340301df810 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepTrackWriter.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepTrackWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepUtil.hpp b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepUtil.hpp index 6e6bac7a154..35d84acd043 100644 --- a/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepUtil.hpp +++ b/Examples/Io/EDM4hep/include/ActsExamples/Io/EDM4hep/EDM4hepUtil.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Geometry/GeometryContext.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepMeasurementReader.cpp b/Examples/Io/EDM4hep/src/EDM4hepMeasurementReader.cpp index 19606206e0e..5a9d6840999 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepMeasurementReader.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepMeasurementReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepMeasurementReader.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepMeasurementWriter.cpp b/Examples/Io/EDM4hep/src/EDM4hepMeasurementWriter.cpp index f9b35e7edb1..0f9e9422d28 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepMeasurementWriter.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepMeasurementWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepMeasurementWriter.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepMultiTrajectoryWriter.cpp b/Examples/Io/EDM4hep/src/EDM4hepMultiTrajectoryWriter.cpp index bfd48049c8c..106b2777d4f 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepMultiTrajectoryWriter.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepMultiTrajectoryWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepMultiTrajectoryWriter.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepParticleWriter.cpp b/Examples/Io/EDM4hep/src/EDM4hepParticleWriter.cpp index c4b5533e599..9ffcb29e593 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepParticleWriter.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepParticleWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepParticleWriter.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepReader.cpp b/Examples/Io/EDM4hep/src/EDM4hepReader.cpp index 5409d67e233..ec84083f2aa 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepReader.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepReader.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepSimHitWriter.cpp b/Examples/Io/EDM4hep/src/EDM4hepSimHitWriter.cpp index 8df2a02a1eb..7528ba4589f 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepSimHitWriter.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepSimHitWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepSimHitWriter.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepTrackReader.cpp b/Examples/Io/EDM4hep/src/EDM4hepTrackReader.cpp index 262307efab1..d95dfc79fc4 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepTrackReader.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepTrackReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepTrackReader.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepTrackWriter.cpp b/Examples/Io/EDM4hep/src/EDM4hepTrackWriter.cpp index c9d50032351..c2dd5734ecb 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepTrackWriter.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepTrackWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepTrackWriter.hpp" diff --git a/Examples/Io/EDM4hep/src/EDM4hepUtil.cpp b/Examples/Io/EDM4hep/src/EDM4hepUtil.cpp index dc863b135ab..ef6b794cc4c 100644 --- a/Examples/Io/EDM4hep/src/EDM4hepUtil.cpp +++ b/Examples/Io/EDM4hep/src/EDM4hepUtil.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/EDM4hep/EDM4hepUtil.hpp" diff --git a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Event.hpp b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Event.hpp index 950ba814f1a..0094dc85e10 100644 --- a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Event.hpp +++ b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Event.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Particle.hpp b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Particle.hpp index 1585b5f84c5..0da9cced072 100644 --- a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Particle.hpp +++ b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Particle.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Reader.hpp b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Reader.hpp index d224ff2a7ce..84dbbfd926f 100644 --- a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Reader.hpp +++ b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Reader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Vertex.hpp b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Vertex.hpp index 47e190b5769..bba58811ec7 100644 --- a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Vertex.hpp +++ b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Vertex.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Writer.hpp b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Writer.hpp index 451e838fe20..3b534cd3584 100644 --- a/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Writer.hpp +++ b/Examples/Io/HepMC3/include/ActsExamples/Io/HepMC3/HepMC3Writer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/HepMC3/src/HepMC3Event.cpp b/Examples/Io/HepMC3/src/HepMC3Event.cpp index 0fc87296a84..ffd62c272f9 100644 --- a/Examples/Io/HepMC3/src/HepMC3Event.cpp +++ b/Examples/Io/HepMC3/src/HepMC3Event.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/HepMC3/HepMC3Event.hpp" diff --git a/Examples/Io/HepMC3/src/HepMC3Particle.cpp b/Examples/Io/HepMC3/src/HepMC3Particle.cpp index 99564447a94..5d5625b5b2a 100644 --- a/Examples/Io/HepMC3/src/HepMC3Particle.cpp +++ b/Examples/Io/HepMC3/src/HepMC3Particle.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/HepMC3/HepMC3Particle.hpp" diff --git a/Examples/Io/HepMC3/src/HepMC3Reader.cpp b/Examples/Io/HepMC3/src/HepMC3Reader.cpp index 8101ebf1e1f..8d9c91c9811 100644 --- a/Examples/Io/HepMC3/src/HepMC3Reader.cpp +++ b/Examples/Io/HepMC3/src/HepMC3Reader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/HepMC3/HepMC3Reader.hpp" diff --git a/Examples/Io/HepMC3/src/HepMC3Vertex.cpp b/Examples/Io/HepMC3/src/HepMC3Vertex.cpp index aa18c760a70..397eba88085 100644 --- a/Examples/Io/HepMC3/src/HepMC3Vertex.cpp +++ b/Examples/Io/HepMC3/src/HepMC3Vertex.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/HepMC3/HepMC3Vertex.hpp" diff --git a/Examples/Io/HepMC3/src/HepMC3Writer.cpp b/Examples/Io/HepMC3/src/HepMC3Writer.cpp index fe300f1087f..4adc222c9fe 100644 --- a/Examples/Io/HepMC3/src/HepMC3Writer.cpp +++ b/Examples/Io/HepMC3/src/HepMC3Writer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/HepMC3/HepMC3Writer.hpp" diff --git a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonDigitizationConfig.hpp b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonDigitizationConfig.hpp index 34993814862..11e063acaa8 100644 --- a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonDigitizationConfig.hpp +++ b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonDigitizationConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonGeometryList.hpp b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonGeometryList.hpp index 278325ac444..8b9887f3503 100644 --- a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonGeometryList.hpp +++ b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonGeometryList.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonMaterialWriter.hpp b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonMaterialWriter.hpp index 310333f7d27..c59a5a2a909 100644 --- a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonMaterialWriter.hpp +++ b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonMaterialWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonSurfacesReader.hpp b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonSurfacesReader.hpp index 4df2743e66e..50bbf15d35f 100644 --- a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonSurfacesReader.hpp +++ b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonSurfacesReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonSurfacesWriter.hpp b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonSurfacesWriter.hpp index 3e202e14502..fd173885151 100644 --- a/Examples/Io/Json/include/ActsExamples/Io/Json/JsonSurfacesWriter.hpp +++ b/Examples/Io/Json/include/ActsExamples/Io/Json/JsonSurfacesWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Json/src/JsonDigitizationConfig.cpp b/Examples/Io/Json/src/JsonDigitizationConfig.cpp index 5e1d6b684ff..524fd4d32ef 100644 --- a/Examples/Io/Json/src/JsonDigitizationConfig.cpp +++ b/Examples/Io/Json/src/JsonDigitizationConfig.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Json/JsonDigitizationConfig.hpp" diff --git a/Examples/Io/Json/src/JsonGeometryList.cpp b/Examples/Io/Json/src/JsonGeometryList.cpp index 859ee0ed829..4c9554954f8 100644 --- a/Examples/Io/Json/src/JsonGeometryList.cpp +++ b/Examples/Io/Json/src/JsonGeometryList.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Json/JsonGeometryList.hpp" diff --git a/Examples/Io/Json/src/JsonMaterialWriter.cpp b/Examples/Io/Json/src/JsonMaterialWriter.cpp index 4370835355e..55b6b686e98 100644 --- a/Examples/Io/Json/src/JsonMaterialWriter.cpp +++ b/Examples/Io/Json/src/JsonMaterialWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Json/JsonMaterialWriter.hpp" diff --git a/Examples/Io/Json/src/JsonSurfacesReader.cpp b/Examples/Io/Json/src/JsonSurfacesReader.cpp index 7c9d14eb520..469c9828d46 100644 --- a/Examples/Io/Json/src/JsonSurfacesReader.cpp +++ b/Examples/Io/Json/src/JsonSurfacesReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Json/JsonSurfacesReader.hpp" diff --git a/Examples/Io/Json/src/JsonSurfacesWriter.cpp b/Examples/Io/Json/src/JsonSurfacesWriter.cpp index 01546a12ebe..9e6a5cc0135 100644 --- a/Examples/Io/Json/src/JsonSurfacesWriter.cpp +++ b/Examples/Io/Json/src/JsonSurfacesWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Json/JsonSurfacesWriter.hpp" diff --git a/Examples/Io/NuclearInteractions/include/ActsExamples/Io/NuclearInteractions/RootNuclearInteractionParametersWriter.hpp b/Examples/Io/NuclearInteractions/include/ActsExamples/Io/NuclearInteractions/RootNuclearInteractionParametersWriter.hpp index 325605d9f2d..8edad2c2a7d 100644 --- a/Examples/Io/NuclearInteractions/include/ActsExamples/Io/NuclearInteractions/RootNuclearInteractionParametersWriter.hpp +++ b/Examples/Io/NuclearInteractions/include/ActsExamples/Io/NuclearInteractions/RootNuclearInteractionParametersWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/NuclearInteractions/include/ActsExamples/Io/NuclearInteractions/detail/NuclearInteractionParametrisation.hpp b/Examples/Io/NuclearInteractions/include/ActsExamples/Io/NuclearInteractions/detail/NuclearInteractionParametrisation.hpp index 97ab2338d96..b0a6174a0d6 100644 --- a/Examples/Io/NuclearInteractions/include/ActsExamples/Io/NuclearInteractions/detail/NuclearInteractionParametrisation.hpp +++ b/Examples/Io/NuclearInteractions/include/ActsExamples/Io/NuclearInteractions/detail/NuclearInteractionParametrisation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/NuclearInteractions/src/RootNuclearInteractionParametersWriter.cpp b/Examples/Io/NuclearInteractions/src/RootNuclearInteractionParametersWriter.cpp index d7b5a80fc4c..64a324242c8 100644 --- a/Examples/Io/NuclearInteractions/src/RootNuclearInteractionParametersWriter.cpp +++ b/Examples/Io/NuclearInteractions/src/RootNuclearInteractionParametersWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/NuclearInteractions/RootNuclearInteractionParametersWriter.hpp" diff --git a/Examples/Io/NuclearInteractions/src/detail/NuclearInteractionParametrisation.cpp b/Examples/Io/NuclearInteractions/src/detail/NuclearInteractionParametrisation.cpp index a11e4880b9b..f9df3d38f85 100644 --- a/Examples/Io/NuclearInteractions/src/detail/NuclearInteractionParametrisation.cpp +++ b/Examples/Io/NuclearInteractions/src/detail/NuclearInteractionParametrisation.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/NuclearInteractions/detail/NuclearInteractionParametrisation.hpp" diff --git a/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjPropagationStepsWriter.hpp b/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjPropagationStepsWriter.hpp index 8741c21fe93..1a20c483976 100644 --- a/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjPropagationStepsWriter.hpp +++ b/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjPropagationStepsWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjTrackingGeometryWriter.hpp b/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjTrackingGeometryWriter.hpp index e77497bac8e..2eae269c6a4 100644 --- a/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjTrackingGeometryWriter.hpp +++ b/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjTrackingGeometryWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjWriterOptions.hpp b/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjWriterOptions.hpp index 2590e6b7799..f62a8b6a557 100644 --- a/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjWriterOptions.hpp +++ b/Examples/Io/Obj/include/ActsExamples/Plugins/Obj/ObjWriterOptions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Obj/src/ObjPropagationStepsWriter.cpp b/Examples/Io/Obj/src/ObjPropagationStepsWriter.cpp index 50007b1070b..6d0388984cc 100644 --- a/Examples/Io/Obj/src/ObjPropagationStepsWriter.cpp +++ b/Examples/Io/Obj/src/ObjPropagationStepsWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Plugins/Obj/ObjPropagationStepsWriter.hpp" diff --git a/Examples/Io/Obj/src/ObjTrackingGeometryWriter.cpp b/Examples/Io/Obj/src/ObjTrackingGeometryWriter.cpp index a0f4948a1ff..4937757c85f 100644 --- a/Examples/Io/Obj/src/ObjTrackingGeometryWriter.cpp +++ b/Examples/Io/Obj/src/ObjTrackingGeometryWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Plugins/Obj/ObjTrackingGeometryWriter.hpp" diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/CKFPerformanceWriter.cpp b/Examples/Io/Performance/ActsExamples/Io/Performance/CKFPerformanceWriter.cpp index 3caad01b002..e7fa1525615 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/CKFPerformanceWriter.cpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/CKFPerformanceWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Performance/CKFPerformanceWriter.hpp" diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/CKFPerformanceWriter.hpp b/Examples/Io/Performance/ActsExamples/Io/Performance/CKFPerformanceWriter.hpp index a7342cbac1a..0d9e4c96feb 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/CKFPerformanceWriter.hpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/CKFPerformanceWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/SeedingPerformanceWriter.cpp b/Examples/Io/Performance/ActsExamples/Io/Performance/SeedingPerformanceWriter.cpp index c1612169fb0..b2d87be68f9 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/SeedingPerformanceWriter.cpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/SeedingPerformanceWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "SeedingPerformanceWriter.hpp" diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/SeedingPerformanceWriter.hpp b/Examples/Io/Performance/ActsExamples/Io/Performance/SeedingPerformanceWriter.hpp index 02ae07a28cd..49006631b92 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/SeedingPerformanceWriter.hpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/SeedingPerformanceWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFinderPerformanceWriter.cpp b/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFinderPerformanceWriter.cpp index b8e2f980ec7..abef2ef0664 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFinderPerformanceWriter.cpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFinderPerformanceWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Performance/TrackFinderPerformanceWriter.hpp" diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFinderPerformanceWriter.hpp b/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFinderPerformanceWriter.hpp index 481eca1db3f..287cf361999 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFinderPerformanceWriter.hpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFinderPerformanceWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFitterPerformanceWriter.cpp b/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFitterPerformanceWriter.cpp index a420d07aee0..54441ad7aa8 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFitterPerformanceWriter.cpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFitterPerformanceWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Performance/TrackFitterPerformanceWriter.hpp" diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFitterPerformanceWriter.hpp b/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFitterPerformanceWriter.hpp index 56f0cb41130..c0bbbf36e7e 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFitterPerformanceWriter.hpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/TrackFitterPerformanceWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/VertexPerformanceWriter.cpp b/Examples/Io/Performance/ActsExamples/Io/Performance/VertexPerformanceWriter.cpp index 240b7f7f3b8..dfc790433f9 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/VertexPerformanceWriter.cpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/VertexPerformanceWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Performance/VertexPerformanceWriter.hpp" diff --git a/Examples/Io/Performance/ActsExamples/Io/Performance/VertexPerformanceWriter.hpp b/Examples/Io/Performance/ActsExamples/Io/Performance/VertexPerformanceWriter.hpp index 3b44a53ab79..8043dd1cac0 100644 --- a/Examples/Io/Performance/ActsExamples/Io/Performance/VertexPerformanceWriter.hpp +++ b/Examples/Io/Performance/ActsExamples/Io/Performance/VertexPerformanceWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/LinkDef.hpp b/Examples/Io/Root/LinkDef.hpp index aef74c9d816..0f2b7b5a315 100644 --- a/Examples/Io/Root/LinkDef.hpp +++ b/Examples/Io/Root/LinkDef.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootAthenaDumpReader.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootAthenaDumpReader.hpp index 3083197f63d..33919b4bae1 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootAthenaDumpReader.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootAthenaDumpReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootAthenaNTupleReader.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootAthenaNTupleReader.hpp index d9e437e0e18..7f4d6f7bc73 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootAthenaNTupleReader.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootAthenaNTupleReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootBFieldWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootBFieldWriter.hpp index eb987147aaf..a8685f809c9 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootBFieldWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootBFieldWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialDecorator.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialDecorator.hpp index c6dc213626c..f5bab09fb70 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialDecorator.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialTrackReader.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialTrackReader.hpp index bdcb3e0aab7..3c3bf2aece3 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialTrackReader.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialTrackReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialTrackWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialTrackWriter.hpp index ccb427cce77..3bd337a7fe8 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialTrackWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialTrackWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialWriter.hpp index 6975cd79165..ec6142e65f9 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMaterialWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMeasurementWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMeasurementWriter.hpp index ccf1be2a901..3958e845fb2 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootMeasurementWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootMeasurementWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootParticleReader.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootParticleReader.hpp index cc151c58f34..a58e84c1978 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootParticleReader.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootParticleReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootParticleWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootParticleWriter.hpp index d5917ddeb54..99cf6b5cd61 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootParticleWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootParticleWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootPropagationStepsWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootPropagationStepsWriter.hpp index 6f1026806ab..330fe1e9151 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootPropagationStepsWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootPropagationStepsWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootPropagationSummaryWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootPropagationSummaryWriter.hpp index 84781680240..c1f6afe9059 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootPropagationSummaryWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootPropagationSummaryWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootSeedWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootSeedWriter.hpp index 92117222063..5165ff38fe8 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootSeedWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootSeedWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootSimHitReader.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootSimHitReader.hpp index dbbf0394e8c..ade13f060a3 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootSimHitReader.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootSimHitReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootSimHitWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootSimHitWriter.hpp index 005e7401447..45a117a5f39 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootSimHitWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootSimHitWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootSpacepointWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootSpacepointWriter.hpp index 8e4d4767ff4..626f05b6399 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootSpacepointWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootSpacepointWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackParameterWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackParameterWriter.hpp index 625ef34ace0..9f5b2fa2c42 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackParameterWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackParameterWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackStatesWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackStatesWriter.hpp index 84ff593161f..bacb794113e 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackStatesWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackStatesWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackSummaryReader.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackSummaryReader.hpp index 3da4590c439..3ad5a7eda35 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackSummaryReader.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackSummaryReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackSummaryWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackSummaryWriter.hpp index 8ff1a5bce78..5c9a71d6c94 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackSummaryWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootTrackSummaryWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootUtility.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootUtility.hpp index addbcc7a583..fedc931e1e0 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootUtility.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootUtility.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootVertexReader.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootVertexReader.hpp index 7523f91e436..46afe962bdb 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootVertexReader.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootVertexReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/include/ActsExamples/Io/Root/RootVertexWriter.hpp b/Examples/Io/Root/include/ActsExamples/Io/Root/RootVertexWriter.hpp index fbd66c29b5d..50666ad93d2 100644 --- a/Examples/Io/Root/include/ActsExamples/Io/Root/RootVertexWriter.hpp +++ b/Examples/Io/Root/include/ActsExamples/Io/Root/RootVertexWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Root/src/RootAthenaDumpReader.cpp b/Examples/Io/Root/src/RootAthenaDumpReader.cpp index 001a8d90bdb..a76bee1997a 100644 --- a/Examples/Io/Root/src/RootAthenaDumpReader.cpp +++ b/Examples/Io/Root/src/RootAthenaDumpReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootAthenaDumpReader.hpp" diff --git a/Examples/Io/Root/src/RootAthenaNTupleReader.cpp b/Examples/Io/Root/src/RootAthenaNTupleReader.cpp index cd1183124ac..ac06349c595 100644 --- a/Examples/Io/Root/src/RootAthenaNTupleReader.cpp +++ b/Examples/Io/Root/src/RootAthenaNTupleReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootAthenaNTupleReader.hpp" diff --git a/Examples/Io/Root/src/RootBFieldWriter.cpp b/Examples/Io/Root/src/RootBFieldWriter.cpp index 6704180811f..b8cb8b6c104 100644 --- a/Examples/Io/Root/src/RootBFieldWriter.cpp +++ b/Examples/Io/Root/src/RootBFieldWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootBFieldWriter.hpp" diff --git a/Examples/Io/Root/src/RootMaterialDecorator.cpp b/Examples/Io/Root/src/RootMaterialDecorator.cpp index 1cdce413c52..b8f49c53ea1 100644 --- a/Examples/Io/Root/src/RootMaterialDecorator.cpp +++ b/Examples/Io/Root/src/RootMaterialDecorator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootMaterialDecorator.hpp" diff --git a/Examples/Io/Root/src/RootMaterialTrackReader.cpp b/Examples/Io/Root/src/RootMaterialTrackReader.cpp index 69934cd743b..8781b134559 100644 --- a/Examples/Io/Root/src/RootMaterialTrackReader.cpp +++ b/Examples/Io/Root/src/RootMaterialTrackReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootMaterialTrackReader.hpp" diff --git a/Examples/Io/Root/src/RootMaterialTrackWriter.cpp b/Examples/Io/Root/src/RootMaterialTrackWriter.cpp index e3a5172d2f2..a7a5ee39f8c 100644 --- a/Examples/Io/Root/src/RootMaterialTrackWriter.cpp +++ b/Examples/Io/Root/src/RootMaterialTrackWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootMaterialTrackWriter.hpp" diff --git a/Examples/Io/Root/src/RootMaterialWriter.cpp b/Examples/Io/Root/src/RootMaterialWriter.cpp index f219c48ddde..5076ca62bd6 100644 --- a/Examples/Io/Root/src/RootMaterialWriter.cpp +++ b/Examples/Io/Root/src/RootMaterialWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootMaterialWriter.hpp" diff --git a/Examples/Io/Root/src/RootMeasurementWriter.cpp b/Examples/Io/Root/src/RootMeasurementWriter.cpp index 88b66e192f0..a716cb721a3 100644 --- a/Examples/Io/Root/src/RootMeasurementWriter.cpp +++ b/Examples/Io/Root/src/RootMeasurementWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootMeasurementWriter.hpp" diff --git a/Examples/Io/Root/src/RootParticleReader.cpp b/Examples/Io/Root/src/RootParticleReader.cpp index 34a5bd12e12..973986d6704 100644 --- a/Examples/Io/Root/src/RootParticleReader.cpp +++ b/Examples/Io/Root/src/RootParticleReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootParticleReader.hpp" diff --git a/Examples/Io/Root/src/RootParticleWriter.cpp b/Examples/Io/Root/src/RootParticleWriter.cpp index 72e5b653be4..fbd1333c38c 100644 --- a/Examples/Io/Root/src/RootParticleWriter.cpp +++ b/Examples/Io/Root/src/RootParticleWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootParticleWriter.hpp" diff --git a/Examples/Io/Root/src/RootPropagationStepsWriter.cpp b/Examples/Io/Root/src/RootPropagationStepsWriter.cpp index 13e37f44e65..c7866e056eb 100644 --- a/Examples/Io/Root/src/RootPropagationStepsWriter.cpp +++ b/Examples/Io/Root/src/RootPropagationStepsWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootPropagationStepsWriter.hpp" diff --git a/Examples/Io/Root/src/RootPropagationSummaryWriter.cpp b/Examples/Io/Root/src/RootPropagationSummaryWriter.cpp index ea2fa3191e4..07a1cfa105f 100644 --- a/Examples/Io/Root/src/RootPropagationSummaryWriter.cpp +++ b/Examples/Io/Root/src/RootPropagationSummaryWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootPropagationSummaryWriter.hpp" diff --git a/Examples/Io/Root/src/RootSeedWriter.cpp b/Examples/Io/Root/src/RootSeedWriter.cpp index 4219e9539ce..8a03fde982b 100644 --- a/Examples/Io/Root/src/RootSeedWriter.cpp +++ b/Examples/Io/Root/src/RootSeedWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootSeedWriter.hpp" diff --git a/Examples/Io/Root/src/RootSimHitReader.cpp b/Examples/Io/Root/src/RootSimHitReader.cpp index 65fcb446f0e..1e503d8711c 100644 --- a/Examples/Io/Root/src/RootSimHitReader.cpp +++ b/Examples/Io/Root/src/RootSimHitReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootSimHitReader.hpp" diff --git a/Examples/Io/Root/src/RootSimHitWriter.cpp b/Examples/Io/Root/src/RootSimHitWriter.cpp index 2637886e72c..fbb698b50e3 100644 --- a/Examples/Io/Root/src/RootSimHitWriter.cpp +++ b/Examples/Io/Root/src/RootSimHitWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootSimHitWriter.hpp" diff --git a/Examples/Io/Root/src/RootSpacepointWriter.cpp b/Examples/Io/Root/src/RootSpacepointWriter.cpp index e214d079a48..2fd0256afff 100644 --- a/Examples/Io/Root/src/RootSpacepointWriter.cpp +++ b/Examples/Io/Root/src/RootSpacepointWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootSpacepointWriter.hpp" diff --git a/Examples/Io/Root/src/RootTrackParameterWriter.cpp b/Examples/Io/Root/src/RootTrackParameterWriter.cpp index 57007ef64d8..d413adc519d 100644 --- a/Examples/Io/Root/src/RootTrackParameterWriter.cpp +++ b/Examples/Io/Root/src/RootTrackParameterWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootTrackParameterWriter.hpp" diff --git a/Examples/Io/Root/src/RootTrackStatesWriter.cpp b/Examples/Io/Root/src/RootTrackStatesWriter.cpp index 7015a535ff8..ad8467f239c 100644 --- a/Examples/Io/Root/src/RootTrackStatesWriter.cpp +++ b/Examples/Io/Root/src/RootTrackStatesWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootTrackStatesWriter.hpp" diff --git a/Examples/Io/Root/src/RootTrackSummaryReader.cpp b/Examples/Io/Root/src/RootTrackSummaryReader.cpp index 5ce1fee3ee8..3a4f206c927 100644 --- a/Examples/Io/Root/src/RootTrackSummaryReader.cpp +++ b/Examples/Io/Root/src/RootTrackSummaryReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootTrackSummaryReader.hpp" diff --git a/Examples/Io/Root/src/RootTrackSummaryWriter.cpp b/Examples/Io/Root/src/RootTrackSummaryWriter.cpp index 66af91e60b1..e3ae0d31943 100644 --- a/Examples/Io/Root/src/RootTrackSummaryWriter.cpp +++ b/Examples/Io/Root/src/RootTrackSummaryWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootTrackSummaryWriter.hpp" diff --git a/Examples/Io/Root/src/RootVertexReader.cpp b/Examples/Io/Root/src/RootVertexReader.cpp index f9619c68a07..93a986a6c04 100644 --- a/Examples/Io/Root/src/RootVertexReader.cpp +++ b/Examples/Io/Root/src/RootVertexReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootVertexReader.hpp" diff --git a/Examples/Io/Root/src/RootVertexWriter.cpp b/Examples/Io/Root/src/RootVertexWriter.cpp index 9408ca9af4f..fc9f57cd918 100644 --- a/Examples/Io/Root/src/RootVertexWriter.cpp +++ b/Examples/Io/Root/src/RootVertexWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Root/RootVertexWriter.hpp" diff --git a/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgDefaults.hpp b/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgDefaults.hpp index 16cde4add16..14d0474776e 100644 --- a/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgDefaults.hpp +++ b/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgDefaults.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgPointWriter.hpp b/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgPointWriter.hpp index e7ad17f0e4b..632ce5efab0 100644 --- a/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgPointWriter.hpp +++ b/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgPointWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgTrackingGeometryWriter.hpp b/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgTrackingGeometryWriter.hpp index ecf68ccf0dd..6126685303e 100644 --- a/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgTrackingGeometryWriter.hpp +++ b/Examples/Io/Svg/include/ActsExamples/Io/Svg/SvgTrackingGeometryWriter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Io/Svg/src/SvgTrackingGeometryWriter.cpp b/Examples/Io/Svg/src/SvgTrackingGeometryWriter.cpp index 07b0b4e0d6a..672995e9705 100644 --- a/Examples/Io/Svg/src/SvgTrackingGeometryWriter.cpp +++ b/Examples/Io/Svg/src/SvgTrackingGeometryWriter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Io/Svg/SvgTrackingGeometryWriter.hpp" diff --git a/Examples/Python/include/Acts/Plugins/Python/Utilities.hpp b/Examples/Python/include/Acts/Plugins/Python/Utilities.hpp index 4e0805a40d1..64f8b73fed5 100644 --- a/Examples/Python/include/Acts/Plugins/Python/Utilities.hpp +++ b/Examples/Python/include/Acts/Plugins/Python/Utilities.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Python/setup.sh.in b/Examples/Python/setup.sh.in index 3c9de89ba16..dd06c1556a4 100644 --- a/Examples/Python/setup.sh.in +++ b/Examples/Python/setup.sh.in @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2021-2022 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # This script sets up the ACTS Python bindings in the environment in a somewhat # robust way. diff --git a/Examples/Python/src/AmbiguityResolution.cpp b/Examples/Python/src/AmbiguityResolution.cpp index 7c8f6a69a03..2075a522609 100644 --- a/Examples/Python/src/AmbiguityResolution.cpp +++ b/Examples/Python/src/AmbiguityResolution.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "ActsExamples/AmbiguityResolution/GreedyAmbiguityResolutionAlgorithm.hpp" diff --git a/Examples/Python/src/Base.cpp b/Examples/Python/src/Base.cpp index 3f15d70ee98..4d5eec557bd 100644 --- a/Examples/Python/src/Base.cpp +++ b/Examples/Python/src/Base.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Definitions/PdgParticle.hpp" diff --git a/Examples/Python/src/Covfie.cpp b/Examples/Python/src/Covfie.cpp index d4ad5d30b00..5a630400d88 100644 --- a/Examples/Python/src/Covfie.cpp +++ b/Examples/Python/src/Covfie.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Covfie/FieldConversion.hpp" #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/CovfieStub.cpp b/Examples/Python/src/CovfieStub.cpp index bb2ea09bfe1..542d969eef9 100644 --- a/Examples/Python/src/CovfieStub.cpp +++ b/Examples/Python/src/CovfieStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/DD4hepComponent.cpp b/Examples/Python/src/DD4hepComponent.cpp index be4d30b5f5e..f4ad0277aea 100644 --- a/Examples/Python/src/DD4hepComponent.cpp +++ b/Examples/Python/src/DD4hepComponent.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/GeometryIdGenerator.hpp" #include "Acts/Plugins/DD4hep/DD4hepDetectorElement.hpp" diff --git a/Examples/Python/src/Detector.cpp b/Examples/Python/src/Detector.cpp index 524aa867383..6b9ef68f927 100644 --- a/Examples/Python/src/Detector.cpp +++ b/Examples/Python/src/Detector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/TrackingGeometry.hpp" #include "Acts/Material/IMaterialDecorator.hpp" diff --git a/Examples/Python/src/Detray.cpp b/Examples/Python/src/Detray.cpp index d254a51443d..a409d80c4bf 100644 --- a/Examples/Python/src/Detray.cpp +++ b/Examples/Python/src/Detray.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/Detector.hpp" #include "Acts/Plugins/Detray/DetrayConverter.hpp" diff --git a/Examples/Python/src/DetrayStub.cpp b/Examples/Python/src/DetrayStub.cpp index 2ade0dd8bc5..05589950017 100644 --- a/Examples/Python/src/DetrayStub.cpp +++ b/Examples/Python/src/DetrayStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/Digitization.cpp b/Examples/Python/src/Digitization.cpp index ef0e52015e8..a68d4871724 100644 --- a/Examples/Python/src/Digitization.cpp +++ b/Examples/Python/src/Digitization.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Geometry/GeometryHierarchyMap.hpp" diff --git a/Examples/Python/src/EDM4hepComponent.cpp b/Examples/Python/src/EDM4hepComponent.cpp index 3f780230c4e..5017596b7db 100644 --- a/Examples/Python/src/EDM4hepComponent.cpp +++ b/Examples/Python/src/EDM4hepComponent.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "ActsExamples/DD4hepDetector/DD4hepDetector.hpp" diff --git a/Examples/Python/src/EventData.cpp b/Examples/Python/src/EventData.cpp index 98861ed8840..3f8cfa50342 100644 --- a/Examples/Python/src/EventData.cpp +++ b/Examples/Python/src/EventData.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/PdgParticle.hpp" #include "Acts/EventData/ParticleHypothesis.hpp" diff --git a/Examples/Python/src/ExaTrkXTrackFinding.cpp b/Examples/Python/src/ExaTrkXTrackFinding.cpp index 2d9d0341362..db9190e7f66 100644 --- a/Examples/Python/src/ExaTrkXTrackFinding.cpp +++ b/Examples/Python/src/ExaTrkXTrackFinding.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/BoostTrackBuilding.hpp" #include "Acts/Plugins/ExaTrkX/CugraphTrackBuilding.hpp" diff --git a/Examples/Python/src/ExaTrkXTrackFindingStub.cpp b/Examples/Python/src/ExaTrkXTrackFindingStub.cpp index 00275ef1bea..79d6b1e9eb4 100644 --- a/Examples/Python/src/ExaTrkXTrackFindingStub.cpp +++ b/Examples/Python/src/ExaTrkXTrackFindingStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts::Python { struct Context; diff --git a/Examples/Python/src/ExampleAlgorithms.cpp b/Examples/Python/src/ExampleAlgorithms.cpp index 00b1e96bb73..598dde87b99 100644 --- a/Examples/Python/src/ExampleAlgorithms.cpp +++ b/Examples/Python/src/ExampleAlgorithms.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/Framework.cpp b/Examples/Python/src/Framework.cpp index 6664af7be31..a1953d4cbd5 100644 --- a/Examples/Python/src/Framework.cpp +++ b/Examples/Python/src/Framework.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "ActsExamples/Framework/AlgorithmContext.hpp" diff --git a/Examples/Python/src/Geant4Component.cpp b/Examples/Python/src/Geant4Component.cpp index c21a90a001f..14e7b138888 100644 --- a/Examples/Python/src/Geant4Component.cpp +++ b/Examples/Python/src/Geant4Component.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Detector/Detector.hpp" diff --git a/Examples/Python/src/Geant4DD4hepComponent.cpp b/Examples/Python/src/Geant4DD4hepComponent.cpp index cf2f5a87b8c..16ed3b40223 100644 --- a/Examples/Python/src/Geant4DD4hepComponent.cpp +++ b/Examples/Python/src/Geant4DD4hepComponent.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/DD4hepDetector/DD4hepDetector.hpp" #include "ActsExamples/DDG4/DDG4DetectorConstruction.hpp" diff --git a/Examples/Python/src/Geant4GeoModelComponent.cpp b/Examples/Python/src/Geant4GeoModelComponent.cpp index a092dcaa76b..80f6f89eec8 100644 --- a/Examples/Python/src/Geant4GeoModelComponent.cpp +++ b/Examples/Python/src/Geant4GeoModelComponent.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Framework/ProcessCode.hpp" #include "ActsExamples/Geant4/DetectorConstructionFactory.hpp" diff --git a/Examples/Python/src/Geant4HepMC3.cpp b/Examples/Python/src/Geant4HepMC3.cpp index 0d9e2ac967d..913a23da60f 100644 --- a/Examples/Python/src/Geant4HepMC3.cpp +++ b/Examples/Python/src/Geant4HepMC3.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "ActsExamples/Geant4/DetectorConstructionFactory.hpp" diff --git a/Examples/Python/src/Geant4HepMC3Stub.cpp b/Examples/Python/src/Geant4HepMC3Stub.cpp index 667a81ba2ca..9f59490b9d2 100644 --- a/Examples/Python/src/Geant4HepMC3Stub.cpp +++ b/Examples/Python/src/Geant4HepMC3Stub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts { namespace Python { diff --git a/Examples/Python/src/Generators.cpp b/Examples/Python/src/Generators.cpp index 8e0132cb5a5..ad4a7034840 100644 --- a/Examples/Python/src/Generators.cpp +++ b/Examples/Python/src/Generators.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Definitions/PdgParticle.hpp" diff --git a/Examples/Python/src/GeoModel.cpp b/Examples/Python/src/GeoModel.cpp index b9b59b02ec7..162062aa970 100644 --- a/Examples/Python/src/GeoModel.cpp +++ b/Examples/Python/src/GeoModel.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Must be on top to avoid some conflict between forward declare and typedef // Needed until https://gitlab.cern.ch/GeoModelDev/GeoModel/-/merge_requests/351 diff --git a/Examples/Python/src/GeoModelStub.cpp b/Examples/Python/src/GeoModelStub.cpp index 8ec521b9619..9dc40e01997 100644 --- a/Examples/Python/src/GeoModelStub.cpp +++ b/Examples/Python/src/GeoModelStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts::Python { struct Context; diff --git a/Examples/Python/src/Geometry.cpp b/Examples/Python/src/Geometry.cpp index 8fe1c5448c3..4fb0f07d07a 100644 --- a/Examples/Python/src/Geometry.cpp +++ b/Examples/Python/src/Geometry.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Detector/CuboidalContainerBuilder.hpp" diff --git a/Examples/Python/src/GeometryBuildingGen1.cpp b/Examples/Python/src/GeometryBuildingGen1.cpp index fce63455d8d..2886c41e1d5 100644 --- a/Examples/Python/src/GeometryBuildingGen1.cpp +++ b/Examples/Python/src/GeometryBuildingGen1.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/CylinderVolumeBounds.hpp" #include "Acts/Geometry/CylinderVolumeHelper.hpp" diff --git a/Examples/Python/src/Hashing.cpp b/Examples/Python/src/Hashing.cpp index e5829f32fa0..57883557846 100644 --- a/Examples/Python/src/Hashing.cpp +++ b/Examples/Python/src/Hashing.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Hashing/HashingAlgorithmConfig.hpp" #include "Acts/Plugins/Hashing/HashingTrainingConfig.hpp" diff --git a/Examples/Python/src/HashingStub.cpp b/Examples/Python/src/HashingStub.cpp index ae15639d133..7168ef2b0a6 100644 --- a/Examples/Python/src/HashingStub.cpp +++ b/Examples/Python/src/HashingStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts::Python { struct Context; diff --git a/Examples/Python/src/HepMC3.cpp b/Examples/Python/src/HepMC3.cpp index a8c51fa0c29..63c67b6a42b 100644 --- a/Examples/Python/src/HepMC3.cpp +++ b/Examples/Python/src/HepMC3.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "ActsExamples/HepMC/HepMCProcessExtractor.hpp" diff --git a/Examples/Python/src/HepMC3Stub.cpp b/Examples/Python/src/HepMC3Stub.cpp index 7e3919d9dca..40aae062eb8 100644 --- a/Examples/Python/src/HepMC3Stub.cpp +++ b/Examples/Python/src/HepMC3Stub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts::Python { struct Context; diff --git a/Examples/Python/src/Input.cpp b/Examples/Python/src/Input.cpp index 2036e51674a..f75af4f4271 100644 --- a/Examples/Python/src/Input.cpp +++ b/Examples/Python/src/Input.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "ActsExamples/EventData/Cluster.hpp" diff --git a/Examples/Python/src/Json.cpp b/Examples/Python/src/Json.cpp index 13f9155dde3..be367612ac2 100644 --- a/Examples/Python/src/Json.cpp +++ b/Examples/Python/src/Json.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Detector/Detector.hpp" diff --git a/Examples/Python/src/JsonStub.cpp b/Examples/Python/src/JsonStub.cpp index 3eea9438e08..5e5f6c0ba38 100644 --- a/Examples/Python/src/JsonStub.cpp +++ b/Examples/Python/src/JsonStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/MagneticField.cpp b/Examples/Python/src/MagneticField.cpp index bff62ec0e80..6e0c1728941 100644 --- a/Examples/Python/src/MagneticField.cpp +++ b/Examples/Python/src/MagneticField.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/MagneticField/MagneticField.hpp" diff --git a/Examples/Python/src/Material.cpp b/Examples/Python/src/Material.cpp index ed7a2b5216e..bbc7199e237 100644 --- a/Examples/Python/src/Material.cpp +++ b/Examples/Python/src/Material.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/GeometryContext.hpp" #include "Acts/MagneticField/MagneticFieldContext.hpp" diff --git a/Examples/Python/src/ModuleEntry.cpp b/Examples/Python/src/ModuleEntry.cpp index 791eabc327b..77348edaf1c 100644 --- a/Examples/Python/src/ModuleEntry.cpp +++ b/Examples/Python/src/ModuleEntry.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/ActsVersion.hpp" #include "Acts/Geometry/GeometryContext.hpp" diff --git a/Examples/Python/src/Obj.cpp b/Examples/Python/src/Obj.cpp index 2a36d06ad09..ce03e60a3fe 100644 --- a/Examples/Python/src/Obj.cpp +++ b/Examples/Python/src/Obj.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Python/src/Onnx.cpp b/Examples/Python/src/Onnx.cpp index edc9c627efd..c22e595bb43 100644 --- a/Examples/Python/src/Onnx.cpp +++ b/Examples/Python/src/Onnx.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "ActsExamples/TrackFindingML/AmbiguityResolutionMLAlgorithm.hpp" diff --git a/Examples/Python/src/OnnxNeuralCalibrator.cpp b/Examples/Python/src/OnnxNeuralCalibrator.cpp index e0358262be2..e70b6e077a7 100644 --- a/Examples/Python/src/OnnxNeuralCalibrator.cpp +++ b/Examples/Python/src/OnnxNeuralCalibrator.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include diff --git a/Examples/Python/src/OnnxNeuralCalibratorStub.cpp b/Examples/Python/src/OnnxNeuralCalibratorStub.cpp index bb7b38ef3ac..5be9c65535e 100644 --- a/Examples/Python/src/OnnxNeuralCalibratorStub.cpp +++ b/Examples/Python/src/OnnxNeuralCalibratorStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/OnnxStub.cpp b/Examples/Python/src/OnnxStub.cpp index 304ee45475e..436297c7087 100644 --- a/Examples/Python/src/OnnxStub.cpp +++ b/Examples/Python/src/OnnxStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts::Python { struct Context; diff --git a/Examples/Python/src/Output.cpp b/Examples/Python/src/Output.cpp index 7e78dbcde9b..328ae9ecd92 100644 --- a/Examples/Python/src/Output.cpp +++ b/Examples/Python/src/Output.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/TrackParametrization.hpp" #include "Acts/Geometry/GeometryHierarchyMap.hpp" diff --git a/Examples/Python/src/Propagation.cpp b/Examples/Python/src/Propagation.cpp index 2d194569ced..5356b7c4337 100644 --- a/Examples/Python/src/Propagation.cpp +++ b/Examples/Python/src/Propagation.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Direction.hpp" #include "Acts/EventData/TrackParameters.hpp" diff --git a/Examples/Python/src/Pythia8.cpp b/Examples/Python/src/Pythia8.cpp index 9865c9d5231..45ba043531e 100644 --- a/Examples/Python/src/Pythia8.cpp +++ b/Examples/Python/src/Pythia8.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/PdgParticle.hpp" #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/Pythia8Stub.cpp b/Examples/Python/src/Pythia8Stub.cpp index 547be16e167..bd9765f5cbf 100644 --- a/Examples/Python/src/Pythia8Stub.cpp +++ b/Examples/Python/src/Pythia8Stub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/Svg.cpp b/Examples/Python/src/Svg.cpp index a798b9db9b3..2c0219d0466 100644 --- a/Examples/Python/src/Svg.cpp +++ b/Examples/Python/src/Svg.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Detector/Detector.hpp" #include "Acts/Detector/DetectorVolume.hpp" diff --git a/Examples/Python/src/SvgStub.cpp b/Examples/Python/src/SvgStub.cpp index 61bce57b319..b6980999e1c 100644 --- a/Examples/Python/src/SvgStub.cpp +++ b/Examples/Python/src/SvgStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. namespace Acts::Python { struct Context; diff --git a/Examples/Python/src/Traccc.cpp b/Examples/Python/src/Traccc.cpp index f590b0e6c29..71f6ca29147 100644 --- a/Examples/Python/src/Traccc.cpp +++ b/Examples/Python/src/Traccc.cpp @@ -1,18 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. - -// This file is part of the Acts project. -// -// Copyright (C) 2024 CERN for the benefit of the Acts project -// -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Detray/DetrayConversionUtils.hpp" #include "Acts/Plugins/Detray/DetrayConverter.hpp" diff --git a/Examples/Python/src/TracccStub.cpp b/Examples/Python/src/TracccStub.cpp index 65b802a77b4..cadd3a6b04b 100644 --- a/Examples/Python/src/TracccStub.cpp +++ b/Examples/Python/src/TracccStub.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/TrackFinding.cpp b/Examples/Python/src/TrackFinding.cpp index 1473ded385b..05ebcb3c7a7 100644 --- a/Examples/Python/src/TrackFinding.cpp +++ b/Examples/Python/src/TrackFinding.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/SpacePointContainer.hpp" #include "Acts/Geometry/GeometryHierarchyMap.hpp" diff --git a/Examples/Python/src/TrackFitting.cpp b/Examples/Python/src/TrackFitting.cpp index 55ff34a87cc..20c6010c8ee 100644 --- a/Examples/Python/src/TrackFitting.cpp +++ b/Examples/Python/src/TrackFitting.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/EventData/detail/CorrectedTransformationFreeToBound.hpp" diff --git a/Examples/Python/src/TruthTracking.cpp b/Examples/Python/src/TruthTracking.cpp index 9c968c1ecc2..85d34698b7b 100644 --- a/Examples/Python/src/TruthTracking.cpp +++ b/Examples/Python/src/TruthTracking.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "Acts/Utilities/Logger.hpp" diff --git a/Examples/Python/src/Utilities.cpp b/Examples/Python/src/Utilities.cpp index 05852a03645..7a68a6a3bdb 100644 --- a/Examples/Python/src/Utilities.cpp +++ b/Examples/Python/src/Utilities.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" diff --git a/Examples/Python/src/Vertexing.cpp b/Examples/Python/src/Vertexing.cpp index 335d29d1c87..1c4638739a9 100644 --- a/Examples/Python/src/Vertexing.cpp +++ b/Examples/Python/src/Vertexing.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Python/Utilities.hpp" #include "ActsExamples/EventData/Index.hpp" diff --git a/Examples/Scripts/MaterialMapping/Mat_map.C b/Examples/Scripts/MaterialMapping/Mat_map.C index 200aa99af2b..9f58e605244 100644 --- a/Examples/Scripts/MaterialMapping/Mat_map.C +++ b/Examples/Scripts/MaterialMapping/Mat_map.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Examples/Scripts/MaterialMapping/Mat_map_detector_plot.C b/Examples/Scripts/MaterialMapping/Mat_map_detector_plot.C index ae4c7c5588b..9441c176736 100644 --- a/Examples/Scripts/MaterialMapping/Mat_map_detector_plot.C +++ b/Examples/Scripts/MaterialMapping/Mat_map_detector_plot.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Examples/Scripts/MaterialMapping/Mat_map_detector_plot_ratio.C b/Examples/Scripts/MaterialMapping/Mat_map_detector_plot_ratio.C index dfbb12effa9..fafe59e0c49 100644 --- a/Examples/Scripts/MaterialMapping/Mat_map_detector_plot_ratio.C +++ b/Examples/Scripts/MaterialMapping/Mat_map_detector_plot_ratio.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Mat_map_detector_plot.C" diff --git a/Examples/Scripts/MaterialMapping/Mat_map_surface_plot.C b/Examples/Scripts/MaterialMapping/Mat_map_surface_plot.C index 584664ec1e7..a5482d30846 100644 --- a/Examples/Scripts/MaterialMapping/Mat_map_surface_plot.C +++ b/Examples/Scripts/MaterialMapping/Mat_map_surface_plot.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_1D.C b/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_1D.C index d69d271a605..6068f624693 100644 --- a/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_1D.C +++ b/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_1D.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_dist.C b/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_dist.C index 5b822199aca..020b9cd717d 100644 --- a/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_dist.C +++ b/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_dist.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_ratio.C b/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_ratio.C index 311dd234369..9fd02c9b747 100644 --- a/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_ratio.C +++ b/Examples/Scripts/MaterialMapping/Mat_map_surface_plot_ratio.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Mat_map_surface_plot.C" diff --git a/Examples/Scripts/MaterialMapping/MaterialComposition.cpp b/Examples/Scripts/MaterialMapping/MaterialComposition.cpp index cecaedb49b3..348a4912f29 100644 --- a/Examples/Scripts/MaterialMapping/MaterialComposition.cpp +++ b/Examples/Scripts/MaterialMapping/MaterialComposition.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/Options.hpp" diff --git a/Examples/Scripts/MaterialMapping/configureMap.py b/Examples/Scripts/MaterialMapping/configureMap.py index 770343f27fc..26cbfc551fe 100644 --- a/Examples/Scripts/MaterialMapping/configureMap.py +++ b/Examples/Scripts/MaterialMapping/configureMap.py @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2020-2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. import json import sys diff --git a/Examples/Scripts/MaterialMapping/materialComposition.C b/Examples/Scripts/MaterialMapping/materialComposition.C index ecd3863f19d..c041930ff00 100644 --- a/Examples/Scripts/MaterialMapping/materialComposition.C +++ b/Examples/Scripts/MaterialMapping/materialComposition.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Scripts/MaterialMapping/materialPlotHelper.cpp b/Examples/Scripts/MaterialMapping/materialPlotHelper.cpp index 4df1adc84b4..38b3baeae12 100644 --- a/Examples/Scripts/MaterialMapping/materialPlotHelper.cpp +++ b/Examples/Scripts/MaterialMapping/materialPlotHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "materialPlotHelper.hpp" diff --git a/Examples/Scripts/MaterialMapping/materialPlotHelper.hpp b/Examples/Scripts/MaterialMapping/materialPlotHelper.hpp index b8dde85a01f..db3419db605 100644 --- a/Examples/Scripts/MaterialMapping/materialPlotHelper.hpp +++ b/Examples/Scripts/MaterialMapping/materialPlotHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Scripts/MaterialMapping/writeMapConfig.py b/Examples/Scripts/MaterialMapping/writeMapConfig.py index ec06b8f189f..0f7f525ad5a 100644 --- a/Examples/Scripts/MaterialMapping/writeMapConfig.py +++ b/Examples/Scripts/MaterialMapping/writeMapConfig.py @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2020-2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. import json import sys diff --git a/Examples/Scripts/TrackingPerformance/CommonUtils.h b/Examples/Scripts/TrackingPerformance/CommonUtils.h index 016765910fb..20fbf60f9af 100644 --- a/Examples/Scripts/TrackingPerformance/CommonUtils.h +++ b/Examples/Scripts/TrackingPerformance/CommonUtils.h @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Scripts/TrackingPerformance/ResidualsAndPulls.cpp b/Examples/Scripts/TrackingPerformance/ResidualsAndPulls.cpp index 5c87a8fd1c4..b686c02a6a3 100644 --- a/Examples/Scripts/TrackingPerformance/ResidualsAndPulls.cpp +++ b/Examples/Scripts/TrackingPerformance/ResidualsAndPulls.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Scripts/TrackingPerformance/TrackSummary.cpp b/Examples/Scripts/TrackingPerformance/TrackSummary.cpp index 05e33a81d46..d606d07980b 100644 --- a/Examples/Scripts/TrackingPerformance/TrackSummary.cpp +++ b/Examples/Scripts/TrackingPerformance/TrackSummary.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsExamples/Utilities/Options.hpp" diff --git a/Examples/Scripts/TrackingPerformance/TreeReader.h b/Examples/Scripts/TrackingPerformance/TreeReader.h index bb03ca493c2..1346d5197ea 100644 --- a/Examples/Scripts/TrackingPerformance/TreeReader.h +++ b/Examples/Scripts/TrackingPerformance/TreeReader.h @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Scripts/TrackingPerformance/boundParamResolution.C b/Examples/Scripts/TrackingPerformance/boundParamResolution.C index da91f1465b6..11c53943fb8 100644 --- a/Examples/Scripts/TrackingPerformance/boundParamResolution.C +++ b/Examples/Scripts/TrackingPerformance/boundParamResolution.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Scripts/TrackingPerformance/defineReconstructionPerformance.C b/Examples/Scripts/TrackingPerformance/defineReconstructionPerformance.C index c2c0322b609..1eda61ac6bd 100644 --- a/Examples/Scripts/TrackingPerformance/defineReconstructionPerformance.C +++ b/Examples/Scripts/TrackingPerformance/defineReconstructionPerformance.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Scripts/TrackingPerformance/reconstructionPerformance.C b/Examples/Scripts/TrackingPerformance/reconstructionPerformance.C index 46451a26710..7dbf43e9283 100644 --- a/Examples/Scripts/TrackingPerformance/reconstructionPerformance.C +++ b/Examples/Scripts/TrackingPerformance/reconstructionPerformance.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Scripts/TrackingPerformance/trackSummaryAnalysis.C b/Examples/Scripts/TrackingPerformance/trackSummaryAnalysis.C index 2fd404aa8f1..2b32ca271ee 100644 --- a/Examples/Scripts/TrackingPerformance/trackSummaryAnalysis.C +++ b/Examples/Scripts/TrackingPerformance/trackSummaryAnalysis.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Scripts/compareAssignedRealPos.C b/Examples/Scripts/compareAssignedRealPos.C index 96b2c2fd36d..4a700dfee8c 100644 --- a/Examples/Scripts/compareAssignedRealPos.C +++ b/Examples/Scripts/compareAssignedRealPos.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /* * compareAssignedRealPos.C diff --git a/Examples/Scripts/compareDistributions.C b/Examples/Scripts/compareDistributions.C index 3ab9c8cff62..25bcff962bb 100644 --- a/Examples/Scripts/compareDistributions.C +++ b/Examples/Scripts/compareDistributions.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "TFile.h" #include "TH1F.h" diff --git a/Examples/Scripts/compareHistograms.C b/Examples/Scripts/compareHistograms.C index 4603cd7664b..a8e2d9c9880 100644 --- a/Examples/Scripts/compareHistograms.C +++ b/Examples/Scripts/compareHistograms.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "TFile.h" #include "TH1F.h" diff --git a/Examples/Scripts/compareHitHistograms.C b/Examples/Scripts/compareHitHistograms.C index 2687366471c..53a5c50baf6 100644 --- a/Examples/Scripts/compareHitHistograms.C +++ b/Examples/Scripts/compareHitHistograms.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /* * compareHitHistograms.C diff --git a/Examples/Scripts/compareRootFiles.C b/Examples/Scripts/compareRootFiles.C index 2c5a4a99586..d279a717102 100644 --- a/Examples/Scripts/compareRootFiles.C +++ b/Examples/Scripts/compareRootFiles.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // This ROOT script compares two ROOT files in an order-insensitive way. Its // intended use is to compare the output of a single-threaded and multi-threaded diff --git a/Examples/Scripts/compareRootFiles.hpp b/Examples/Scripts/compareRootFiles.hpp index d22853fec92..464230373be 100644 --- a/Examples/Scripts/compareRootFiles.hpp +++ b/Examples/Scripts/compareRootFiles.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Examples/Scripts/errorOfHistograms.C b/Examples/Scripts/errorOfHistograms.C index fa907faa18b..2b5584f8e87 100644 --- a/Examples/Scripts/errorOfHistograms.C +++ b/Examples/Scripts/errorOfHistograms.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /* * errorOfHistograms.C diff --git a/Examples/Scripts/fullMaterial.C b/Examples/Scripts/fullMaterial.C index 6e14752d901..d984a99c675 100644 --- a/Examples/Scripts/fullMaterial.C +++ b/Examples/Scripts/fullMaterial.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /* * fullMaterial.cxx diff --git a/Examples/Scripts/layerMaterial.C b/Examples/Scripts/layerMaterial.C index 240e9f9e41c..6c618b22398 100644 --- a/Examples/Scripts/layerMaterial.C +++ b/Examples/Scripts/layerMaterial.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // // layerMaterial.C diff --git a/Examples/Scripts/momentumDistributions.C b/Examples/Scripts/momentumDistributions.C index cd19fb51980..b4aa6e4e3d9 100644 --- a/Examples/Scripts/momentumDistributions.C +++ b/Examples/Scripts/momentumDistributions.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "TFile.h" #include "TH1F.h" diff --git a/Examples/Scripts/printBField.C b/Examples/Scripts/printBField.C index 27181311e32..d88a3609dae 100644 --- a/Examples/Scripts/printBField.C +++ b/Examples/Scripts/printBField.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Examples/Scripts/printHits.C b/Examples/Scripts/printHits.C index f35bc0f3715..bd3fa21f4d7 100644 --- a/Examples/Scripts/printHits.C +++ b/Examples/Scripts/printHits.C @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Fatras/Geant4/include/ActsFatras/Geant4/DummyDetectorConstruction.hpp b/Fatras/Geant4/include/ActsFatras/Geant4/DummyDetectorConstruction.hpp index e42c1030388..ca671ef6188 100644 --- a/Fatras/Geant4/include/ActsFatras/Geant4/DummyDetectorConstruction.hpp +++ b/Fatras/Geant4/include/ActsFatras/Geant4/DummyDetectorConstruction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/Geant4/include/ActsFatras/Geant4/Geant4Decay.hpp b/Fatras/Geant4/include/ActsFatras/Geant4/Geant4Decay.hpp index 60b8c7fd3ca..177e3ac6221 100644 --- a/Fatras/Geant4/include/ActsFatras/Geant4/Geant4Decay.hpp +++ b/Fatras/Geant4/include/ActsFatras/Geant4/Geant4Decay.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/Geant4/include/ActsFatras/Geant4/PDGtoG4Converter.hpp b/Fatras/Geant4/include/ActsFatras/Geant4/PDGtoG4Converter.hpp index efdc36c7cb1..67766de3bf5 100644 --- a/Fatras/Geant4/include/ActsFatras/Geant4/PDGtoG4Converter.hpp +++ b/Fatras/Geant4/include/ActsFatras/Geant4/PDGtoG4Converter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/Geant4/src/DummyDetectorConstruction.cpp b/Fatras/Geant4/src/DummyDetectorConstruction.cpp index 583913f66e7..80d180b37cc 100644 --- a/Fatras/Geant4/src/DummyDetectorConstruction.cpp +++ b/Fatras/Geant4/src/DummyDetectorConstruction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Geant4/DummyDetectorConstruction.hpp" diff --git a/Fatras/Geant4/src/Geant4Decay.cpp b/Fatras/Geant4/src/Geant4Decay.cpp index f8532aafd2d..41b5a3656b1 100644 --- a/Fatras/Geant4/src/Geant4Decay.cpp +++ b/Fatras/Geant4/src/Geant4Decay.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Geant4/Geant4Decay.hpp" diff --git a/Fatras/Geant4/src/PDGtoG4Converter.cpp b/Fatras/Geant4/src/PDGtoG4Converter.cpp index 25ff64377ac..320f0fcc550 100644 --- a/Fatras/Geant4/src/PDGtoG4Converter.cpp +++ b/Fatras/Geant4/src/PDGtoG4Converter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Geant4/PDGtoG4Converter.hpp" diff --git a/Fatras/include/ActsFatras/Digitization/ChannelMerger.hpp b/Fatras/include/ActsFatras/Digitization/ChannelMerger.hpp index f09f142cb32..67e0b79ef9f 100644 --- a/Fatras/include/ActsFatras/Digitization/ChannelMerger.hpp +++ b/Fatras/include/ActsFatras/Digitization/ChannelMerger.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Digitization/Channelizer.hpp b/Fatras/include/ActsFatras/Digitization/Channelizer.hpp index 08b59bdf4f8..4f190365fe9 100644 --- a/Fatras/include/ActsFatras/Digitization/Channelizer.hpp +++ b/Fatras/include/ActsFatras/Digitization/Channelizer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Digitization/DigitizationData.hpp b/Fatras/include/ActsFatras/Digitization/DigitizationData.hpp index 52ca3ff5ae1..314cbcc5eb1 100644 --- a/Fatras/include/ActsFatras/Digitization/DigitizationData.hpp +++ b/Fatras/include/ActsFatras/Digitization/DigitizationData.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Digitization/DigitizationError.hpp b/Fatras/include/ActsFatras/Digitization/DigitizationError.hpp index 77d4ebb1be4..d07097afd2d 100644 --- a/Fatras/include/ActsFatras/Digitization/DigitizationError.hpp +++ b/Fatras/include/ActsFatras/Digitization/DigitizationError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Digitization/PlanarSurfaceDrift.hpp b/Fatras/include/ActsFatras/Digitization/PlanarSurfaceDrift.hpp index 02c3da08446..1f5ac70d771 100644 --- a/Fatras/include/ActsFatras/Digitization/PlanarSurfaceDrift.hpp +++ b/Fatras/include/ActsFatras/Digitization/PlanarSurfaceDrift.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Digitization/PlanarSurfaceMask.hpp b/Fatras/include/ActsFatras/Digitization/PlanarSurfaceMask.hpp index 62082cef75e..9aa2efbfc90 100644 --- a/Fatras/include/ActsFatras/Digitization/PlanarSurfaceMask.hpp +++ b/Fatras/include/ActsFatras/Digitization/PlanarSurfaceMask.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Digitization/Segmentizer.hpp b/Fatras/include/ActsFatras/Digitization/Segmentizer.hpp index 309faa75ff2..9824ff21295 100644 --- a/Fatras/include/ActsFatras/Digitization/Segmentizer.hpp +++ b/Fatras/include/ActsFatras/Digitization/Segmentizer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Digitization/UncorrelatedHitSmearer.hpp b/Fatras/include/ActsFatras/Digitization/UncorrelatedHitSmearer.hpp index 0600006b5f2..4420c8a6200 100644 --- a/Fatras/include/ActsFatras/Digitization/UncorrelatedHitSmearer.hpp +++ b/Fatras/include/ActsFatras/Digitization/UncorrelatedHitSmearer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/EventData/Barcode.hpp b/Fatras/include/ActsFatras/EventData/Barcode.hpp index 9b0719f55bc..7054d4efbf7 100644 --- a/Fatras/include/ActsFatras/EventData/Barcode.hpp +++ b/Fatras/include/ActsFatras/EventData/Barcode.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/EventData/Hit.hpp b/Fatras/include/ActsFatras/EventData/Hit.hpp index 6a3e8bb4a90..d5eb25662f8 100644 --- a/Fatras/include/ActsFatras/EventData/Hit.hpp +++ b/Fatras/include/ActsFatras/EventData/Hit.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/EventData/Particle.hpp b/Fatras/include/ActsFatras/EventData/Particle.hpp index 2687f0361c7..6eff75c404b 100644 --- a/Fatras/include/ActsFatras/EventData/Particle.hpp +++ b/Fatras/include/ActsFatras/EventData/Particle.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/EventData/ParticleOutcome.hpp b/Fatras/include/ActsFatras/EventData/ParticleOutcome.hpp index ad15e5c73e7..22f2092ef1b 100644 --- a/Fatras/include/ActsFatras/EventData/ParticleOutcome.hpp +++ b/Fatras/include/ActsFatras/EventData/ParticleOutcome.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/EventData/ProcessType.hpp b/Fatras/include/ActsFatras/EventData/ProcessType.hpp index 62a6cc85ae4..b0d30b443cc 100644 --- a/Fatras/include/ActsFatras/EventData/ProcessType.hpp +++ b/Fatras/include/ActsFatras/EventData/ProcessType.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Kernel/ContinuousProcess.hpp b/Fatras/include/ActsFatras/Kernel/ContinuousProcess.hpp index 570d509d883..5a23ac0f256 100644 --- a/Fatras/include/ActsFatras/Kernel/ContinuousProcess.hpp +++ b/Fatras/include/ActsFatras/Kernel/ContinuousProcess.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Kernel/InteractionList.hpp b/Fatras/include/ActsFatras/Kernel/InteractionList.hpp index 86b33b0c43f..eb6816c490a 100644 --- a/Fatras/include/ActsFatras/Kernel/InteractionList.hpp +++ b/Fatras/include/ActsFatras/Kernel/InteractionList.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Kernel/Simulation.hpp b/Fatras/include/ActsFatras/Kernel/Simulation.hpp index d13c0ac4149..cbc1115225a 100644 --- a/Fatras/include/ActsFatras/Kernel/Simulation.hpp +++ b/Fatras/include/ActsFatras/Kernel/Simulation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Kernel/SimulationResult.hpp b/Fatras/include/ActsFatras/Kernel/SimulationResult.hpp index 9ffbc04278d..2750e01b616 100644 --- a/Fatras/include/ActsFatras/Kernel/SimulationResult.hpp +++ b/Fatras/include/ActsFatras/Kernel/SimulationResult.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Kernel/detail/SimulationActor.hpp b/Fatras/include/ActsFatras/Kernel/detail/SimulationActor.hpp index fff4a4dea66..cc6d7200868 100644 --- a/Fatras/include/ActsFatras/Kernel/detail/SimulationActor.hpp +++ b/Fatras/include/ActsFatras/Kernel/detail/SimulationActor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Kernel/detail/SimulationError.hpp b/Fatras/include/ActsFatras/Kernel/detail/SimulationError.hpp index 56b3c6bc515..9769441c65f 100644 --- a/Fatras/include/ActsFatras/Kernel/detail/SimulationError.hpp +++ b/Fatras/include/ActsFatras/Kernel/detail/SimulationError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/Decay/NoDecay.hpp b/Fatras/include/ActsFatras/Physics/Decay/NoDecay.hpp index 929d7b6f7ef..17aefd7341b 100644 --- a/Fatras/include/ActsFatras/Physics/Decay/NoDecay.hpp +++ b/Fatras/include/ActsFatras/Physics/Decay/NoDecay.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/BetheBloch.hpp b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/BetheBloch.hpp index 8316c09f762..72a8ff951da 100644 --- a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/BetheBloch.hpp +++ b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/BetheBloch.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/BetheHeitler.hpp b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/BetheHeitler.hpp index 7a336210c55..416497c77e0 100644 --- a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/BetheHeitler.hpp +++ b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/BetheHeitler.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/PhotonConversion.hpp b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/PhotonConversion.hpp index 56df1017296..6bc567dfd1d 100644 --- a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/PhotonConversion.hpp +++ b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/PhotonConversion.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/Scattering.hpp b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/Scattering.hpp index db07ad29edb..82ca49200d1 100644 --- a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/Scattering.hpp +++ b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/Scattering.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/GaussianMixture.hpp b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/GaussianMixture.hpp index 70274e11c40..771d7edaf11 100644 --- a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/GaussianMixture.hpp +++ b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/GaussianMixture.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/GeneralMixture.hpp b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/GeneralMixture.hpp index 200e84bc1f7..5a9e2d2b7a3 100644 --- a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/GeneralMixture.hpp +++ b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/GeneralMixture.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/Highland.hpp b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/Highland.hpp index 5ac710ed727..e3a0f59f84c 100644 --- a/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/Highland.hpp +++ b/Fatras/include/ActsFatras/Physics/ElectroMagnetic/detail/Highland.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/NuclearInteraction/NuclearInteraction.hpp b/Fatras/include/ActsFatras/Physics/NuclearInteraction/NuclearInteraction.hpp index a408b1ff97f..dea8a0ae334 100644 --- a/Fatras/include/ActsFatras/Physics/NuclearInteraction/NuclearInteraction.hpp +++ b/Fatras/include/ActsFatras/Physics/NuclearInteraction/NuclearInteraction.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/NuclearInteraction/NuclearInteractionParameters.hpp b/Fatras/include/ActsFatras/Physics/NuclearInteraction/NuclearInteractionParameters.hpp index 981cab16741..617acd5ba94 100644 --- a/Fatras/include/ActsFatras/Physics/NuclearInteraction/NuclearInteractionParameters.hpp +++ b/Fatras/include/ActsFatras/Physics/NuclearInteraction/NuclearInteractionParameters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Physics/StandardInteractions.hpp b/Fatras/include/ActsFatras/Physics/StandardInteractions.hpp index 4d7708bf6f5..4bb655224b5 100644 --- a/Fatras/include/ActsFatras/Physics/StandardInteractions.hpp +++ b/Fatras/include/ActsFatras/Physics/StandardInteractions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Selectors/KinematicCasts.hpp b/Fatras/include/ActsFatras/Selectors/KinematicCasts.hpp index 56305f3ca2e..f3fa45b124c 100644 --- a/Fatras/include/ActsFatras/Selectors/KinematicCasts.hpp +++ b/Fatras/include/ActsFatras/Selectors/KinematicCasts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Selectors/ParticleSelectors.hpp b/Fatras/include/ActsFatras/Selectors/ParticleSelectors.hpp index 25deaa431bc..4deb110969e 100644 --- a/Fatras/include/ActsFatras/Selectors/ParticleSelectors.hpp +++ b/Fatras/include/ActsFatras/Selectors/ParticleSelectors.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Selectors/SelectorHelpers.hpp b/Fatras/include/ActsFatras/Selectors/SelectorHelpers.hpp index 75d3628603a..b9ff1e5a00f 100644 --- a/Fatras/include/ActsFatras/Selectors/SelectorHelpers.hpp +++ b/Fatras/include/ActsFatras/Selectors/SelectorHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Selectors/SurfaceSelectors.hpp b/Fatras/include/ActsFatras/Selectors/SurfaceSelectors.hpp index 9755d472c0c..1c138f80892 100644 --- a/Fatras/include/ActsFatras/Selectors/SurfaceSelectors.hpp +++ b/Fatras/include/ActsFatras/Selectors/SurfaceSelectors.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Selectors/detail/combine_selectors.hpp b/Fatras/include/ActsFatras/Selectors/detail/combine_selectors.hpp index 23a95492c62..0ce31ba7989 100644 --- a/Fatras/include/ActsFatras/Selectors/detail/combine_selectors.hpp +++ b/Fatras/include/ActsFatras/Selectors/detail/combine_selectors.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/include/ActsFatras/Utilities/LandauDistribution.hpp b/Fatras/include/ActsFatras/Utilities/LandauDistribution.hpp index 837fa7e94f4..5fe4f57280c 100644 --- a/Fatras/include/ActsFatras/Utilities/LandauDistribution.hpp +++ b/Fatras/include/ActsFatras/Utilities/LandauDistribution.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Fatras/scripts/generate_particle_data_table.py b/Fatras/scripts/generate_particle_data_table.py index c05123b3bb0..ebbbab2720b 100755 --- a/Fatras/scripts/generate_particle_data_table.py +++ b/Fatras/scripts/generate_particle_data_table.py @@ -25,13 +25,13 @@ def main(output_file): CODE_HEADER = """\ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // The entries within this file have been automatically created using the // particle data files from the 2019 edition of the Review of Particle Physics diff --git a/Fatras/src/Digitization/DigitizationError.cpp b/Fatras/src/Digitization/DigitizationError.cpp index 2aca8c3ee13..34978ff3d57 100644 --- a/Fatras/src/Digitization/DigitizationError.cpp +++ b/Fatras/src/Digitization/DigitizationError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Digitization/DigitizationError.hpp" diff --git a/Fatras/src/Digitization/PlanarSurfaceDrift.cpp b/Fatras/src/Digitization/PlanarSurfaceDrift.cpp index 31c10f131c3..006444f3fee 100644 --- a/Fatras/src/Digitization/PlanarSurfaceDrift.cpp +++ b/Fatras/src/Digitization/PlanarSurfaceDrift.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Digitization/PlanarSurfaceDrift.hpp" diff --git a/Fatras/src/Digitization/PlanarSurfaceMask.cpp b/Fatras/src/Digitization/PlanarSurfaceMask.cpp index fc25f609917..490100e8180 100644 --- a/Fatras/src/Digitization/PlanarSurfaceMask.cpp +++ b/Fatras/src/Digitization/PlanarSurfaceMask.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Digitization/PlanarSurfaceMask.hpp" diff --git a/Fatras/src/Digitization/Segmentizer.cpp b/Fatras/src/Digitization/Segmentizer.cpp index 8a3702a772f..27dfb903efc 100644 --- a/Fatras/src/Digitization/Segmentizer.cpp +++ b/Fatras/src/Digitization/Segmentizer.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Digitization/Segmentizer.hpp" diff --git a/Fatras/src/EventData/Particle.cpp b/Fatras/src/EventData/Particle.cpp index c19f9b88433..17cf41d8efe 100644 --- a/Fatras/src/EventData/Particle.cpp +++ b/Fatras/src/EventData/Particle.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/EventData/Particle.hpp" diff --git a/Fatras/src/EventData/ParticleOutcome.cpp b/Fatras/src/EventData/ParticleOutcome.cpp index 4c5fa59ad1d..83ebdc4a62a 100644 --- a/Fatras/src/EventData/ParticleOutcome.cpp +++ b/Fatras/src/EventData/ParticleOutcome.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/EventData/ParticleOutcome.hpp" diff --git a/Fatras/src/EventData/ProcessType.cpp b/Fatras/src/EventData/ProcessType.cpp index 7f1bc026c87..1e93465241e 100644 --- a/Fatras/src/EventData/ProcessType.cpp +++ b/Fatras/src/EventData/ProcessType.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/EventData/ProcessType.hpp" diff --git a/Fatras/src/Kernel/SimulationError.cpp b/Fatras/src/Kernel/SimulationError.cpp index 7c86bcc7890..9f08cd8946c 100644 --- a/Fatras/src/Kernel/SimulationError.cpp +++ b/Fatras/src/Kernel/SimulationError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Kernel/detail/SimulationError.hpp" diff --git a/Fatras/src/Physics/BetheHeitler.cpp b/Fatras/src/Physics/BetheHeitler.cpp index 9ef32c94e3f..66d8d8176a0 100644 --- a/Fatras/src/Physics/BetheHeitler.cpp +++ b/Fatras/src/Physics/BetheHeitler.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Physics/ElectroMagnetic/BetheHeitler.hpp" diff --git a/Fatras/src/Physics/NuclearInteraction/NuclearInteraction.cpp b/Fatras/src/Physics/NuclearInteraction/NuclearInteraction.cpp index de9446a046e..1515fc3c626 100644 --- a/Fatras/src/Physics/NuclearInteraction/NuclearInteraction.cpp +++ b/Fatras/src/Physics/NuclearInteraction/NuclearInteraction.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Physics/NuclearInteraction/NuclearInteraction.hpp" diff --git a/Fatras/src/Physics/PhotonConversion.cpp b/Fatras/src/Physics/PhotonConversion.cpp index f4cac0e5e9d..73bb83ad413 100644 --- a/Fatras/src/Physics/PhotonConversion.cpp +++ b/Fatras/src/Physics/PhotonConversion.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Physics/ElectroMagnetic/PhotonConversion.hpp" diff --git a/Fatras/src/Physics/StandardInteractions.cpp b/Fatras/src/Physics/StandardInteractions.cpp index 886e7bc5396..b2c7fbfec71 100644 --- a/Fatras/src/Physics/StandardInteractions.cpp +++ b/Fatras/src/Physics/StandardInteractions.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Physics/StandardInteractions.hpp" diff --git a/Fatras/src/Utilities/LandauDistribution.cpp b/Fatras/src/Utilities/LandauDistribution.cpp index d22c53082bf..fa85d7e593a 100644 --- a/Fatras/src/Utilities/LandauDistribution.cpp +++ b/Fatras/src/Utilities/LandauDistribution.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "ActsFatras/Utilities/LandauDistribution.hpp" diff --git a/LICENSE b/LICENSE index a612ad9813b..d0a1fa1482e 100644 --- a/LICENSE +++ b/LICENSE @@ -357,7 +357,7 @@ Exhibit A - Source Code Form License Notice This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. + file, You can obtain one at https://mozilla.org/MPL/2.0/. If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/DetectorSvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/DetectorSvgConverter.hpp index c7c681ed6ce..3be5b384602 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/DetectorSvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/DetectorSvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/DetectorVolumeSvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/DetectorVolumeSvgConverter.hpp index f79a15d3776..6ac84da77ee 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/DetectorVolumeSvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/DetectorVolumeSvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/EventDataSvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/EventDataSvgConverter.hpp index afcb255a197..c05539d6dd4 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/EventDataSvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/EventDataSvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/GridSvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/GridSvgConverter.hpp index 96076d50377..909fc44a356 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/GridSvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/GridSvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/IndexedSurfacesSvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/IndexedSurfacesSvgConverter.hpp index 5d02953e950..79397aba878 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/IndexedSurfacesSvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/IndexedSurfacesSvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/LayerSvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/LayerSvgConverter.hpp index 8c62796ef6b..9743d95f33e 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/LayerSvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/LayerSvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/PortalSvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/PortalSvgConverter.hpp index dc83f0c54bc..658e29667ba 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/PortalSvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/PortalSvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SurfaceArraySvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SurfaceArraySvgConverter.hpp index 181cd3c5b96..1335a197599 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SurfaceArraySvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SurfaceArraySvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SurfaceSvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SurfaceSvgConverter.hpp index 817c19db6c5..54043a65de1 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SurfaceSvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SurfaceSvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SvgUtils.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SvgUtils.hpp index 4567190e921..a6faa5ed42c 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SvgUtils.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/SvgUtils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/TrackingGeometrySvgConverter.hpp b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/TrackingGeometrySvgConverter.hpp index 3b934bef4e9..2baa9728c9d 100644 --- a/Plugins/ActSVG/include/Acts/Plugins/ActSVG/TrackingGeometrySvgConverter.hpp +++ b/Plugins/ActSVG/include/Acts/Plugins/ActSVG/TrackingGeometrySvgConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ActSVG/src/DetectorSvgConverter.cpp b/Plugins/ActSVG/src/DetectorSvgConverter.cpp index c9ff7dff516..6607a9ddb08 100644 --- a/Plugins/ActSVG/src/DetectorSvgConverter.cpp +++ b/Plugins/ActSVG/src/DetectorSvgConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ActSVG/DetectorSvgConverter.hpp" diff --git a/Plugins/ActSVG/src/DetectorVolumeSvgConverter.cpp b/Plugins/ActSVG/src/DetectorVolumeSvgConverter.cpp index db949a2c256..c187e69569b 100644 --- a/Plugins/ActSVG/src/DetectorVolumeSvgConverter.cpp +++ b/Plugins/ActSVG/src/DetectorVolumeSvgConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ActSVG/DetectorVolumeSvgConverter.hpp" diff --git a/Plugins/ActSVG/src/EventDataSvgConverter.cpp b/Plugins/ActSVG/src/EventDataSvgConverter.cpp index 6c98bf958c1..cf6de982922 100644 --- a/Plugins/ActSVG/src/EventDataSvgConverter.cpp +++ b/Plugins/ActSVG/src/EventDataSvgConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ActSVG/EventDataSvgConverter.hpp" diff --git a/Plugins/ActSVG/src/LayerSvgConverter.cpp b/Plugins/ActSVG/src/LayerSvgConverter.cpp index 11cabd0e0e7..3f018bf562f 100644 --- a/Plugins/ActSVG/src/LayerSvgConverter.cpp +++ b/Plugins/ActSVG/src/LayerSvgConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ActSVG/LayerSvgConverter.hpp" diff --git a/Plugins/ActSVG/src/PortalSvgConverter.cpp b/Plugins/ActSVG/src/PortalSvgConverter.cpp index 47ca4a12c1a..67cc7975bfe 100644 --- a/Plugins/ActSVG/src/PortalSvgConverter.cpp +++ b/Plugins/ActSVG/src/PortalSvgConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ActSVG/PortalSvgConverter.hpp" diff --git a/Plugins/ActSVG/src/SurfaceArraySvgConverter.cpp b/Plugins/ActSVG/src/SurfaceArraySvgConverter.cpp index 990cfdc75bb..f2acf870864 100644 --- a/Plugins/ActSVG/src/SurfaceArraySvgConverter.cpp +++ b/Plugins/ActSVG/src/SurfaceArraySvgConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ActSVG/SurfaceArraySvgConverter.hpp" diff --git a/Plugins/ActSVG/src/SurfaceSvgConverter.cpp b/Plugins/ActSVG/src/SurfaceSvgConverter.cpp index ea827a7bbf3..c5bf2bba429 100644 --- a/Plugins/ActSVG/src/SurfaceSvgConverter.cpp +++ b/Plugins/ActSVG/src/SurfaceSvgConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ActSVG/SurfaceSvgConverter.hpp" diff --git a/Plugins/ActSVG/src/TrackingGeometrySvgConverter.cpp b/Plugins/ActSVG/src/TrackingGeometrySvgConverter.cpp index 83429d36bc1..5f82f0127b0 100644 --- a/Plugins/ActSVG/src/TrackingGeometrySvgConverter.cpp +++ b/Plugins/ActSVG/src/TrackingGeometrySvgConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ActSVG/TrackingGeometrySvgConverter.hpp" diff --git a/Plugins/Covfie/include/Acts/Plugins/Covfie/FieldConversion.hpp b/Plugins/Covfie/include/Acts/Plugins/Covfie/FieldConversion.hpp index cfb1d6b516c..9edfc0a6066 100644 --- a/Plugins/Covfie/include/Acts/Plugins/Covfie/FieldConversion.hpp +++ b/Plugins/Covfie/include/Acts/Plugins/Covfie/FieldConversion.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Covfie/src/FieldConversion.cpp b/Plugins/Covfie/src/FieldConversion.cpp index 6f182f25885..7aee611b0fa 100644 --- a/Plugins/Covfie/src/FieldConversion.cpp +++ b/Plugins/Covfie/src/FieldConversion.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Covfie/FieldConversion.hpp" diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Cuda.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Cuda.hpp index c2f8a21ef05..c2f126b9aac 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Cuda.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Cuda.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/Kernels.cuh b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/Kernels.cuh index 375c19f5377..6ad2eefa538 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/Kernels.cuh +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/Kernels.cuh @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/SeedFinder.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/SeedFinder.hpp index 40718c1891b..2928a05ffac 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/SeedFinder.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/SeedFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/SeedFinder.ipp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/SeedFinder.ipp index 7ccdc1cee62..662c2b2ad27 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/SeedFinder.ipp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding/SeedFinder.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Seeding/CandidatesForMiddleSp.hpp" diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/CountDublets.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/CountDublets.hpp index bf4ba8ab6ad..b53bbe5064b 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/CountDublets.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/CountDublets.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/FindDublets.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/FindDublets.hpp index 3bb9b2b7011..0f58ac721dc 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/FindDublets.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/FindDublets.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/FindTriplets.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/FindTriplets.hpp index 3fca7899946..7dbd798ae5e 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/FindTriplets.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/FindTriplets.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/Types.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/Types.hpp index 1e7ff758a3b..d7fb0b5524c 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/Types.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/Details/Types.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/SeedFinder.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/SeedFinder.hpp index f66c9655ec6..a2522eaf340 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/SeedFinder.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/SeedFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/SeedFinder.ipp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/SeedFinder.ipp index 7304496aace..736209619a4 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/SeedFinder.ipp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/SeedFinder.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/TripletFilterConfig.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/TripletFilterConfig.hpp index 60f1527e7e9..864658782fa 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/TripletFilterConfig.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Seeding2/TripletFilterConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/Arrays.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/Arrays.hpp index c08e480a185..be9d3b38c9f 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/Arrays.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/Arrays.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuMatrix.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuMatrix.hpp index 51e450108aa..87a57923f8a 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuMatrix.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuMatrix.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuScalar.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuScalar.hpp index 57f9009c8a6..749624177dc 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuScalar.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuScalar.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuVector.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuVector.hpp index 547b16d4bba..0c8d9cab266 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuVector.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CpuVector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaMatrix.cu b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaMatrix.cu index ee3737e4598..eba95a456a5 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaMatrix.cu +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaMatrix.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaScalar.cu b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaScalar.cu index 7d3f8437a4b..889f483e1ed 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaScalar.cu +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaScalar.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaUtils.cu b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaUtils.cu index bb4f70f3375..d24c6232f95 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaUtils.cu +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaUtils.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaVector.cu b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaVector.cu index 256dd2d24f2..5856b4da3ac 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaVector.cu +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/CudaVector.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/Info.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/Info.hpp index 989aea2e2df..0a4c14ef705 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/Info.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/Info.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/MemoryManager.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/MemoryManager.hpp index 6225cf4f7a3..b54d6418e3f 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/MemoryManager.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/MemoryManager.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/StreamWrapper.hpp b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/StreamWrapper.hpp index 39d8c646143..739807e86a1 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/StreamWrapper.hpp +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/StreamWrapper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/UsmMatrix.cu b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/UsmMatrix.cu index 94dfb99fa4e..135df2abaf0 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/UsmMatrix.cu +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/UsmMatrix.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/UsmScalar.cu b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/UsmScalar.cu index 79185fca0ec..418908deac0 100644 --- a/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/UsmScalar.cu +++ b/Plugins/Cuda/include/Acts/Plugins/Cuda/Utilities/UsmScalar.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/src/Seeding/Kernels.cu b/Plugins/Cuda/src/Seeding/Kernels.cu index f255d8b70ab..4bed66a0906 100644 --- a/Plugins/Cuda/src/Seeding/Kernels.cu +++ b/Plugins/Cuda/src/Seeding/Kernels.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Cuda/Cuda.hpp" #include "Acts/Plugins/Cuda/Seeding/Kernels.cuh" diff --git a/Plugins/Cuda/src/Seeding2/CountDublets.cu b/Plugins/Cuda/src/Seeding2/CountDublets.cu index 2d63aa09982..38f036671a7 100644 --- a/Plugins/Cuda/src/Seeding2/CountDublets.cu +++ b/Plugins/Cuda/src/Seeding2/CountDublets.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // CUDA plugin include(s). #include "Acts/Plugins/Cuda/Seeding2/Details/CountDublets.hpp" diff --git a/Plugins/Cuda/src/Seeding2/FindDublets.cu b/Plugins/Cuda/src/Seeding2/FindDublets.cu index cec93c50f00..d2b98455c91 100644 --- a/Plugins/Cuda/src/Seeding2/FindDublets.cu +++ b/Plugins/Cuda/src/Seeding2/FindDublets.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // CUDA plugin include(s). #include "Acts/Plugins/Cuda/Seeding2/Details/FindDublets.hpp" diff --git a/Plugins/Cuda/src/Seeding2/FindTriplets.cu b/Plugins/Cuda/src/Seeding2/FindTriplets.cu index fa20df5faa6..e1f712161f6 100644 --- a/Plugins/Cuda/src/Seeding2/FindTriplets.cu +++ b/Plugins/Cuda/src/Seeding2/FindTriplets.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // CUDA plugin include(s). #include "Acts/Plugins/Cuda/Seeding2/Details/FindTriplets.hpp" diff --git a/Plugins/Cuda/src/Utilities/Arrays.cu b/Plugins/Cuda/src/Utilities/Arrays.cu index 4418c44ae4b..57dea52911c 100644 --- a/Plugins/Cuda/src/Utilities/Arrays.cu +++ b/Plugins/Cuda/src/Utilities/Arrays.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // CUDA plugin include(s). #include "Acts/Plugins/Cuda/Seeding2/Details/Types.hpp" diff --git a/Plugins/Cuda/src/Utilities/ErrorCheck.cu b/Plugins/Cuda/src/Utilities/ErrorCheck.cu index cded125e6af..d197e1b1071 100644 --- a/Plugins/Cuda/src/Utilities/ErrorCheck.cu +++ b/Plugins/Cuda/src/Utilities/ErrorCheck.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // CUDA include(s). #include diff --git a/Plugins/Cuda/src/Utilities/ErrorCheck.cuh b/Plugins/Cuda/src/Utilities/ErrorCheck.cuh index 035fb61c739..40ed81516d6 100644 --- a/Plugins/Cuda/src/Utilities/ErrorCheck.cuh +++ b/Plugins/Cuda/src/Utilities/ErrorCheck.cuh @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/src/Utilities/Info.cu b/Plugins/Cuda/src/Utilities/Info.cu index 3ca375b6f47..5cd4fc116cd 100644 --- a/Plugins/Cuda/src/Utilities/Info.cu +++ b/Plugins/Cuda/src/Utilities/Info.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // CUDA plugin include(s). #include "Acts/Plugins/Cuda/Utilities/Info.hpp" diff --git a/Plugins/Cuda/src/Utilities/MatrixMacros.hpp b/Plugins/Cuda/src/Utilities/MatrixMacros.hpp index bf724191228..4df65c19a79 100644 --- a/Plugins/Cuda/src/Utilities/MatrixMacros.hpp +++ b/Plugins/Cuda/src/Utilities/MatrixMacros.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/src/Utilities/MemoryManager.cu b/Plugins/Cuda/src/Utilities/MemoryManager.cu index ae623be672d..551ebf4c26c 100644 --- a/Plugins/Cuda/src/Utilities/MemoryManager.cu +++ b/Plugins/Cuda/src/Utilities/MemoryManager.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // CUDA plugin include(s). #include "Acts/Plugins/Cuda/Utilities/MemoryManager.hpp" diff --git a/Plugins/Cuda/src/Utilities/StreamHandlers.cuh b/Plugins/Cuda/src/Utilities/StreamHandlers.cuh index e1191ef45a5..67bc0788e43 100644 --- a/Plugins/Cuda/src/Utilities/StreamHandlers.cuh +++ b/Plugins/Cuda/src/Utilities/StreamHandlers.cuh @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Cuda/src/Utilities/StreamWrapper.cu b/Plugins/Cuda/src/Utilities/StreamWrapper.cu index 720a7282de8..ed732c39c85 100644 --- a/Plugins/Cuda/src/Utilities/StreamWrapper.cu +++ b/Plugins/Cuda/src/Utilities/StreamWrapper.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // CUDA plugin include(s). #include "Acts/Plugins/Cuda/Utilities/StreamWrapper.hpp" diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/ConvertDD4hepDetector.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/ConvertDD4hepDetector.hpp index 083d229c7cf..295f01fec5d 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/ConvertDD4hepDetector.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/ConvertDD4hepDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepBinningHelpers.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepBinningHelpers.hpp index aa5ddabef2a..6577905bbba 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepBinningHelpers.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepBinningHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepBlueprintFactory.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepBlueprintFactory.hpp index 0f89983507c..b2dfa9243f9 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepBlueprintFactory.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepBlueprintFactory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepConversionHelpers.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepConversionHelpers.hpp index 4d2e0a0b6ac..9924522d4e7 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepConversionHelpers.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepConversionHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorElement.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorElement.hpp index 360d82358c4..0dd6788c315 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorElement.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorStructure.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorStructure.hpp index a63b8a5067f..a11601b579b 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorStructure.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorStructure.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorSurfaceFactory.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorSurfaceFactory.hpp index 4c660dd6d5e..0a283433ab4 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorSurfaceFactory.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepDetectorSurfaceFactory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepFieldAdapter.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepFieldAdapter.hpp index 22bb9ba490f..9d2007235e5 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepFieldAdapter.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepFieldAdapter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepIdentifierMapper.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepIdentifierMapper.hpp index 4463db89c79..029df67304b 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepIdentifierMapper.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepIdentifierMapper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepLayerBuilder.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepLayerBuilder.hpp index bed054f90e7..5fba8474a77 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepLayerBuilder.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepLayerBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepLayerStructure.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepLayerStructure.hpp index 441386857b2..bdf4780fb2f 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepLayerStructure.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepLayerStructure.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepMaterialHelpers.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepMaterialHelpers.hpp index 552b37f5584..0749a9599b3 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepMaterialHelpers.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepMaterialHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepVolumeBuilder.hpp b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepVolumeBuilder.hpp index ba97eed110b..c57515b4bc4 100644 --- a/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepVolumeBuilder.hpp +++ b/Plugins/DD4hep/include/Acts/Plugins/DD4hep/DD4hepVolumeBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Plugins/DD4hep/src/ConvertDD4hepDetector.cpp b/Plugins/DD4hep/src/ConvertDD4hepDetector.cpp index ed783e8f8ef..ae80bb1a0c7 100644 --- a/Plugins/DD4hep/src/ConvertDD4hepDetector.cpp +++ b/Plugins/DD4hep/src/ConvertDD4hepDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/ConvertDD4hepDetector.hpp" diff --git a/Plugins/DD4hep/src/DD4hepBinningHelpers.cpp b/Plugins/DD4hep/src/DD4hepBinningHelpers.cpp index 2b37ebc040f..349050c8fc0 100644 --- a/Plugins/DD4hep/src/DD4hepBinningHelpers.cpp +++ b/Plugins/DD4hep/src/DD4hepBinningHelpers.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepBinningHelpers.hpp" diff --git a/Plugins/DD4hep/src/DD4hepBlueprintFactory.cpp b/Plugins/DD4hep/src/DD4hepBlueprintFactory.cpp index 351b5312af3..4a214d3ba32 100644 --- a/Plugins/DD4hep/src/DD4hepBlueprintFactory.cpp +++ b/Plugins/DD4hep/src/DD4hepBlueprintFactory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepBlueprintFactory.hpp" diff --git a/Plugins/DD4hep/src/DD4hepDetectorElement.cpp b/Plugins/DD4hep/src/DD4hepDetectorElement.cpp index 78a6abc14ff..e145e80d412 100644 --- a/Plugins/DD4hep/src/DD4hepDetectorElement.cpp +++ b/Plugins/DD4hep/src/DD4hepDetectorElement.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepDetectorElement.hpp" diff --git a/Plugins/DD4hep/src/DD4hepDetectorStructure.cpp b/Plugins/DD4hep/src/DD4hepDetectorStructure.cpp index c1d46bf628b..ca4ae439004 100644 --- a/Plugins/DD4hep/src/DD4hepDetectorStructure.cpp +++ b/Plugins/DD4hep/src/DD4hepDetectorStructure.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepDetectorStructure.hpp" diff --git a/Plugins/DD4hep/src/DD4hepDetectorSurfaceFactory.cpp b/Plugins/DD4hep/src/DD4hepDetectorSurfaceFactory.cpp index 99d55278b21..f3059fbeed5 100644 --- a/Plugins/DD4hep/src/DD4hepDetectorSurfaceFactory.cpp +++ b/Plugins/DD4hep/src/DD4hepDetectorSurfaceFactory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepDetectorSurfaceFactory.hpp" diff --git a/Plugins/DD4hep/src/DD4hepFieldAdapter.cpp b/Plugins/DD4hep/src/DD4hepFieldAdapter.cpp index e2ae69eb617..ad8ce3c2bda 100644 --- a/Plugins/DD4hep/src/DD4hepFieldAdapter.cpp +++ b/Plugins/DD4hep/src/DD4hepFieldAdapter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepFieldAdapter.hpp" diff --git a/Plugins/DD4hep/src/DD4hepLayerBuilder.cpp b/Plugins/DD4hep/src/DD4hepLayerBuilder.cpp index 705426c9bb3..3b85391ab84 100644 --- a/Plugins/DD4hep/src/DD4hepLayerBuilder.cpp +++ b/Plugins/DD4hep/src/DD4hepLayerBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepLayerBuilder.hpp" diff --git a/Plugins/DD4hep/src/DD4hepLayerStructure.cpp b/Plugins/DD4hep/src/DD4hepLayerStructure.cpp index d72de42b88d..64b6e8cf32e 100644 --- a/Plugins/DD4hep/src/DD4hepLayerStructure.cpp +++ b/Plugins/DD4hep/src/DD4hepLayerStructure.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepLayerStructure.hpp" diff --git a/Plugins/DD4hep/src/DD4hepMaterialHelpers.cpp b/Plugins/DD4hep/src/DD4hepMaterialHelpers.cpp index 02fb1fa4947..3c897a5ddef 100644 --- a/Plugins/DD4hep/src/DD4hepMaterialHelpers.cpp +++ b/Plugins/DD4hep/src/DD4hepMaterialHelpers.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepMaterialHelpers.hpp" diff --git a/Plugins/DD4hep/src/DD4hepVolumeBuilder.cpp b/Plugins/DD4hep/src/DD4hepVolumeBuilder.cpp index 0913c3d31e1..cc3df6722d7 100644 --- a/Plugins/DD4hep/src/DD4hepVolumeBuilder.cpp +++ b/Plugins/DD4hep/src/DD4hepVolumeBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepVolumeBuilder.hpp" diff --git a/Plugins/Detray/include/Acts/Plugins/Detray/DetrayConversionUtils.hpp b/Plugins/Detray/include/Acts/Plugins/Detray/DetrayConversionUtils.hpp index f3a111f7aee..201aeb2807d 100644 --- a/Plugins/Detray/include/Acts/Plugins/Detray/DetrayConversionUtils.hpp +++ b/Plugins/Detray/include/Acts/Plugins/Detray/DetrayConversionUtils.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Detray/include/Acts/Plugins/Detray/DetrayConverter.hpp b/Plugins/Detray/include/Acts/Plugins/Detray/DetrayConverter.hpp index 75bf9c8f19b..2c8ca2c7fac 100644 --- a/Plugins/Detray/include/Acts/Plugins/Detray/DetrayConverter.hpp +++ b/Plugins/Detray/include/Acts/Plugins/Detray/DetrayConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Detray/include/Acts/Plugins/Detray/DetrayGeometryConverter.hpp b/Plugins/Detray/include/Acts/Plugins/Detray/DetrayGeometryConverter.hpp index 0d34765f8d7..2df31096746 100644 --- a/Plugins/Detray/include/Acts/Plugins/Detray/DetrayGeometryConverter.hpp +++ b/Plugins/Detray/include/Acts/Plugins/Detray/DetrayGeometryConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Detray/include/Acts/Plugins/Detray/DetrayMaterialConverter.hpp b/Plugins/Detray/include/Acts/Plugins/Detray/DetrayMaterialConverter.hpp index fecdec364b8..d3be849e362 100644 --- a/Plugins/Detray/include/Acts/Plugins/Detray/DetrayMaterialConverter.hpp +++ b/Plugins/Detray/include/Acts/Plugins/Detray/DetrayMaterialConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Detray/include/Acts/Plugins/Detray/DetraySurfaceGridsConverter.hpp b/Plugins/Detray/include/Acts/Plugins/Detray/DetraySurfaceGridsConverter.hpp index c879f859bce..044922d5ad6 100644 --- a/Plugins/Detray/include/Acts/Plugins/Detray/DetraySurfaceGridsConverter.hpp +++ b/Plugins/Detray/include/Acts/Plugins/Detray/DetraySurfaceGridsConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Detray/src/DetrayConversionUtils.cpp b/Plugins/Detray/src/DetrayConversionUtils.cpp index 6c26781d8bd..b2a0f78138f 100644 --- a/Plugins/Detray/src/DetrayConversionUtils.cpp +++ b/Plugins/Detray/src/DetrayConversionUtils.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Detray/DetrayConversionUtils.hpp" diff --git a/Plugins/Detray/src/DetrayConverter.cpp b/Plugins/Detray/src/DetrayConverter.cpp index d35ff7cb6ba..aa958af8fa1 100644 --- a/Plugins/Detray/src/DetrayConverter.cpp +++ b/Plugins/Detray/src/DetrayConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Detray/DetrayConverter.hpp" diff --git a/Plugins/Detray/src/DetrayGeometryConverter.cpp b/Plugins/Detray/src/DetrayGeometryConverter.cpp index 67c76abeb98..da57d91c2bb 100644 --- a/Plugins/Detray/src/DetrayGeometryConverter.cpp +++ b/Plugins/Detray/src/DetrayGeometryConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Detray/DetrayGeometryConverter.hpp" diff --git a/Plugins/Detray/src/DetrayMaterialConverter.cpp b/Plugins/Detray/src/DetrayMaterialConverter.cpp index b31a1d2e81a..dd82b0d1b93 100644 --- a/Plugins/Detray/src/DetrayMaterialConverter.cpp +++ b/Plugins/Detray/src/DetrayMaterialConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Detray/DetrayMaterialConverter.hpp" diff --git a/Plugins/Detray/src/DetraySurfaceGridsConverter.cpp b/Plugins/Detray/src/DetraySurfaceGridsConverter.cpp index df9d2747261..f1572b77c08 100644 --- a/Plugins/Detray/src/DetraySurfaceGridsConverter.cpp +++ b/Plugins/Detray/src/DetraySurfaceGridsConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Detray/DetraySurfaceGridsConverter.hpp" diff --git a/Plugins/EDM4hep/include/Acts/Plugins/EDM4hep/EDM4hepUtil.hpp b/Plugins/EDM4hep/include/Acts/Plugins/EDM4hep/EDM4hepUtil.hpp index 9b55768f70b..c5fda03bc82 100644 --- a/Plugins/EDM4hep/include/Acts/Plugins/EDM4hep/EDM4hepUtil.hpp +++ b/Plugins/EDM4hep/include/Acts/Plugins/EDM4hep/EDM4hepUtil.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Plugins/EDM4hep/src/EDM4hepUtil.cpp b/Plugins/EDM4hep/src/EDM4hepUtil.cpp index ec22eb9c1a2..d90e555f173 100644 --- a/Plugins/EDM4hep/src/EDM4hepUtil.cpp +++ b/Plugins/EDM4hep/src/EDM4hepUtil.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/EDM4hep/EDM4hepUtil.hpp" diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/BoostTrackBuilding.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/BoostTrackBuilding.hpp index 9157c58a385..a6905d5b06c 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/BoostTrackBuilding.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/BoostTrackBuilding.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/CugraphTrackBuilding.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/CugraphTrackBuilding.hpp index 06d8d0bbeba..133ee79e187 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/CugraphTrackBuilding.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/CugraphTrackBuilding.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/ExaTrkXPipeline.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/ExaTrkXPipeline.hpp index b6f609727d8..60d822e4b1f 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/ExaTrkXPipeline.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/ExaTrkXPipeline.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/OnnxEdgeClassifier.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/OnnxEdgeClassifier.hpp index c506f3414a0..d672acfe78e 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/OnnxEdgeClassifier.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/OnnxEdgeClassifier.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/OnnxMetricLearning.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/OnnxMetricLearning.hpp index 0e12125574c..31c8adeea8e 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/OnnxMetricLearning.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/OnnxMetricLearning.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/Stages.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/Stages.hpp index 1e90b205cc2..2cb676b1bbe 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/Stages.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/Stages.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchEdgeClassifier.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchEdgeClassifier.hpp index c3cf46d30ca..3dcae08e0c6 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchEdgeClassifier.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchEdgeClassifier.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchGraphStoreHook.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchGraphStoreHook.hpp index 153811f0558..fddfa0fd50e 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchGraphStoreHook.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchGraphStoreHook.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchMetricLearning.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchMetricLearning.hpp index abaadd54b9c..fe31da1ee3e 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchMetricLearning.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchMetricLearning.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchTruthGraphMetricsHook.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchTruthGraphMetricsHook.hpp index 7116ea61e8c..032981b5b89 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchTruthGraphMetricsHook.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/TorchTruthGraphMetricsHook.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/CantorEdge.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/CantorEdge.hpp index 0543d564dda..75b33446177 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/CantorEdge.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/CantorEdge.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/TensorVectorConversion.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/TensorVectorConversion.hpp index 429888a5e5b..4a8172217a4 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/TensorVectorConversion.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/TensorVectorConversion.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/buildEdges.hpp b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/buildEdges.hpp index 1d41e9c3626..655e331c94e 100644 --- a/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/buildEdges.hpp +++ b/Plugins/ExaTrkX/include/Acts/Plugins/ExaTrkX/detail/buildEdges.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/src/BoostTrackBuilding.cpp b/Plugins/ExaTrkX/src/BoostTrackBuilding.cpp index aa072c83994..0d75b31cedd 100644 --- a/Plugins/ExaTrkX/src/BoostTrackBuilding.cpp +++ b/Plugins/ExaTrkX/src/BoostTrackBuilding.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/BoostTrackBuilding.hpp" diff --git a/Plugins/ExaTrkX/src/CugraphTrackBuilding.cpp b/Plugins/ExaTrkX/src/CugraphTrackBuilding.cpp index 56469e79083..7750cd7b3ac 100644 --- a/Plugins/ExaTrkX/src/CugraphTrackBuilding.cpp +++ b/Plugins/ExaTrkX/src/CugraphTrackBuilding.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/CugraphTrackBuilding.hpp" diff --git a/Plugins/ExaTrkX/src/ExaTrkXPipeline.cpp b/Plugins/ExaTrkX/src/ExaTrkXPipeline.cpp index 0505e9d0ccd..a3d6dfe1148 100644 --- a/Plugins/ExaTrkX/src/ExaTrkXPipeline.cpp +++ b/Plugins/ExaTrkX/src/ExaTrkXPipeline.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/ExaTrkXPipeline.hpp" diff --git a/Plugins/ExaTrkX/src/OnnxEdgeClassifier.cpp b/Plugins/ExaTrkX/src/OnnxEdgeClassifier.cpp index 0ac324ccc4f..ac6d28ce358 100644 --- a/Plugins/ExaTrkX/src/OnnxEdgeClassifier.cpp +++ b/Plugins/ExaTrkX/src/OnnxEdgeClassifier.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/OnnxEdgeClassifier.hpp" diff --git a/Plugins/ExaTrkX/src/OnnxMetricLearning.cpp b/Plugins/ExaTrkX/src/OnnxMetricLearning.cpp index d1a7f7692e1..29ac6e87db9 100644 --- a/Plugins/ExaTrkX/src/OnnxMetricLearning.cpp +++ b/Plugins/ExaTrkX/src/OnnxMetricLearning.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/OnnxMetricLearning.hpp" diff --git a/Plugins/ExaTrkX/src/TorchEdgeClassifier.cpp b/Plugins/ExaTrkX/src/TorchEdgeClassifier.cpp index e5089ddd4f4..6187765b4ce 100644 --- a/Plugins/ExaTrkX/src/TorchEdgeClassifier.cpp +++ b/Plugins/ExaTrkX/src/TorchEdgeClassifier.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/TorchEdgeClassifier.hpp" diff --git a/Plugins/ExaTrkX/src/TorchGraphStoreHook.cpp b/Plugins/ExaTrkX/src/TorchGraphStoreHook.cpp index ccc208ca1fe..e4dc3a3413c 100644 --- a/Plugins/ExaTrkX/src/TorchGraphStoreHook.cpp +++ b/Plugins/ExaTrkX/src/TorchGraphStoreHook.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/TorchGraphStoreHook.hpp" diff --git a/Plugins/ExaTrkX/src/TorchMetricLearning.cpp b/Plugins/ExaTrkX/src/TorchMetricLearning.cpp index 58b2a55d751..b65c551a63b 100644 --- a/Plugins/ExaTrkX/src/TorchMetricLearning.cpp +++ b/Plugins/ExaTrkX/src/TorchMetricLearning.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/TorchMetricLearning.hpp" diff --git a/Plugins/ExaTrkX/src/TorchTruthGraphMetricsHook.cpp b/Plugins/ExaTrkX/src/TorchTruthGraphMetricsHook.cpp index ce829860eb1..ed766ffa16b 100644 --- a/Plugins/ExaTrkX/src/TorchTruthGraphMetricsHook.cpp +++ b/Plugins/ExaTrkX/src/TorchTruthGraphMetricsHook.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/TorchTruthGraphMetricsHook.hpp" diff --git a/Plugins/ExaTrkX/src/buildEdges.cpp b/Plugins/ExaTrkX/src/buildEdges.cpp index 699569b6161..1c0cf5a2ef0 100644 --- a/Plugins/ExaTrkX/src/buildEdges.cpp +++ b/Plugins/ExaTrkX/src/buildEdges.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/ExaTrkX/detail/buildEdges.hpp" diff --git a/Plugins/ExaTrkX/src/printCudaMemInfo.hpp b/Plugins/ExaTrkX/src/printCudaMemInfo.hpp index 739c89c7921..64d5497dfc7 100644 --- a/Plugins/ExaTrkX/src/printCudaMemInfo.hpp +++ b/Plugins/ExaTrkX/src/printCudaMemInfo.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/src/runSessionWithIoBinding.hpp b/Plugins/ExaTrkX/src/runSessionWithIoBinding.hpp index d8be7bfb332..bc93640b789 100644 --- a/Plugins/ExaTrkX/src/runSessionWithIoBinding.hpp +++ b/Plugins/ExaTrkX/src/runSessionWithIoBinding.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/ExaTrkX/src/weaklyConnectedComponentsCugraph.hpp b/Plugins/ExaTrkX/src/weaklyConnectedComponentsCugraph.hpp index 514a0044dfc..4eb498a326d 100644 --- a/Plugins/ExaTrkX/src/weaklyConnectedComponentsCugraph.hpp +++ b/Plugins/ExaTrkX/src/weaklyConnectedComponentsCugraph.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/FpeMonitoring/include/Acts/Plugins/FpeMonitoring/FpeMonitor.hpp b/Plugins/FpeMonitoring/include/Acts/Plugins/FpeMonitoring/FpeMonitor.hpp index d78d0cf2633..99e39da96d0 100644 --- a/Plugins/FpeMonitoring/include/Acts/Plugins/FpeMonitoring/FpeMonitor.hpp +++ b/Plugins/FpeMonitoring/include/Acts/Plugins/FpeMonitoring/FpeMonitor.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/FpeMonitoring/src/FpeMonitor.cpp b/Plugins/FpeMonitoring/src/FpeMonitor.cpp index 2940492c1e3..3b08145668e 100644 --- a/Plugins/FpeMonitoring/src/FpeMonitor.cpp +++ b/Plugins/FpeMonitoring/src/FpeMonitor.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/FpeMonitoring/FpeMonitor.hpp" diff --git a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4Converters.hpp b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4Converters.hpp index 61f3de729c4..a65b9d5c711 100644 --- a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4Converters.hpp +++ b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4Converters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4DetectorElement.hpp b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4DetectorElement.hpp index 3a2abb295b0..538cdc73853 100644 --- a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4DetectorElement.hpp +++ b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4DetectorElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4DetectorSurfaceFactory.hpp b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4DetectorSurfaceFactory.hpp index 14f6438b121..fae8fc20fea 100644 --- a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4DetectorSurfaceFactory.hpp +++ b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4DetectorSurfaceFactory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4PhysicalVolumeSelectors.hpp b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4PhysicalVolumeSelectors.hpp index e5da2bc2bc1..1fab98ea834 100644 --- a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4PhysicalVolumeSelectors.hpp +++ b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4PhysicalVolumeSelectors.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4SurfaceProvider.hpp b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4SurfaceProvider.hpp index 7747cce104a..0f0690bf079 100644 --- a/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4SurfaceProvider.hpp +++ b/Plugins/Geant4/include/Acts/Plugins/Geant4/Geant4SurfaceProvider.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Geant4/src/Geant4Converters.cpp b/Plugins/Geant4/src/Geant4Converters.cpp index fac1ebd8c92..db7d9f93f1e 100644 --- a/Plugins/Geant4/src/Geant4Converters.cpp +++ b/Plugins/Geant4/src/Geant4Converters.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Geant4/Geant4Converters.hpp" diff --git a/Plugins/Geant4/src/Geant4DetectorElement.cpp b/Plugins/Geant4/src/Geant4DetectorElement.cpp index 8d0bfe9677b..d5410d3b3de 100644 --- a/Plugins/Geant4/src/Geant4DetectorElement.cpp +++ b/Plugins/Geant4/src/Geant4DetectorElement.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Geant4/Geant4DetectorElement.hpp" diff --git a/Plugins/Geant4/src/Geant4DetectorSurfaceFactory.cpp b/Plugins/Geant4/src/Geant4DetectorSurfaceFactory.cpp index 5c9b841c6ff..40e082519c7 100644 --- a/Plugins/Geant4/src/Geant4DetectorSurfaceFactory.cpp +++ b/Plugins/Geant4/src/Geant4DetectorSurfaceFactory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Geant4/Geant4DetectorSurfaceFactory.hpp" diff --git a/Plugins/Geant4/src/Geant4PhysicalVolumeSelectors.cpp b/Plugins/Geant4/src/Geant4PhysicalVolumeSelectors.cpp index fb37ce4ae84..8224a7b59f5 100644 --- a/Plugins/Geant4/src/Geant4PhysicalVolumeSelectors.cpp +++ b/Plugins/Geant4/src/Geant4PhysicalVolumeSelectors.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Geant4/Geant4PhysicalVolumeSelectors.hpp" diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelBlueprintCreater.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelBlueprintCreater.hpp index 7f832a4643a..f382a49543a 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelBlueprintCreater.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelBlueprintCreater.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelConversionError.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelConversionError.hpp index a5e93f0d53b..afac7eebbc7 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelConversionError.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelConversionError.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelConverters.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelConverters.hpp index 188408628b8..28e49018525 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelConverters.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelConverters.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelDetectorElement.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelDetectorElement.hpp index a92ce4f2720..eed4d2f62a3 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelDetectorElement.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelDetectorElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelDetectorObjectFactory.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelDetectorObjectFactory.hpp index 0b28efd86d3..6fa0e9ccf02 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelDetectorObjectFactory.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelDetectorObjectFactory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelMaterialConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelMaterialConverter.hpp index e72f24f228d..bde253f2fc2 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelMaterialConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelMaterialConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Material/Material.hpp" diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelReader.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelReader.hpp index 8342edd5f30..b6faba5f77c 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelReader.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelReader.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelToDetectorVolume.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelToDetectorVolume.hpp index b05287f1f88..39d5899a911 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelToDetectorVolume.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelToDetectorVolume.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Detector/DetectorVolume.hpp" diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelTree.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelTree.hpp index 838018d64b1..2979e61bc51 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelTree.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/GeoModelTree.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/IGeoShapeConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/IGeoShapeConverter.hpp index f6a93ae315d..7a0f5032d50 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/IGeoShapeConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/IGeoShapeConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GenericGeoShapeConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GenericGeoShapeConverter.hpp index f00b309c7ea..f4aaedf9c54 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GenericGeoShapeConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GenericGeoShapeConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoBoxConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoBoxConverter.hpp index 7b35aa6c58c..a194d5ce58f 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoBoxConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoBoxConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoIntersectionAnnulusConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoIntersectionAnnulusConverter.hpp index 951cfc7a825..e33ba8f2552 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoIntersectionAnnulusConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoIntersectionAnnulusConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoModelBinningHelper.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoModelBinningHelper.hpp index 93a6ac74ee0..4cf2fde9b8d 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoModelBinningHelper.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoModelBinningHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoModelExtentHelper.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoModelExtentHelper.hpp index 3a52c9c0f8f..5c27152b5f5 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoModelExtentHelper.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoModelExtentHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoPolygonConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoPolygonConverter.hpp index e212e96f78d..3d72c8e702a 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoPolygonConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoPolygonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoShiftConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoShiftConverter.hpp index ca5f2f4766a..4a19a971dc5 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoShiftConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoShiftConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoSubtractionConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoSubtractionConverter.hpp index 35582114294..88a80699360 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoSubtractionConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoSubtractionConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoTrdConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoTrdConverter.hpp index cc31a6c648f..c2e165095af 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoTrdConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoTrdConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoTubeConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoTubeConverter.hpp index fcec369ad54..6c58a07cc33 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoTubeConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoTubeConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoUnionDoubleTrdConverter.hpp b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoUnionDoubleTrdConverter.hpp index f40caf0cf29..af075ad01fc 100644 --- a/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoUnionDoubleTrdConverter.hpp +++ b/Plugins/GeoModel/include/Acts/Plugins/GeoModel/detail/GeoUnionDoubleTrdConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/GeoModel/src/GeoModelBlueprintCreater.cpp b/Plugins/GeoModel/src/GeoModelBlueprintCreater.cpp index 84a6476a8e4..9d31eeaaffc 100644 --- a/Plugins/GeoModel/src/GeoModelBlueprintCreater.cpp +++ b/Plugins/GeoModel/src/GeoModelBlueprintCreater.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/GeoModelBlueprintCreater.hpp" diff --git a/Plugins/GeoModel/src/GeoModelConversionError.cpp b/Plugins/GeoModel/src/GeoModelConversionError.cpp index c435ecb722a..a4da1b244f8 100644 --- a/Plugins/GeoModel/src/GeoModelConversionError.cpp +++ b/Plugins/GeoModel/src/GeoModelConversionError.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/GeoModelConversionError.hpp" diff --git a/Plugins/GeoModel/src/GeoModelDetectorElement.cpp b/Plugins/GeoModel/src/GeoModelDetectorElement.cpp index 8a8a2cbd66f..81526fc7693 100644 --- a/Plugins/GeoModel/src/GeoModelDetectorElement.cpp +++ b/Plugins/GeoModel/src/GeoModelDetectorElement.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/GeoModelDetectorElement.hpp" diff --git a/Plugins/GeoModel/src/GeoModelDetectorObjectFactory.cpp b/Plugins/GeoModel/src/GeoModelDetectorObjectFactory.cpp index 3952d93387a..91580a7bfda 100644 --- a/Plugins/GeoModel/src/GeoModelDetectorObjectFactory.cpp +++ b/Plugins/GeoModel/src/GeoModelDetectorObjectFactory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/GeoModelDetectorObjectFactory.hpp" diff --git a/Plugins/GeoModel/src/GeoModelMaterialConverter.cpp b/Plugins/GeoModel/src/GeoModelMaterialConverter.cpp index 6fc66567491..bb53101b3e1 100644 --- a/Plugins/GeoModel/src/GeoModelMaterialConverter.cpp +++ b/Plugins/GeoModel/src/GeoModelMaterialConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/GeoModelMaterialConverter.hpp" diff --git a/Plugins/GeoModel/src/GeoModelReader.cpp b/Plugins/GeoModel/src/GeoModelReader.cpp index 46bd8dba779..400eb00a529 100644 --- a/Plugins/GeoModel/src/GeoModelReader.cpp +++ b/Plugins/GeoModel/src/GeoModelReader.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/GeoModelReader.hpp" diff --git a/Plugins/GeoModel/src/GeoModelToDetectorVolume.cpp b/Plugins/GeoModel/src/GeoModelToDetectorVolume.cpp index 57961f3c4ba..6303dec2c26 100644 --- a/Plugins/GeoModel/src/GeoModelToDetectorVolume.cpp +++ b/Plugins/GeoModel/src/GeoModelToDetectorVolume.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/GeoModelToDetectorVolume.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoBoxConverter.cpp b/Plugins/GeoModel/src/detail/GeoBoxConverter.cpp index 4d27c5c8fd6..cb6e1cc6031 100644 --- a/Plugins/GeoModel/src/detail/GeoBoxConverter.cpp +++ b/Plugins/GeoModel/src/detail/GeoBoxConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoBoxConverter.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoIntersectionAnnulusConverter.cpp b/Plugins/GeoModel/src/detail/GeoIntersectionAnnulusConverter.cpp index 4ea9e715120..297db3a2292 100644 --- a/Plugins/GeoModel/src/detail/GeoIntersectionAnnulusConverter.cpp +++ b/Plugins/GeoModel/src/detail/GeoIntersectionAnnulusConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoIntersectionAnnulusConverter.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoModelBinningHelper.cpp b/Plugins/GeoModel/src/detail/GeoModelBinningHelper.cpp index 6723f602d8d..032e3ef9a5c 100644 --- a/Plugins/GeoModel/src/detail/GeoModelBinningHelper.cpp +++ b/Plugins/GeoModel/src/detail/GeoModelBinningHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoModelBinningHelper.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoModelExtentHelper.cpp b/Plugins/GeoModel/src/detail/GeoModelExtentHelper.cpp index 200cbf2d8fd..a56b7ccc265 100644 --- a/Plugins/GeoModel/src/detail/GeoModelExtentHelper.cpp +++ b/Plugins/GeoModel/src/detail/GeoModelExtentHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoModelExtentHelper.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoPolygonConverter.cpp b/Plugins/GeoModel/src/detail/GeoPolygonConverter.cpp index a922d5f7ca4..6b0642d25e8 100644 --- a/Plugins/GeoModel/src/detail/GeoPolygonConverter.cpp +++ b/Plugins/GeoModel/src/detail/GeoPolygonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoPolygonConverter.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoShiftConverter.cpp b/Plugins/GeoModel/src/detail/GeoShiftConverter.cpp index 2e03defe3a5..0574df02d32 100644 --- a/Plugins/GeoModel/src/detail/GeoShiftConverter.cpp +++ b/Plugins/GeoModel/src/detail/GeoShiftConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoShiftConverter.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoSubtractionConverter.cpp b/Plugins/GeoModel/src/detail/GeoSubtractionConverter.cpp index 3637a00dc6c..c5757e4f144 100644 --- a/Plugins/GeoModel/src/detail/GeoSubtractionConverter.cpp +++ b/Plugins/GeoModel/src/detail/GeoSubtractionConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoSubtractionConverter.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoTrdConverter.cpp b/Plugins/GeoModel/src/detail/GeoTrdConverter.cpp index 96d8cb8b14b..802aa2adeae 100644 --- a/Plugins/GeoModel/src/detail/GeoTrdConverter.cpp +++ b/Plugins/GeoModel/src/detail/GeoTrdConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoTrdConverter.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoTubeConverter.cpp b/Plugins/GeoModel/src/detail/GeoTubeConverter.cpp index 3f82a28e2c5..3513bff9f95 100644 --- a/Plugins/GeoModel/src/detail/GeoTubeConverter.cpp +++ b/Plugins/GeoModel/src/detail/GeoTubeConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoTubeConverter.hpp" diff --git a/Plugins/GeoModel/src/detail/GeoUnionDoubleTrdConverter.cpp b/Plugins/GeoModel/src/detail/GeoUnionDoubleTrdConverter.cpp index 2ee9fea4b5c..2a9b1288638 100644 --- a/Plugins/GeoModel/src/detail/GeoUnionDoubleTrdConverter.cpp +++ b/Plugins/GeoModel/src/detail/GeoUnionDoubleTrdConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/GeoModel/detail/GeoUnionDoubleTrdConverter.hpp" diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/AnnoyForwardDeclarations.hpp b/Plugins/Hashing/include/Acts/Plugins/Hashing/AnnoyForwardDeclarations.hpp index e3ca5950011..d16d8e91208 100644 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/AnnoyForwardDeclarations.hpp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/AnnoyForwardDeclarations.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithm.hpp b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithm.hpp index 8a07c4b7a4e..6229144867d 100755 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithm.hpp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithm.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithm.ipp b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithm.ipp index 4e756582f6a..e15f125be5c 100644 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithm.ipp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithm.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Hashing/HashingAnnoy.hpp" #include "Acts/Seeding/detail/UtilityFunctions.hpp" diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithmConfig.hpp b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithmConfig.hpp index 7a5157703de..8722bf0305e 100755 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithmConfig.hpp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAlgorithmConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAnnoy.hpp b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAnnoy.hpp index 9bf7dd038f3..18a519f1899 100755 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAnnoy.hpp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAnnoy.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAnnoy.ipp b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAnnoy.ipp index 76a4ff69bd9..85680fccaca 100644 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAnnoy.ipp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingAnnoy.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Definitions/Units.hpp" diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTraining.hpp b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTraining.hpp index 3e14b0adc46..666e1e754e9 100755 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTraining.hpp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTraining.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTraining.ipp b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTraining.ipp index 48ddbe957b4..ff9e35c1149 100644 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTraining.ipp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTraining.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Definitions/Units.hpp" diff --git a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTrainingConfig.hpp b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTrainingConfig.hpp index 613c812fa59..151052d5f77 100755 --- a/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTrainingConfig.hpp +++ b/Plugins/Hashing/include/Acts/Plugins/Hashing/HashingTrainingConfig.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/ActsJson.hpp b/Plugins/Json/include/Acts/Plugins/Json/ActsJson.hpp index 727cd31a896..b0ba7e6d103 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/ActsJson.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/ActsJson.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/AlgebraJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/AlgebraJsonConverter.hpp index b93a8703795..6a3f9dec02c 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/AlgebraJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/AlgebraJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/AmbiguityConfigJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/AmbiguityConfigJsonConverter.hpp index 816680f3544..7fd7a4f75e9 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/AmbiguityConfigJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/AmbiguityConfigJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/DetectorJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/DetectorJsonConverter.hpp index a196b4296b3..bfa2b4e90e6 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/DetectorJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/DetectorJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/DetectorVolumeFinderJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/DetectorVolumeFinderJsonConverter.hpp index d3a377ad645..7b391a53fb5 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/DetectorVolumeFinderJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/DetectorVolumeFinderJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/DetectorVolumeJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/DetectorVolumeJsonConverter.hpp index 3f70dae30be..816224ac517 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/DetectorVolumeJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/DetectorVolumeJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/DetrayJsonHelper.hpp b/Plugins/Json/include/Acts/Plugins/Json/DetrayJsonHelper.hpp index 15f5f461963..e8a2132e293 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/DetrayJsonHelper.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/DetrayJsonHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/ExtentJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/ExtentJsonConverter.hpp index 755aa048607..3a5e0b66161 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/ExtentJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/ExtentJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/GeometryHierarchyMapJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/GeometryHierarchyMapJsonConverter.hpp index 80419aab1e3..70f070e9dd7 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/GeometryHierarchyMapJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/GeometryHierarchyMapJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/GeometryJsonKeys.hpp b/Plugins/Json/include/Acts/Plugins/Json/GeometryJsonKeys.hpp index 9b0ded87262..24e877b5026 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/GeometryJsonKeys.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/GeometryJsonKeys.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/GridJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/GridJsonConverter.hpp index 2428df865b0..20065d488bb 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/GridJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/GridJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/ITrackingGeometryJsonDecorator.hpp b/Plugins/Json/include/Acts/Plugins/Json/ITrackingGeometryJsonDecorator.hpp index 7d37edfc388..d330dcb239a 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/ITrackingGeometryJsonDecorator.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/ITrackingGeometryJsonDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/IVolumeMaterialJsonDecorator.hpp b/Plugins/Json/include/Acts/Plugins/Json/IVolumeMaterialJsonDecorator.hpp index 00040f9db7a..ced492a9f16 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/IVolumeMaterialJsonDecorator.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/IVolumeMaterialJsonDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/IndexedGridJsonHelper.hpp b/Plugins/Json/include/Acts/Plugins/Json/IndexedGridJsonHelper.hpp index 27f8c60fa59..b7717073036 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/IndexedGridJsonHelper.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/IndexedGridJsonHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/IndexedSurfacesJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/IndexedSurfacesJsonConverter.hpp index 95998705a97..4e0b8982a62 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/IndexedSurfacesJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/IndexedSurfacesJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/JsonMaterialDecorator.hpp b/Plugins/Json/include/Acts/Plugins/Json/JsonMaterialDecorator.hpp index b3d03ccc97e..c38046468ce 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/JsonMaterialDecorator.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/JsonMaterialDecorator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/MaterialJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/MaterialJsonConverter.hpp index 69977c5a36e..1c49376e421 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/MaterialJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/MaterialJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/MaterialMapJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/MaterialMapJsonConverter.hpp index eb462edc8d6..9fdb3f7c284 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/MaterialMapJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/MaterialMapJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/PortalJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/PortalJsonConverter.hpp index 6e7f9114689..9e0a6d7ec4f 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/PortalJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/PortalJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/ProtoDetectorJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/ProtoDetectorJsonConverter.hpp index 282b0f57e5b..7f69f8e4e18 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/ProtoDetectorJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/ProtoDetectorJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/SurfaceBoundsJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/SurfaceBoundsJsonConverter.hpp index 54bd6f5b02f..637bbc5053d 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/SurfaceBoundsJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/SurfaceBoundsJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/SurfaceJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/SurfaceJsonConverter.hpp index 64b270626ab..3e4e2339db2 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/SurfaceJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/SurfaceJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/UtilitiesJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/UtilitiesJsonConverter.hpp index 8fa33854b0d..4874f7b49ad 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/UtilitiesJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/UtilitiesJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/VolumeBoundsJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/VolumeBoundsJsonConverter.hpp index 5aa57a36150..dd54abdd170 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/VolumeBoundsJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/VolumeBoundsJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/include/Acts/Plugins/Json/VolumeJsonConverter.hpp b/Plugins/Json/include/Acts/Plugins/Json/VolumeJsonConverter.hpp index d03bb7e6202..1019dacbfb9 100644 --- a/Plugins/Json/include/Acts/Plugins/Json/VolumeJsonConverter.hpp +++ b/Plugins/Json/include/Acts/Plugins/Json/VolumeJsonConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Json/src/AlgebraJsonConverter.cpp b/Plugins/Json/src/AlgebraJsonConverter.cpp index 8d47eb58649..dfc7dbb9cb1 100644 --- a/Plugins/Json/src/AlgebraJsonConverter.cpp +++ b/Plugins/Json/src/AlgebraJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/AlgebraJsonConverter.hpp" diff --git a/Plugins/Json/src/AmbiguityConfigJsonConverter.cpp b/Plugins/Json/src/AmbiguityConfigJsonConverter.cpp index 3a4c0f44a6f..ded95d8c122 100644 --- a/Plugins/Json/src/AmbiguityConfigJsonConverter.cpp +++ b/Plugins/Json/src/AmbiguityConfigJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/AmbiguityConfigJsonConverter.hpp" diff --git a/Plugins/Json/src/DetectorJsonConverter.cpp b/Plugins/Json/src/DetectorJsonConverter.cpp index 84d4a1c9db4..72e809e4dbd 100644 --- a/Plugins/Json/src/DetectorJsonConverter.cpp +++ b/Plugins/Json/src/DetectorJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/DetectorJsonConverter.hpp" diff --git a/Plugins/Json/src/DetectorVolumeFinderJsonConverter.cpp b/Plugins/Json/src/DetectorVolumeFinderJsonConverter.cpp index 9b4d93532f2..8defd1ef5da 100644 --- a/Plugins/Json/src/DetectorVolumeFinderJsonConverter.cpp +++ b/Plugins/Json/src/DetectorVolumeFinderJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/DetectorVolumeFinderJsonConverter.hpp" diff --git a/Plugins/Json/src/DetectorVolumeJsonConverter.cpp b/Plugins/Json/src/DetectorVolumeJsonConverter.cpp index 65f511ea9c3..19628c078ab 100644 --- a/Plugins/Json/src/DetectorVolumeJsonConverter.cpp +++ b/Plugins/Json/src/DetectorVolumeJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/DetectorVolumeJsonConverter.hpp" diff --git a/Plugins/Json/src/DetrayJsonHelper.cpp b/Plugins/Json/src/DetrayJsonHelper.cpp index 50c6a3639d9..aa61a9d8aeb 100644 --- a/Plugins/Json/src/DetrayJsonHelper.cpp +++ b/Plugins/Json/src/DetrayJsonHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/DetrayJsonHelper.hpp" diff --git a/Plugins/Json/src/ExtentJsonConverter.cpp b/Plugins/Json/src/ExtentJsonConverter.cpp index 5e509d74e97..fd56eea866b 100644 --- a/Plugins/Json/src/ExtentJsonConverter.cpp +++ b/Plugins/Json/src/ExtentJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/ExtentJsonConverter.hpp" diff --git a/Plugins/Json/src/GridJsonConverter.cpp b/Plugins/Json/src/GridJsonConverter.cpp index 8d9a805b685..67f19ce7c36 100644 --- a/Plugins/Json/src/GridJsonConverter.cpp +++ b/Plugins/Json/src/GridJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/GridJsonConverter.hpp" diff --git a/Plugins/Json/src/IndexedSurfacesJsonConverter.cpp b/Plugins/Json/src/IndexedSurfacesJsonConverter.cpp index a0e027c9bf0..40548ede336 100644 --- a/Plugins/Json/src/IndexedSurfacesJsonConverter.cpp +++ b/Plugins/Json/src/IndexedSurfacesJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/IndexedSurfacesJsonConverter.hpp" diff --git a/Plugins/Json/src/JsonMaterialDecorator.cpp b/Plugins/Json/src/JsonMaterialDecorator.cpp index 03180b9ac19..a76997fcf36 100644 --- a/Plugins/Json/src/JsonMaterialDecorator.cpp +++ b/Plugins/Json/src/JsonMaterialDecorator.cpp @@ -1,18 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. - -// This file is part of the Acts project. -// -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project -// -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/JsonMaterialDecorator.hpp" diff --git a/Plugins/Json/src/MaterialJsonConverter.cpp b/Plugins/Json/src/MaterialJsonConverter.cpp index 2e7312ab346..e98df359cf0 100644 --- a/Plugins/Json/src/MaterialJsonConverter.cpp +++ b/Plugins/Json/src/MaterialJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/MaterialJsonConverter.hpp" diff --git a/Plugins/Json/src/MaterialMapJsonConverter.cpp b/Plugins/Json/src/MaterialMapJsonConverter.cpp index 689d1d1e9ab..e27c069157c 100644 --- a/Plugins/Json/src/MaterialMapJsonConverter.cpp +++ b/Plugins/Json/src/MaterialMapJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/MaterialMapJsonConverter.hpp" diff --git a/Plugins/Json/src/PortalJsonConverter.cpp b/Plugins/Json/src/PortalJsonConverter.cpp index a394525a957..a7044f7b6dd 100644 --- a/Plugins/Json/src/PortalJsonConverter.cpp +++ b/Plugins/Json/src/PortalJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/PortalJsonConverter.hpp" diff --git a/Plugins/Json/src/ProtoDetectorJsonConverter.cpp b/Plugins/Json/src/ProtoDetectorJsonConverter.cpp index 7b3acec7373..7d05001ab3f 100644 --- a/Plugins/Json/src/ProtoDetectorJsonConverter.cpp +++ b/Plugins/Json/src/ProtoDetectorJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/ProtoDetectorJsonConverter.hpp" diff --git a/Plugins/Json/src/SurfaceBoundsJsonConverter.cpp b/Plugins/Json/src/SurfaceBoundsJsonConverter.cpp index a398be352f9..173dc09436a 100644 --- a/Plugins/Json/src/SurfaceBoundsJsonConverter.cpp +++ b/Plugins/Json/src/SurfaceBoundsJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/SurfaceBoundsJsonConverter.hpp" diff --git a/Plugins/Json/src/SurfaceJsonConverter.cpp b/Plugins/Json/src/SurfaceJsonConverter.cpp index b0911366da7..0df6dc8b08b 100644 --- a/Plugins/Json/src/SurfaceJsonConverter.cpp +++ b/Plugins/Json/src/SurfaceJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/SurfaceJsonConverter.hpp" diff --git a/Plugins/Json/src/UtilitiesJsonConverter.cpp b/Plugins/Json/src/UtilitiesJsonConverter.cpp index d43f87243cd..558bb8aa048 100644 --- a/Plugins/Json/src/UtilitiesJsonConverter.cpp +++ b/Plugins/Json/src/UtilitiesJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/UtilitiesJsonConverter.hpp" diff --git a/Plugins/Json/src/VolumeBoundsJsonConverter.cpp b/Plugins/Json/src/VolumeBoundsJsonConverter.cpp index af6c08eab8c..dc72ebea517 100644 --- a/Plugins/Json/src/VolumeBoundsJsonConverter.cpp +++ b/Plugins/Json/src/VolumeBoundsJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/VolumeBoundsJsonConverter.hpp" diff --git a/Plugins/Json/src/VolumeJsonConverter.cpp b/Plugins/Json/src/VolumeJsonConverter.cpp index 55cbc28b4ee..e00843db720 100644 --- a/Plugins/Json/src/VolumeJsonConverter.cpp +++ b/Plugins/Json/src/VolumeJsonConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Json/VolumeJsonConverter.hpp" diff --git a/Plugins/Legacy/include/Acts/Seeding/AtlasSeedFinder.hpp b/Plugins/Legacy/include/Acts/Seeding/AtlasSeedFinder.hpp index 706d0823f2d..12b3137682c 100644 --- a/Plugins/Legacy/include/Acts/Seeding/AtlasSeedFinder.hpp +++ b/Plugins/Legacy/include/Acts/Seeding/AtlasSeedFinder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // AtlasSeedFinder.hpp Acts project diff --git a/Plugins/Legacy/include/Acts/Seeding/AtlasSeedFinder.ipp b/Plugins/Legacy/include/Acts/Seeding/AtlasSeedFinder.ipp index 869ea097238..ce4f4d5525a 100644 --- a/Plugins/Legacy/include/Acts/Seeding/AtlasSeedFinder.ipp +++ b/Plugins/Legacy/include/Acts/Seeding/AtlasSeedFinder.ipp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // AtlasSeedFinder.ipp Acts project diff --git a/Plugins/Legacy/include/Acts/Seeding/LegacyInternalSeed.hpp b/Plugins/Legacy/include/Acts/Seeding/LegacyInternalSeed.hpp index cab28c9c6c6..9c6be79a4d6 100644 --- a/Plugins/Legacy/include/Acts/Seeding/LegacyInternalSeed.hpp +++ b/Plugins/Legacy/include/Acts/Seeding/LegacyInternalSeed.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // InternalSeed.hpp Acts project diff --git a/Plugins/Legacy/include/Acts/Seeding/LegacySeed.hpp b/Plugins/Legacy/include/Acts/Seeding/LegacySeed.hpp index 45f9406083b..f4f0e3bab68 100644 --- a/Plugins/Legacy/include/Acts/Seeding/LegacySeed.hpp +++ b/Plugins/Legacy/include/Acts/Seeding/LegacySeed.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // Seed.hpp Acts project diff --git a/Plugins/Legacy/include/Acts/Seeding/SPForSeed.hpp b/Plugins/Legacy/include/Acts/Seeding/SPForSeed.hpp index fc4d3ac435c..2bc823d5925 100644 --- a/Plugins/Legacy/include/Acts/Seeding/SPForSeed.hpp +++ b/Plugins/Legacy/include/Acts/Seeding/SPForSeed.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. /////////////////////////////////////////////////////////////////// // SPForSeed.hpp Acts project diff --git a/Plugins/Onnx/include/Acts/Plugins/Onnx/AmbiguityTrackClassifier.hpp b/Plugins/Onnx/include/Acts/Plugins/Onnx/AmbiguityTrackClassifier.hpp index c2dd49c1294..3e1450f2b85 100644 --- a/Plugins/Onnx/include/Acts/Plugins/Onnx/AmbiguityTrackClassifier.hpp +++ b/Plugins/Onnx/include/Acts/Plugins/Onnx/AmbiguityTrackClassifier.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Onnx/include/Acts/Plugins/Onnx/MLTrackClassifier.hpp b/Plugins/Onnx/include/Acts/Plugins/Onnx/MLTrackClassifier.hpp index a6d58196fe6..54147213992 100644 --- a/Plugins/Onnx/include/Acts/Plugins/Onnx/MLTrackClassifier.hpp +++ b/Plugins/Onnx/include/Acts/Plugins/Onnx/MLTrackClassifier.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Onnx/include/Acts/Plugins/Onnx/OnnxRuntimeBase.hpp b/Plugins/Onnx/include/Acts/Plugins/Onnx/OnnxRuntimeBase.hpp index ae0e15ab926..0418a7cd5ac 100644 --- a/Plugins/Onnx/include/Acts/Plugins/Onnx/OnnxRuntimeBase.hpp +++ b/Plugins/Onnx/include/Acts/Plugins/Onnx/OnnxRuntimeBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include diff --git a/Plugins/Onnx/include/Acts/Plugins/Onnx/SeedClassifier.hpp b/Plugins/Onnx/include/Acts/Plugins/Onnx/SeedClassifier.hpp index 85d22116829..d72c48c3497 100644 --- a/Plugins/Onnx/include/Acts/Plugins/Onnx/SeedClassifier.hpp +++ b/Plugins/Onnx/include/Acts/Plugins/Onnx/SeedClassifier.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Onnx/src/MLTrackClassifier.cpp b/Plugins/Onnx/src/MLTrackClassifier.cpp index d4b7f49ca64..48ae55f66eb 100644 --- a/Plugins/Onnx/src/MLTrackClassifier.cpp +++ b/Plugins/Onnx/src/MLTrackClassifier.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Onnx/MLTrackClassifier.hpp" diff --git a/Plugins/Onnx/src/OnnxRuntimeBase.cpp b/Plugins/Onnx/src/OnnxRuntimeBase.cpp index 9abb55349aa..da0f2a6a459 100644 --- a/Plugins/Onnx/src/OnnxRuntimeBase.cpp +++ b/Plugins/Onnx/src/OnnxRuntimeBase.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Onnx/OnnxRuntimeBase.hpp" diff --git a/Plugins/Podio/include/Acts/Plugins/Podio/PodioDynamicColumns.hpp b/Plugins/Podio/include/Acts/Plugins/Podio/PodioDynamicColumns.hpp index 39e6ec326df..d72e78bd9f2 100644 --- a/Plugins/Podio/include/Acts/Plugins/Podio/PodioDynamicColumns.hpp +++ b/Plugins/Podio/include/Acts/Plugins/Podio/PodioDynamicColumns.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Podio/include/Acts/Plugins/Podio/PodioTrackContainer.hpp b/Plugins/Podio/include/Acts/Plugins/Podio/PodioTrackContainer.hpp index 16a25795f6a..b6cba524a8e 100644 --- a/Plugins/Podio/include/Acts/Plugins/Podio/PodioTrackContainer.hpp +++ b/Plugins/Podio/include/Acts/Plugins/Podio/PodioTrackContainer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Podio/include/Acts/Plugins/Podio/PodioTrackStateContainer.hpp b/Plugins/Podio/include/Acts/Plugins/Podio/PodioTrackStateContainer.hpp index 53643ab4a7d..8322249a654 100644 --- a/Plugins/Podio/include/Acts/Plugins/Podio/PodioTrackStateContainer.hpp +++ b/Plugins/Podio/include/Acts/Plugins/Podio/PodioTrackStateContainer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Podio/include/Acts/Plugins/Podio/PodioUtil.hpp b/Plugins/Podio/include/Acts/Plugins/Podio/PodioUtil.hpp index 50a61059bba..8f6e0944ff1 100644 --- a/Plugins/Podio/include/Acts/Plugins/Podio/PodioUtil.hpp +++ b/Plugins/Podio/include/Acts/Plugins/Podio/PodioUtil.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/Podio/src/PodioUtil.cpp b/Plugins/Podio/src/PodioUtil.cpp index 2fd73c0db3a..6518fcdff07 100644 --- a/Plugins/Podio/src/PodioUtil.cpp +++ b/Plugins/Podio/src/PodioUtil.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Podio//PodioUtil.hpp" diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/ITGeoDetectorElementSplitter.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/ITGeoDetectorElementSplitter.hpp index a0b3bd76571..9a59637bb35 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/ITGeoDetectorElementSplitter.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/ITGeoDetectorElementSplitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/ITGeoIdentifierProvider.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/ITGeoIdentifierProvider.hpp index 61352a653bb..842477dfc6a 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/ITGeoIdentifierProvider.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/ITGeoIdentifierProvider.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoCylinderDiscSplitter.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoCylinderDiscSplitter.hpp index 90d8cec92b9..24a21320619 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoCylinderDiscSplitter.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoCylinderDiscSplitter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoDetectorElement.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoDetectorElement.hpp index 9b48baf30d1..73a3fb7e807 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoDetectorElement.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoDetectorElement.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoLayerBuilder.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoLayerBuilder.hpp index faab2fd148e..8bd87122332 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoLayerBuilder.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoLayerBuilder.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoMaterialConverter.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoMaterialConverter.hpp index a7d5721334a..566e40b32e2 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoMaterialConverter.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoMaterialConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoParser.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoParser.hpp index 5c10a39a3ee..3a99a008819 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoParser.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoParser.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoPrimitivesHelper.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoPrimitivesHelper.hpp index 440b0feb5eb..45dede1f820 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoPrimitivesHelper.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoPrimitivesHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoSurfaceConverter.hpp b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoSurfaceConverter.hpp index ca6da28a308..a489a4743a6 100644 --- a/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoSurfaceConverter.hpp +++ b/Plugins/TGeo/include/Acts/Plugins/TGeo/TGeoSurfaceConverter.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Plugins/TGeo/src/TGeoCylinderDiscSplitter.cpp b/Plugins/TGeo/src/TGeoCylinderDiscSplitter.cpp index 007cc2b858b..2dbf09c56ad 100644 --- a/Plugins/TGeo/src/TGeoCylinderDiscSplitter.cpp +++ b/Plugins/TGeo/src/TGeoCylinderDiscSplitter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/TGeo/TGeoCylinderDiscSplitter.hpp" diff --git a/Plugins/TGeo/src/TGeoDetectorElement.cpp b/Plugins/TGeo/src/TGeoDetectorElement.cpp index c9295ce8313..c6e32487ecd 100644 --- a/Plugins/TGeo/src/TGeoDetectorElement.cpp +++ b/Plugins/TGeo/src/TGeoDetectorElement.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/TGeo/TGeoDetectorElement.hpp" diff --git a/Plugins/TGeo/src/TGeoLayerBuilder.cpp b/Plugins/TGeo/src/TGeoLayerBuilder.cpp index 9476bca114a..73cd8bb25ec 100644 --- a/Plugins/TGeo/src/TGeoLayerBuilder.cpp +++ b/Plugins/TGeo/src/TGeoLayerBuilder.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/TGeo/TGeoLayerBuilder.hpp" diff --git a/Plugins/TGeo/src/TGeoMaterialConverter.cpp b/Plugins/TGeo/src/TGeoMaterialConverter.cpp index 9588d325942..675c79dcb75 100644 --- a/Plugins/TGeo/src/TGeoMaterialConverter.cpp +++ b/Plugins/TGeo/src/TGeoMaterialConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/TGeo/TGeoMaterialConverter.hpp" diff --git a/Plugins/TGeo/src/TGeoParser.cpp b/Plugins/TGeo/src/TGeoParser.cpp index 3e757fa75ae..422d47d1412 100644 --- a/Plugins/TGeo/src/TGeoParser.cpp +++ b/Plugins/TGeo/src/TGeoParser.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/TGeo/TGeoParser.hpp" diff --git a/Plugins/TGeo/src/TGeoPrimitivesHelper.cpp b/Plugins/TGeo/src/TGeoPrimitivesHelper.cpp index 42874d62f25..ff743a542a8 100644 --- a/Plugins/TGeo/src/TGeoPrimitivesHelper.cpp +++ b/Plugins/TGeo/src/TGeoPrimitivesHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/TGeo/TGeoPrimitivesHelper.hpp" diff --git a/Plugins/TGeo/src/TGeoSurfaceConverter.cpp b/Plugins/TGeo/src/TGeoSurfaceConverter.cpp index 41653d92e1a..1cbc670e253 100644 --- a/Plugins/TGeo/src/TGeoSurfaceConverter.cpp +++ b/Plugins/TGeo/src/TGeoSurfaceConverter.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/TGeo/TGeoSurfaceConverter.hpp" diff --git a/Tests/Benchmarks/AnnulusBoundsBenchmark.cpp b/Tests/Benchmarks/AnnulusBoundsBenchmark.cpp index 790437865a7..fcfddd42adb 100644 --- a/Tests/Benchmarks/AnnulusBoundsBenchmark.cpp +++ b/Tests/Benchmarks/AnnulusBoundsBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Definitions/Units.hpp" diff --git a/Tests/Benchmarks/AtlasStepperBenchmark.cpp b/Tests/Benchmarks/AtlasStepperBenchmark.cpp index 4a0e028fe27..2daebfba14b 100644 --- a/Tests/Benchmarks/AtlasStepperBenchmark.cpp +++ b/Tests/Benchmarks/AtlasStepperBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/AtlasStepper.hpp" diff --git a/Tests/Benchmarks/BinUtilityBenchmark.cpp b/Tests/Benchmarks/BinUtilityBenchmark.cpp index d6ed2970a80..251503e2f73 100644 --- a/Tests/Benchmarks/BinUtilityBenchmark.cpp +++ b/Tests/Benchmarks/BinUtilityBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Tests/CommonHelpers/BenchmarkTools.hpp" #include "Acts/Utilities/BinUtility.hpp" diff --git a/Tests/Benchmarks/BoundaryToleranceBenchmark.cpp b/Tests/Benchmarks/BoundaryToleranceBenchmark.cpp index d6310a687ce..f18a32070be 100644 --- a/Tests/Benchmarks/BoundaryToleranceBenchmark.cpp +++ b/Tests/Benchmarks/BoundaryToleranceBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Definitions/Units.hpp" diff --git a/Tests/Benchmarks/EigenStepperBenchmark.cpp b/Tests/Benchmarks/EigenStepperBenchmark.cpp index 4b15bad24fd..8b45bf1ef0e 100644 --- a/Tests/Benchmarks/EigenStepperBenchmark.cpp +++ b/Tests/Benchmarks/EigenStepperBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/EigenStepper.hpp" diff --git a/Tests/Benchmarks/QuickMathBenchmark.cpp b/Tests/Benchmarks/QuickMathBenchmark.cpp index 9fe1aa75cfa..0cbec176b94 100644 --- a/Tests/Benchmarks/QuickMathBenchmark.cpp +++ b/Tests/Benchmarks/QuickMathBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/Benchmarks/RayFrustumBenchmark.cpp b/Tests/Benchmarks/RayFrustumBenchmark.cpp index 261b199d05f..2d0069da1b1 100644 --- a/Tests/Benchmarks/RayFrustumBenchmark.cpp +++ b/Tests/Benchmarks/RayFrustumBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Definitions/Units.hpp" diff --git a/Tests/Benchmarks/SolenoidFieldBenchmark.cpp b/Tests/Benchmarks/SolenoidFieldBenchmark.cpp index 30cc4e951b8..22a779f6582 100644 --- a/Tests/Benchmarks/SolenoidFieldBenchmark.cpp +++ b/Tests/Benchmarks/SolenoidFieldBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/TrackParametrization.hpp" #include "Acts/Definitions/Units.hpp" diff --git a/Tests/Benchmarks/SourceLinkBenchmark.cpp b/Tests/Benchmarks/SourceLinkBenchmark.cpp index ad7849302a1..7d9c4c86681 100644 --- a/Tests/Benchmarks/SourceLinkBenchmark.cpp +++ b/Tests/Benchmarks/SourceLinkBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/VectorMultiTrajectory.hpp" #include "Acts/Geometry/GeometryIdentifier.hpp" diff --git a/Tests/Benchmarks/StepperBenchmark.cpp b/Tests/Benchmarks/StepperBenchmark.cpp index bfa21d76450..c68a5ec87b3 100644 --- a/Tests/Benchmarks/StepperBenchmark.cpp +++ b/Tests/Benchmarks/StepperBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/MagneticField/MagneticFieldProvider.hpp" #include "Acts/Propagator/AtlasStepper.hpp" diff --git a/Tests/Benchmarks/StepperBenchmarkCommons.hpp b/Tests/Benchmarks/StepperBenchmarkCommons.hpp index 0d4462f96c9..206f1479837 100644 --- a/Tests/Benchmarks/StepperBenchmarkCommons.hpp +++ b/Tests/Benchmarks/StepperBenchmarkCommons.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/Benchmarks/StraightLineStepperBenchmark.cpp b/Tests/Benchmarks/StraightLineStepperBenchmark.cpp index bd449c9942f..05483620312 100644 --- a/Tests/Benchmarks/StraightLineStepperBenchmark.cpp +++ b/Tests/Benchmarks/StraightLineStepperBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/StraightLineStepper.hpp" diff --git a/Tests/Benchmarks/SurfaceIntersectionBenchmark.cpp b/Tests/Benchmarks/SurfaceIntersectionBenchmark.cpp index 0ae8ecba92e..acad43fad34 100644 --- a/Tests/Benchmarks/SurfaceIntersectionBenchmark.cpp +++ b/Tests/Benchmarks/SurfaceIntersectionBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/Benchmarks/SympyStepperBenchmark.cpp b/Tests/Benchmarks/SympyStepperBenchmark.cpp index bdc76655886..830244bb7dc 100644 --- a/Tests/Benchmarks/SympyStepperBenchmark.cpp +++ b/Tests/Benchmarks/SympyStepperBenchmark.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Propagator/SympyStepper.hpp" diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/Assertions.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/Assertions.hpp index 6cc28348c35..6bc19dc0431 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/Assertions.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/Assertions.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp index f04979e03b8..947596edbac 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/BenchmarkTools.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CubicTrackingGeometry.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CubicTrackingGeometry.hpp index c0165d38164..55793113d99 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CubicTrackingGeometry.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CubicTrackingGeometry.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalDetector.cpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalDetector.cpp index d5aec8bf735..7ab854d4e65 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalDetector.cpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalDetector.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Tests/CommonHelpers/CylindricalDetector.hpp" diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalDetector.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalDetector.hpp index b8b5e4df21d..0bceb098f6f 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalDetector.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalDetector.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalTrackingGeometry.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalTrackingGeometry.hpp index b13c4843baf..9ff25d480fa 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalTrackingGeometry.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/CylindricalTrackingGeometry.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DataDirectory.cpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DataDirectory.cpp index e3c029730e5..de2770d4c4a 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DataDirectory.cpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DataDirectory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Tests/CommonHelpers/DataDirectory.hpp" diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DataDirectory.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DataDirectory.hpp index 378abb4f697..169135c85e4 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DataDirectory.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DataDirectory.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DetectorElementStub.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DetectorElementStub.hpp index 2aa26de3998..4f6b0d5ce79 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DetectorElementStub.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/DetectorElementStub.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/FloatComparisons.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/FloatComparisons.hpp index 03dd3cf4015..d84b0228d0d 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/FloatComparisons.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/FloatComparisons.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/LineSurfaceStub.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/LineSurfaceStub.hpp index 55448f11445..848e02cab01 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/LineSurfaceStub.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/LineSurfaceStub.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/MeasurementsCreator.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/MeasurementsCreator.hpp index 6e665328518..80044571c4b 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/MeasurementsCreator.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/MeasurementsCreator.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/NonCompileTestHelpers.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/NonCompileTestHelpers.hpp index 7070250e5e5..4bd5926cf74 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/NonCompileTestHelpers.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/NonCompileTestHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/PredefinedMaterials.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/PredefinedMaterials.hpp index b3a50971eae..463adcda004 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/PredefinedMaterials.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/PredefinedMaterials.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/TestSpacePoint.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/TestSpacePoint.hpp index aec14a5d0f8..b50451e0e7d 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/TestSpacePoint.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/TestSpacePoint.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/WhiteBoardUtilities.hpp b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/WhiteBoardUtilities.hpp index 461f90759d5..f40f658e63e 100644 --- a/Tests/CommonHelpers/Acts/Tests/CommonHelpers/WhiteBoardUtilities.hpp +++ b/Tests/CommonHelpers/Acts/Tests/CommonHelpers/WhiteBoardUtilities.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/DownstreamProject/ShowActsVersion.cpp b/Tests/DownstreamProject/ShowActsVersion.cpp index 144c3c8a18b..3602aa0a3af 100644 --- a/Tests/DownstreamProject/ShowActsVersion.cpp +++ b/Tests/DownstreamProject/ShowActsVersion.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/DownstreamProjectNodeps/ShowActsVersion.cpp b/Tests/DownstreamProjectNodeps/ShowActsVersion.cpp index 52fd8709f4f..aa0662a920b 100644 --- a/Tests/DownstreamProjectNodeps/ShowActsVersion.cpp +++ b/Tests/DownstreamProjectNodeps/ShowActsVersion.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/IntegrationTests/Fatras/FatrasSimulationTests.cpp b/Tests/IntegrationTests/Fatras/FatrasSimulationTests.cpp index 69dc85d9fd7..f459feb0f24 100644 --- a/Tests/IntegrationTests/Fatras/FatrasSimulationTests.cpp +++ b/Tests/IntegrationTests/Fatras/FatrasSimulationTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/InterpolatedSolenoidBFieldTest.cpp b/Tests/IntegrationTests/InterpolatedSolenoidBFieldTest.cpp index 4715cbdc606..5c3b0aa9ee2 100644 --- a/Tests/IntegrationTests/InterpolatedSolenoidBFieldTest.cpp +++ b/Tests/IntegrationTests/InterpolatedSolenoidBFieldTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/Legacy/ATLSeedingIntegrationTest.cpp b/Tests/IntegrationTests/Legacy/ATLSeedingIntegrationTest.cpp index 20876537961..910556b02e1 100644 --- a/Tests/IntegrationTests/Legacy/ATLSeedingIntegrationTest.cpp +++ b/Tests/IntegrationTests/Legacy/ATLSeedingIntegrationTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/IntegrationTests/NavigatorConsistency.cpp b/Tests/IntegrationTests/NavigatorConsistency.cpp index 7ffb4004968..f084afeae6b 100644 --- a/Tests/IntegrationTests/NavigatorConsistency.cpp +++ b/Tests/IntegrationTests/NavigatorConsistency.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/PrintDataDirectory.cpp b/Tests/IntegrationTests/PrintDataDirectory.cpp index a7eef5c14d4..883a19ceb8c 100644 --- a/Tests/IntegrationTests/PrintDataDirectory.cpp +++ b/Tests/IntegrationTests/PrintDataDirectory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // This is an example on how to access data from the test data directory. // It is not really an integration test, but since it does not use the diff --git a/Tests/IntegrationTests/PropagationAtlasConstant.cpp b/Tests/IntegrationTests/PropagationAtlasConstant.cpp index 912f604aa65..9839797c226 100644 --- a/Tests/IntegrationTests/PropagationAtlasConstant.cpp +++ b/Tests/IntegrationTests/PropagationAtlasConstant.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/PropagationBentTracks.cpp b/Tests/IntegrationTests/PropagationBentTracks.cpp index e63edc97ba6..9fb49a6c559 100644 --- a/Tests/IntegrationTests/PropagationBentTracks.cpp +++ b/Tests/IntegrationTests/PropagationBentTracks.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/IntegrationTests/PropagationCompareAtlasEigenConstant.cpp b/Tests/IntegrationTests/PropagationCompareAtlasEigenConstant.cpp index 6dbdfbe936c..a59433ae6c1 100644 --- a/Tests/IntegrationTests/PropagationCompareAtlasEigenConstant.cpp +++ b/Tests/IntegrationTests/PropagationCompareAtlasEigenConstant.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/PropagationCompareEigenStraightLine.cpp b/Tests/IntegrationTests/PropagationCompareEigenStraightLine.cpp index 877e79ba47c..6165c98df99 100644 --- a/Tests/IntegrationTests/PropagationCompareEigenStraightLine.cpp +++ b/Tests/IntegrationTests/PropagationCompareEigenStraightLine.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/PropagationDatasets.hpp b/Tests/IntegrationTests/PropagationDatasets.hpp index 6b65e21c85f..4d95837bd4a 100644 --- a/Tests/IntegrationTests/PropagationDatasets.hpp +++ b/Tests/IntegrationTests/PropagationDatasets.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/IntegrationTests/PropagationDenseConstant.cpp b/Tests/IntegrationTests/PropagationDenseConstant.cpp index e95b0bc01a1..3d2afa7779e 100644 --- a/Tests/IntegrationTests/PropagationDenseConstant.cpp +++ b/Tests/IntegrationTests/PropagationDenseConstant.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/PropagationEigenConstant.cpp b/Tests/IntegrationTests/PropagationEigenConstant.cpp index 0c76437e156..55041acb015 100644 --- a/Tests/IntegrationTests/PropagationEigenConstant.cpp +++ b/Tests/IntegrationTests/PropagationEigenConstant.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/PropagationStraightLine.cpp b/Tests/IntegrationTests/PropagationStraightLine.cpp index 9fef03c4f5a..7b321f3486c 100644 --- a/Tests/IntegrationTests/PropagationStraightLine.cpp +++ b/Tests/IntegrationTests/PropagationStraightLine.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/IntegrationTests/PropagationTests.hpp b/Tests/IntegrationTests/PropagationTests.hpp index 6be2ebd220d..9355e726b3b 100644 --- a/Tests/IntegrationTests/PropagationTests.hpp +++ b/Tests/IntegrationTests/PropagationTests.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Alignment/Kernel/AlignmentTests.cpp b/Tests/UnitTests/Alignment/Kernel/AlignmentTests.cpp index f146ff06fca..82c2176814c 100644 --- a/Tests/UnitTests/Alignment/Kernel/AlignmentTests.cpp +++ b/Tests/UnitTests/Alignment/Kernel/AlignmentTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Benchmarks/BenchmarkTools.cpp b/Tests/UnitTests/Benchmarks/BenchmarkTools.cpp index ebd3c901fb5..55bd41e83ed 100644 --- a/Tests/UnitTests/Benchmarks/BenchmarkTools.cpp +++ b/Tests/UnitTests/Benchmarks/BenchmarkTools.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/AmbiguityResolution/ScoreBasedAmbiguityResolutionTest.cpp b/Tests/UnitTests/Core/AmbiguityResolution/ScoreBasedAmbiguityResolutionTest.cpp index b9a4eb5beb5..568e817031a 100644 --- a/Tests/UnitTests/Core/AmbiguityResolution/ScoreBasedAmbiguityResolutionTest.cpp +++ b/Tests/UnitTests/Core/AmbiguityResolution/ScoreBasedAmbiguityResolutionTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Clusterization/ClusterizationTests1D.cpp b/Tests/UnitTests/Core/Clusterization/ClusterizationTests1D.cpp index 3ab655ade8d..1d30f88e646 100644 --- a/Tests/UnitTests/Core/Clusterization/ClusterizationTests1D.cpp +++ b/Tests/UnitTests/Core/Clusterization/ClusterizationTests1D.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Clusterization/ClusterizationTests2D.cpp b/Tests/UnitTests/Core/Clusterization/ClusterizationTests2D.cpp index 6a2808d90ba..9ed0edd7780 100644 --- a/Tests/UnitTests/Core/Clusterization/ClusterizationTests2D.cpp +++ b/Tests/UnitTests/Core/Clusterization/ClusterizationTests2D.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Definitions/DirectionTests.cpp b/Tests/UnitTests/Core/Definitions/DirectionTests.cpp index cf7b910f6de..0badd75c66a 100644 --- a/Tests/UnitTests/Core/Definitions/DirectionTests.cpp +++ b/Tests/UnitTests/Core/Definitions/DirectionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Definitions/UnitsTests.cpp b/Tests/UnitTests/Core/Definitions/UnitsTests.cpp index f3c88d2cbc6..6ca934ea751 100644 --- a/Tests/UnitTests/Core/Definitions/UnitsTests.cpp +++ b/Tests/UnitTests/Core/Definitions/UnitsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/BlueprintHelperTests.cpp b/Tests/UnitTests/Core/Detector/BlueprintHelperTests.cpp index a307d8cba8d..7674d721115 100644 --- a/Tests/UnitTests/Core/Detector/BlueprintHelperTests.cpp +++ b/Tests/UnitTests/Core/Detector/BlueprintHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/BlueprintTests.cpp b/Tests/UnitTests/Core/Detector/BlueprintTests.cpp index 323de9218a7..0542730e145 100644 --- a/Tests/UnitTests/Core/Detector/BlueprintTests.cpp +++ b/Tests/UnitTests/Core/Detector/BlueprintTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/CuboidalContainerBuilderTests.cpp b/Tests/UnitTests/Core/Detector/CuboidalContainerBuilderTests.cpp index 70243622fe9..8578b282a76 100644 --- a/Tests/UnitTests/Core/Detector/CuboidalContainerBuilderTests.cpp +++ b/Tests/UnitTests/Core/Detector/CuboidalContainerBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/CuboidalDetectorFromBlueprintTests.cpp b/Tests/UnitTests/Core/Detector/CuboidalDetectorFromBlueprintTests.cpp index 9a194dbef1b..c3991164027 100644 --- a/Tests/UnitTests/Core/Detector/CuboidalDetectorFromBlueprintTests.cpp +++ b/Tests/UnitTests/Core/Detector/CuboidalDetectorFromBlueprintTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/CuboidalDetectorHelperTests.cpp b/Tests/UnitTests/Core/Detector/CuboidalDetectorHelperTests.cpp index 2159a62b763..adfbff85b04 100644 --- a/Tests/UnitTests/Core/Detector/CuboidalDetectorHelperTests.cpp +++ b/Tests/UnitTests/Core/Detector/CuboidalDetectorHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/CylindricalContainerBuilderTests.cpp b/Tests/UnitTests/Core/Detector/CylindricalContainerBuilderTests.cpp index fa15d5eb076..d99fd272a16 100644 --- a/Tests/UnitTests/Core/Detector/CylindricalContainerBuilderTests.cpp +++ b/Tests/UnitTests/Core/Detector/CylindricalContainerBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/CylindricalDetectorFromBlueprintTests.cpp b/Tests/UnitTests/Core/Detector/CylindricalDetectorFromBlueprintTests.cpp index 427a1effa11..c91a0d72a9f 100644 --- a/Tests/UnitTests/Core/Detector/CylindricalDetectorFromBlueprintTests.cpp +++ b/Tests/UnitTests/Core/Detector/CylindricalDetectorFromBlueprintTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/CylindricalDetectorHelperTests.cpp b/Tests/UnitTests/Core/Detector/CylindricalDetectorHelperTests.cpp index f0a13b368dd..44ffc1630b9 100644 --- a/Tests/UnitTests/Core/Detector/CylindricalDetectorHelperTests.cpp +++ b/Tests/UnitTests/Core/Detector/CylindricalDetectorHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/DetectorBuilderTests.cpp b/Tests/UnitTests/Core/Detector/DetectorBuilderTests.cpp index 4e8b9117f91..5f56d266a05 100644 --- a/Tests/UnitTests/Core/Detector/DetectorBuilderTests.cpp +++ b/Tests/UnitTests/Core/Detector/DetectorBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/DetectorTests.cpp b/Tests/UnitTests/Core/Detector/DetectorTests.cpp index d5fe8f18c11..ce8ac911933 100644 --- a/Tests/UnitTests/Core/Detector/DetectorTests.cpp +++ b/Tests/UnitTests/Core/Detector/DetectorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/DetectorVolumeBuilderTests.cpp b/Tests/UnitTests/Core/Detector/DetectorVolumeBuilderTests.cpp index 641226f0c43..e0b5d2bfbb2 100644 --- a/Tests/UnitTests/Core/Detector/DetectorVolumeBuilderTests.cpp +++ b/Tests/UnitTests/Core/Detector/DetectorVolumeBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/DetectorVolumeConsistencyTests.cpp b/Tests/UnitTests/Core/Detector/DetectorVolumeConsistencyTests.cpp index 0bbabbaf293..d46133b4760 100644 --- a/Tests/UnitTests/Core/Detector/DetectorVolumeConsistencyTests.cpp +++ b/Tests/UnitTests/Core/Detector/DetectorVolumeConsistencyTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/DetectorVolumeTests.cpp b/Tests/UnitTests/Core/Detector/DetectorVolumeTests.cpp index 9221bc0eed0..fba1875c169 100644 --- a/Tests/UnitTests/Core/Detector/DetectorVolumeTests.cpp +++ b/Tests/UnitTests/Core/Detector/DetectorVolumeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/GeometryIdGeneratorTests.cpp b/Tests/UnitTests/Core/Detector/GeometryIdGeneratorTests.cpp index 931a55f865d..2d315ecb6a7 100644 --- a/Tests/UnitTests/Core/Detector/GeometryIdGeneratorTests.cpp +++ b/Tests/UnitTests/Core/Detector/GeometryIdGeneratorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/IndexedRootVolumeFinderBuilderTests.cpp b/Tests/UnitTests/Core/Detector/IndexedRootVolumeFinderBuilderTests.cpp index 956bb597047..f505e901236 100644 --- a/Tests/UnitTests/Core/Detector/IndexedRootVolumeFinderBuilderTests.cpp +++ b/Tests/UnitTests/Core/Detector/IndexedRootVolumeFinderBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/IndexedSurfaceGridFillerTests.cpp b/Tests/UnitTests/Core/Detector/IndexedSurfaceGridFillerTests.cpp index f796acc1e9a..198016678b8 100644 --- a/Tests/UnitTests/Core/Detector/IndexedSurfaceGridFillerTests.cpp +++ b/Tests/UnitTests/Core/Detector/IndexedSurfaceGridFillerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/IndexedSurfacesGeneratorTests.cpp b/Tests/UnitTests/Core/Detector/IndexedSurfacesGeneratorTests.cpp index ab1212e4887..4f88dee007e 100644 --- a/Tests/UnitTests/Core/Detector/IndexedSurfacesGeneratorTests.cpp +++ b/Tests/UnitTests/Core/Detector/IndexedSurfacesGeneratorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/KdtSurfacesProviderTests.cpp b/Tests/UnitTests/Core/Detector/KdtSurfacesProviderTests.cpp index 16a5e9f772c..b47db7fc49c 100644 --- a/Tests/UnitTests/Core/Detector/KdtSurfacesProviderTests.cpp +++ b/Tests/UnitTests/Core/Detector/KdtSurfacesProviderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/LayerStructureBuilderTests.cpp b/Tests/UnitTests/Core/Detector/LayerStructureBuilderTests.cpp index 2e832a29f74..a109a61931a 100644 --- a/Tests/UnitTests/Core/Detector/LayerStructureBuilderTests.cpp +++ b/Tests/UnitTests/Core/Detector/LayerStructureBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/MultiWireStructureBuilderTests.cpp b/Tests/UnitTests/Core/Detector/MultiWireStructureBuilderTests.cpp index 7f54da797b7..99839806aae 100644 --- a/Tests/UnitTests/Core/Detector/MultiWireStructureBuilderTests.cpp +++ b/Tests/UnitTests/Core/Detector/MultiWireStructureBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/PortalGeneratorsTests.cpp b/Tests/UnitTests/Core/Detector/PortalGeneratorsTests.cpp index 98e6a451545..79a402137ea 100644 --- a/Tests/UnitTests/Core/Detector/PortalGeneratorsTests.cpp +++ b/Tests/UnitTests/Core/Detector/PortalGeneratorsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/PortalTests.cpp b/Tests/UnitTests/Core/Detector/PortalTests.cpp index 286493bdb65..46d6b32b94c 100644 --- a/Tests/UnitTests/Core/Detector/PortalTests.cpp +++ b/Tests/UnitTests/Core/Detector/PortalTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/ProtoBinningTests.cpp b/Tests/UnitTests/Core/Detector/ProtoBinningTests.cpp index 05c4c5946a8..725331ae8b7 100644 --- a/Tests/UnitTests/Core/Detector/ProtoBinningTests.cpp +++ b/Tests/UnitTests/Core/Detector/ProtoBinningTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/ProtoDetectorTests.cpp b/Tests/UnitTests/Core/Detector/ProtoDetectorTests.cpp index 114006c0351..27336b90196 100644 --- a/Tests/UnitTests/Core/Detector/ProtoDetectorTests.cpp +++ b/Tests/UnitTests/Core/Detector/ProtoDetectorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/ReferenceGeneratorsTests.cpp b/Tests/UnitTests/Core/Detector/ReferenceGeneratorsTests.cpp index a0063e5d471..662119ab3a1 100644 --- a/Tests/UnitTests/Core/Detector/ReferenceGeneratorsTests.cpp +++ b/Tests/UnitTests/Core/Detector/ReferenceGeneratorsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/SupportSurfacesHelperTests.cpp b/Tests/UnitTests/Core/Detector/SupportSurfacesHelperTests.cpp index 624e0987a40..d8289efdc72 100644 --- a/Tests/UnitTests/Core/Detector/SupportSurfacesHelperTests.cpp +++ b/Tests/UnitTests/Core/Detector/SupportSurfacesHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Detector/VolumeStructureBuilderTests.cpp b/Tests/UnitTests/Core/Detector/VolumeStructureBuilderTests.cpp index 6ff8c35a291..9d7064a52a4 100644 --- a/Tests/UnitTests/Core/Detector/VolumeStructureBuilderTests.cpp +++ b/Tests/UnitTests/Core/Detector/VolumeStructureBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/BoundTrackParametersTests.cpp b/Tests/UnitTests/Core/EventData/BoundTrackParametersTests.cpp index 5e79730056b..a05d273f7a1 100644 --- a/Tests/UnitTests/Core/EventData/BoundTrackParametersTests.cpp +++ b/Tests/UnitTests/Core/EventData/BoundTrackParametersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/EventData/ChargeTests.cpp b/Tests/UnitTests/Core/EventData/ChargeTests.cpp index e60dc3dad41..0640482a592 100644 --- a/Tests/UnitTests/Core/EventData/ChargeTests.cpp +++ b/Tests/UnitTests/Core/EventData/ChargeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/CorrectedTransformFreeToBoundTests.cpp b/Tests/UnitTests/Core/EventData/CorrectedTransformFreeToBoundTests.cpp index c5eca8fca6c..a8bfcbb6637 100644 --- a/Tests/UnitTests/Core/EventData/CorrectedTransformFreeToBoundTests.cpp +++ b/Tests/UnitTests/Core/EventData/CorrectedTransformFreeToBoundTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/CurvilinearTrackParametersTests.cpp b/Tests/UnitTests/Core/EventData/CurvilinearTrackParametersTests.cpp index 49f21ff7ea3..122d4b075d0 100644 --- a/Tests/UnitTests/Core/EventData/CurvilinearTrackParametersTests.cpp +++ b/Tests/UnitTests/Core/EventData/CurvilinearTrackParametersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/FreeTrackParametersTests.cpp b/Tests/UnitTests/Core/EventData/FreeTrackParametersTests.cpp index 0033af46bd4..71b0dc0a20e 100644 --- a/Tests/UnitTests/Core/EventData/FreeTrackParametersTests.cpp +++ b/Tests/UnitTests/Core/EventData/FreeTrackParametersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/EventData/MeasurementHelpersTests.cpp b/Tests/UnitTests/Core/EventData/MeasurementHelpersTests.cpp index c90c3b3ed7b..4cc000e42e2 100644 --- a/Tests/UnitTests/Core/EventData/MeasurementHelpersTests.cpp +++ b/Tests/UnitTests/Core/EventData/MeasurementHelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/MultiComponentBoundTrackParametersTests.cpp b/Tests/UnitTests/Core/EventData/MultiComponentBoundTrackParametersTests.cpp index 62425e23c03..f9be3e239ab 100644 --- a/Tests/UnitTests/Core/EventData/MultiComponentBoundTrackParametersTests.cpp +++ b/Tests/UnitTests/Core/EventData/MultiComponentBoundTrackParametersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/MultiTrajectoryHelpersTests.cpp b/Tests/UnitTests/Core/EventData/MultiTrajectoryHelpersTests.cpp index 9c2e88362f0..2979e1ce658 100644 --- a/Tests/UnitTests/Core/EventData/MultiTrajectoryHelpersTests.cpp +++ b/Tests/UnitTests/Core/EventData/MultiTrajectoryHelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/MultiTrajectoryTests.cpp b/Tests/UnitTests/Core/EventData/MultiTrajectoryTests.cpp index 6db5d05f590..6a3c1aafc3e 100644 --- a/Tests/UnitTests/Core/EventData/MultiTrajectoryTests.cpp +++ b/Tests/UnitTests/Core/EventData/MultiTrajectoryTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/EventData/ParticleHypothesisTests.cpp b/Tests/UnitTests/Core/EventData/ParticleHypothesisTests.cpp index 9b99f79d7a9..9fbf3f8b8ef 100644 --- a/Tests/UnitTests/Core/EventData/ParticleHypothesisTests.cpp +++ b/Tests/UnitTests/Core/EventData/ParticleHypothesisTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/SeedEdmTests.cpp b/Tests/UnitTests/Core/EventData/SeedEdmTests.cpp index 03b8f037efe..c5a959b21db 100644 --- a/Tests/UnitTests/Core/EventData/SeedEdmTests.cpp +++ b/Tests/UnitTests/Core/EventData/SeedEdmTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/SourceLinkTests.cpp b/Tests/UnitTests/Core/EventData/SourceLinkTests.cpp index ecd59253455..58b02b509d4 100644 --- a/Tests/UnitTests/Core/EventData/SourceLinkTests.cpp +++ b/Tests/UnitTests/Core/EventData/SourceLinkTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/SubspaceHelpersTests.cpp b/Tests/UnitTests/Core/EventData/SubspaceHelpersTests.cpp index 45a51d4d3bd..827235191db 100644 --- a/Tests/UnitTests/Core/EventData/SubspaceHelpersTests.cpp +++ b/Tests/UnitTests/Core/EventData/SubspaceHelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/TrackContainerComplianceTests.cpp b/Tests/UnitTests/Core/EventData/TrackContainerComplianceTests.cpp index e150204bc65..636b30bff54 100644 --- a/Tests/UnitTests/Core/EventData/TrackContainerComplianceTests.cpp +++ b/Tests/UnitTests/Core/EventData/TrackContainerComplianceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/EventData/MultiTrajectory.hpp" #include "Acts/EventData/ProxyAccessor.hpp" diff --git a/Tests/UnitTests/Core/EventData/TrackParametersDatasets.hpp b/Tests/UnitTests/Core/EventData/TrackParametersDatasets.hpp index 05e256fd434..3174658a578 100644 --- a/Tests/UnitTests/Core/EventData/TrackParametersDatasets.hpp +++ b/Tests/UnitTests/Core/EventData/TrackParametersDatasets.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/EventData/TrackStatePropMaskTests.cpp b/Tests/UnitTests/Core/EventData/TrackStatePropMaskTests.cpp index fd4dfda60e7..a051a9a1685 100644 --- a/Tests/UnitTests/Core/EventData/TrackStatePropMaskTests.cpp +++ b/Tests/UnitTests/Core/EventData/TrackStatePropMaskTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/TrackTests.cpp b/Tests/UnitTests/Core/EventData/TrackTests.cpp index db8863e5e6b..013132a60b9 100644 --- a/Tests/UnitTests/Core/EventData/TrackTests.cpp +++ b/Tests/UnitTests/Core/EventData/TrackTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/TrackTestsExtra.cpp b/Tests/UnitTests/Core/EventData/TrackTestsExtra.cpp index 8dd12203991..2c16463ebe1 100644 --- a/Tests/UnitTests/Core/EventData/TrackTestsExtra.cpp +++ b/Tests/UnitTests/Core/EventData/TrackTestsExtra.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/EventData/TransformHelpersTests.cpp b/Tests/UnitTests/Core/EventData/TransformHelpersTests.cpp index 57b675ae317..2ae0daee9dc 100644 --- a/Tests/UnitTests/Core/EventData/TransformHelpersTests.cpp +++ b/Tests/UnitTests/Core/EventData/TransformHelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Geometry/AlignmentContextTests.cpp b/Tests/UnitTests/Core/Geometry/AlignmentContextTests.cpp index 929f746377b..382bb8a0075 100644 --- a/Tests/UnitTests/Core/Geometry/AlignmentContextTests.cpp +++ b/Tests/UnitTests/Core/Geometry/AlignmentContextTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/ConeLayerTests.cpp b/Tests/UnitTests/Core/Geometry/ConeLayerTests.cpp index 7bfbdcab179..95054224201 100644 --- a/Tests/UnitTests/Core/Geometry/ConeLayerTests.cpp +++ b/Tests/UnitTests/Core/Geometry/ConeLayerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/ConeVolumeBoundsTests.cpp b/Tests/UnitTests/Core/Geometry/ConeVolumeBoundsTests.cpp index d5040173f44..855fac2ff1b 100644 --- a/Tests/UnitTests/Core/Geometry/ConeVolumeBoundsTests.cpp +++ b/Tests/UnitTests/Core/Geometry/ConeVolumeBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/CuboidVolumeBoundsTests.cpp b/Tests/UnitTests/Core/Geometry/CuboidVolumeBoundsTests.cpp index dac15d46ba5..c3cf71a351b 100644 --- a/Tests/UnitTests/Core/Geometry/CuboidVolumeBoundsTests.cpp +++ b/Tests/UnitTests/Core/Geometry/CuboidVolumeBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/CuboidVolumeBuilderTests.cpp b/Tests/UnitTests/Core/Geometry/CuboidVolumeBuilderTests.cpp index f669e08fb03..ff08e5c9996 100644 --- a/Tests/UnitTests/Core/Geometry/CuboidVolumeBuilderTests.cpp +++ b/Tests/UnitTests/Core/Geometry/CuboidVolumeBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/CutoutCylinderVolumeBoundsTests.cpp b/Tests/UnitTests/Core/Geometry/CutoutCylinderVolumeBoundsTests.cpp index 2cac47c5415..7518ad5489a 100644 --- a/Tests/UnitTests/Core/Geometry/CutoutCylinderVolumeBoundsTests.cpp +++ b/Tests/UnitTests/Core/Geometry/CutoutCylinderVolumeBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/CylinderLayerTests.cpp b/Tests/UnitTests/Core/Geometry/CylinderLayerTests.cpp index bf172e8f6a5..616292486e6 100644 --- a/Tests/UnitTests/Core/Geometry/CylinderLayerTests.cpp +++ b/Tests/UnitTests/Core/Geometry/CylinderLayerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/CylinderVolumeBoundsTests.cpp b/Tests/UnitTests/Core/Geometry/CylinderVolumeBoundsTests.cpp index 585f4503093..e0d22344a9a 100644 --- a/Tests/UnitTests/Core/Geometry/CylinderVolumeBoundsTests.cpp +++ b/Tests/UnitTests/Core/Geometry/CylinderVolumeBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Geometry/CylinderVolumeBuilderTests.cpp b/Tests/UnitTests/Core/Geometry/CylinderVolumeBuilderTests.cpp index 0dd4df5cf52..e7a96099bb0 100644 --- a/Tests/UnitTests/Core/Geometry/CylinderVolumeBuilderTests.cpp +++ b/Tests/UnitTests/Core/Geometry/CylinderVolumeBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Geometry/CylinderVolumeStackTests.cpp b/Tests/UnitTests/Core/Geometry/CylinderVolumeStackTests.cpp index fcdd21b931c..ab3c23a3dfc 100644 --- a/Tests/UnitTests/Core/Geometry/CylinderVolumeStackTests.cpp +++ b/Tests/UnitTests/Core/Geometry/CylinderVolumeStackTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Geometry/DiscLayerTests.cpp b/Tests/UnitTests/Core/Geometry/DiscLayerTests.cpp index 11837801ebf..6a5f5770d48 100644 --- a/Tests/UnitTests/Core/Geometry/DiscLayerTests.cpp +++ b/Tests/UnitTests/Core/Geometry/DiscLayerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/ExtentTests.cpp b/Tests/UnitTests/Core/Geometry/ExtentTests.cpp index 5d987935a28..80513a1d80b 100644 --- a/Tests/UnitTests/Core/Geometry/ExtentTests.cpp +++ b/Tests/UnitTests/Core/Geometry/ExtentTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/GenericApproachDescriptorTests.cpp b/Tests/UnitTests/Core/Geometry/GenericApproachDescriptorTests.cpp index 5b968db327c..9c84e3635bf 100644 --- a/Tests/UnitTests/Core/Geometry/GenericApproachDescriptorTests.cpp +++ b/Tests/UnitTests/Core/Geometry/GenericApproachDescriptorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/GenericCuboidVolumeBoundsTests.cpp b/Tests/UnitTests/Core/Geometry/GenericCuboidVolumeBoundsTests.cpp index b62758ec815..1a7f5a7d056 100644 --- a/Tests/UnitTests/Core/Geometry/GenericCuboidVolumeBoundsTests.cpp +++ b/Tests/UnitTests/Core/Geometry/GenericCuboidVolumeBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/GeometryHierarchyMapTests.cpp b/Tests/UnitTests/Core/Geometry/GeometryHierarchyMapTests.cpp index dce0e813c59..a151e932d94 100644 --- a/Tests/UnitTests/Core/Geometry/GeometryHierarchyMapTests.cpp +++ b/Tests/UnitTests/Core/Geometry/GeometryHierarchyMapTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/GeometryIdentifierTests.cpp b/Tests/UnitTests/Core/Geometry/GeometryIdentifierTests.cpp index fe6e4224ffe..b7e7a163d50 100644 --- a/Tests/UnitTests/Core/Geometry/GeometryIdentifierTests.cpp +++ b/Tests/UnitTests/Core/Geometry/GeometryIdentifierTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/KDTreeTrackingGeometryBuilderTests.cpp b/Tests/UnitTests/Core/Geometry/KDTreeTrackingGeometryBuilderTests.cpp index ea6caa240ae..329dde4e83c 100644 --- a/Tests/UnitTests/Core/Geometry/KDTreeTrackingGeometryBuilderTests.cpp +++ b/Tests/UnitTests/Core/Geometry/KDTreeTrackingGeometryBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/LayerCreatorTests.cpp b/Tests/UnitTests/Core/Geometry/LayerCreatorTests.cpp index deb72b97159..866a714a7ff 100644 --- a/Tests/UnitTests/Core/Geometry/LayerCreatorTests.cpp +++ b/Tests/UnitTests/Core/Geometry/LayerCreatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/LayerStub.hpp b/Tests/UnitTests/Core/Geometry/LayerStub.hpp index 3ccd635f3d2..a6eb0dbca1b 100644 --- a/Tests/UnitTests/Core/Geometry/LayerStub.hpp +++ b/Tests/UnitTests/Core/Geometry/LayerStub.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Geometry/LayerTests.cpp b/Tests/UnitTests/Core/Geometry/LayerTests.cpp index fe142338f25..df0fa0d8f0a 100644 --- a/Tests/UnitTests/Core/Geometry/LayerTests.cpp +++ b/Tests/UnitTests/Core/Geometry/LayerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/NavigationLayerTests.cpp b/Tests/UnitTests/Core/Geometry/NavigationLayerTests.cpp index 23868f88b26..32406c3a288 100644 --- a/Tests/UnitTests/Core/Geometry/NavigationLayerTests.cpp +++ b/Tests/UnitTests/Core/Geometry/NavigationLayerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/PlaneLayerTests.cpp b/Tests/UnitTests/Core/Geometry/PlaneLayerTests.cpp index a97fca3ee1a..b3d96a56943 100644 --- a/Tests/UnitTests/Core/Geometry/PlaneLayerTests.cpp +++ b/Tests/UnitTests/Core/Geometry/PlaneLayerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/PolyhedronTests.cpp b/Tests/UnitTests/Core/Geometry/PolyhedronTests.cpp index 0d92383745f..d087c6485cf 100644 --- a/Tests/UnitTests/Core/Geometry/PolyhedronTests.cpp +++ b/Tests/UnitTests/Core/Geometry/PolyhedronTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/PortalLinkTests.cpp b/Tests/UnitTests/Core/Geometry/PortalLinkTests.cpp index 727e01c9f69..dc032060a5b 100644 --- a/Tests/UnitTests/Core/Geometry/PortalLinkTests.cpp +++ b/Tests/UnitTests/Core/Geometry/PortalLinkTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Geometry/PortalTests.cpp b/Tests/UnitTests/Core/Geometry/PortalTests.cpp index b36086dc8c9..49081748649 100644 --- a/Tests/UnitTests/Core/Geometry/PortalTests.cpp +++ b/Tests/UnitTests/Core/Geometry/PortalTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Geometry/ProtoLayerHelperTests.cpp b/Tests/UnitTests/Core/Geometry/ProtoLayerHelperTests.cpp index d8ba622257e..c6ccd763095 100644 --- a/Tests/UnitTests/Core/Geometry/ProtoLayerHelperTests.cpp +++ b/Tests/UnitTests/Core/Geometry/ProtoLayerHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/ProtoLayerTests.cpp b/Tests/UnitTests/Core/Geometry/ProtoLayerTests.cpp index 434b808e309..cbace6a6559 100644 --- a/Tests/UnitTests/Core/Geometry/ProtoLayerTests.cpp +++ b/Tests/UnitTests/Core/Geometry/ProtoLayerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/SimpleGeometryTests.cpp b/Tests/UnitTests/Core/Geometry/SimpleGeometryTests.cpp index a8fe3cb2955..60c3dc6d282 100644 --- a/Tests/UnitTests/Core/Geometry/SimpleGeometryTests.cpp +++ b/Tests/UnitTests/Core/Geometry/SimpleGeometryTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/SurfaceArrayCreatorTests.cpp b/Tests/UnitTests/Core/Geometry/SurfaceArrayCreatorTests.cpp index 6f68b8b7315..91eaebabe8e 100644 --- a/Tests/UnitTests/Core/Geometry/SurfaceArrayCreatorTests.cpp +++ b/Tests/UnitTests/Core/Geometry/SurfaceArrayCreatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/SurfaceBinningMatcherTests.cpp b/Tests/UnitTests/Core/Geometry/SurfaceBinningMatcherTests.cpp index efd2da5e8b6..398e4279a9d 100644 --- a/Tests/UnitTests/Core/Geometry/SurfaceBinningMatcherTests.cpp +++ b/Tests/UnitTests/Core/Geometry/SurfaceBinningMatcherTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/TrackingGeometryClosureTests.cpp b/Tests/UnitTests/Core/Geometry/TrackingGeometryClosureTests.cpp index daed16a2987..8c60e3898b9 100644 --- a/Tests/UnitTests/Core/Geometry/TrackingGeometryClosureTests.cpp +++ b/Tests/UnitTests/Core/Geometry/TrackingGeometryClosureTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/TrackingGeometryCreationTests.cpp b/Tests/UnitTests/Core/Geometry/TrackingGeometryCreationTests.cpp index 46af559ff1a..6bd139bb82d 100644 --- a/Tests/UnitTests/Core/Geometry/TrackingGeometryCreationTests.cpp +++ b/Tests/UnitTests/Core/Geometry/TrackingGeometryCreationTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/TrackingGeometryGeometryIdTests.cpp b/Tests/UnitTests/Core/Geometry/TrackingGeometryGeometryIdTests.cpp index a12b70d2ffb..d1d7e8da025 100644 --- a/Tests/UnitTests/Core/Geometry/TrackingGeometryGeometryIdTests.cpp +++ b/Tests/UnitTests/Core/Geometry/TrackingGeometryGeometryIdTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/TrackingVolumeCreation.hpp b/Tests/UnitTests/Core/Geometry/TrackingVolumeCreation.hpp index 58a7b30380a..d895f74ccab 100644 --- a/Tests/UnitTests/Core/Geometry/TrackingVolumeCreation.hpp +++ b/Tests/UnitTests/Core/Geometry/TrackingVolumeCreation.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Geometry/TrackingVolumeTests.cpp b/Tests/UnitTests/Core/Geometry/TrackingVolumeTests.cpp index 992762bb657..d6d9bb6dd0f 100644 --- a/Tests/UnitTests/Core/Geometry/TrackingVolumeTests.cpp +++ b/Tests/UnitTests/Core/Geometry/TrackingVolumeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/TrapezoidVolumeBoundsTests.cpp b/Tests/UnitTests/Core/Geometry/TrapezoidVolumeBoundsTests.cpp index cb10d347428..79e21127ba1 100644 --- a/Tests/UnitTests/Core/Geometry/TrapezoidVolumeBoundsTests.cpp +++ b/Tests/UnitTests/Core/Geometry/TrapezoidVolumeBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/VolumeBoundsTests.cpp b/Tests/UnitTests/Core/Geometry/VolumeBoundsTests.cpp index 6f25d8caed1..8a04bfd2a17 100644 --- a/Tests/UnitTests/Core/Geometry/VolumeBoundsTests.cpp +++ b/Tests/UnitTests/Core/Geometry/VolumeBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Geometry/VolumeTests.cpp b/Tests/UnitTests/Core/Geometry/VolumeTests.cpp index 93d86595b12..599870f1a12 100644 --- a/Tests/UnitTests/Core/Geometry/VolumeTests.cpp +++ b/Tests/UnitTests/Core/Geometry/VolumeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/MagneticField/ConstantBFieldTests.cpp b/Tests/UnitTests/Core/MagneticField/ConstantBFieldTests.cpp index 4548cb94933..f6d8486e054 100644 --- a/Tests/UnitTests/Core/MagneticField/ConstantBFieldTests.cpp +++ b/Tests/UnitTests/Core/MagneticField/ConstantBFieldTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/MagneticField/InterpolatedBFieldMapTests.cpp b/Tests/UnitTests/Core/MagneticField/InterpolatedBFieldMapTests.cpp index 46d1caec469..1671aa7a429 100644 --- a/Tests/UnitTests/Core/MagneticField/InterpolatedBFieldMapTests.cpp +++ b/Tests/UnitTests/Core/MagneticField/InterpolatedBFieldMapTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/MagneticField/MagneticFieldProviderTests.cpp b/Tests/UnitTests/Core/MagneticField/MagneticFieldProviderTests.cpp index a57275d08b7..dd8e5b4d274 100644 --- a/Tests/UnitTests/Core/MagneticField/MagneticFieldProviderTests.cpp +++ b/Tests/UnitTests/Core/MagneticField/MagneticFieldProviderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/MagneticField/SolenoidBFieldTests.cpp b/Tests/UnitTests/Core/MagneticField/SolenoidBFieldTests.cpp index 22f727e6231..885e9ee59ec 100644 --- a/Tests/UnitTests/Core/MagneticField/SolenoidBFieldTests.cpp +++ b/Tests/UnitTests/Core/MagneticField/SolenoidBFieldTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/AccumulatedMaterialSlabTests.cpp b/Tests/UnitTests/Core/Material/AccumulatedMaterialSlabTests.cpp index 578b562cc8b..34f9fe76f16 100644 --- a/Tests/UnitTests/Core/Material/AccumulatedMaterialSlabTests.cpp +++ b/Tests/UnitTests/Core/Material/AccumulatedMaterialSlabTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/AccumulatedSurfaceMaterialTests.cpp b/Tests/UnitTests/Core/Material/AccumulatedSurfaceMaterialTests.cpp index edb601fe5ad..9eb412a344d 100644 --- a/Tests/UnitTests/Core/Material/AccumulatedSurfaceMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/AccumulatedSurfaceMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/AccumulatedVolumeMaterialTests.cpp b/Tests/UnitTests/Core/Material/AccumulatedVolumeMaterialTests.cpp index 6ededefb715..8cac0b95277 100644 --- a/Tests/UnitTests/Core/Material/AccumulatedVolumeMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/AccumulatedVolumeMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/AverageMaterialsTests.cpp b/Tests/UnitTests/Core/Material/AverageMaterialsTests.cpp index fcfe8eaee08..ee8a40d9ff3 100644 --- a/Tests/UnitTests/Core/Material/AverageMaterialsTests.cpp +++ b/Tests/UnitTests/Core/Material/AverageMaterialsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/BinnedSurfaceMaterialAccumulaterTests.cpp b/Tests/UnitTests/Core/Material/BinnedSurfaceMaterialAccumulaterTests.cpp index f4aea23e2dc..36a7941e0fd 100644 --- a/Tests/UnitTests/Core/Material/BinnedSurfaceMaterialAccumulaterTests.cpp +++ b/Tests/UnitTests/Core/Material/BinnedSurfaceMaterialAccumulaterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/BinnedSurfaceMaterialTests.cpp b/Tests/UnitTests/Core/Material/BinnedSurfaceMaterialTests.cpp index 7cd38d324b4..f9c2d26df40 100644 --- a/Tests/UnitTests/Core/Material/BinnedSurfaceMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/BinnedSurfaceMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/GridSurfaceMaterialTests.cpp b/Tests/UnitTests/Core/Material/GridSurfaceMaterialTests.cpp index ed47cfcaf96..52b3af3358b 100644 --- a/Tests/UnitTests/Core/Material/GridSurfaceMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/GridSurfaceMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/HomogeneousSurfaceMaterialTests.cpp b/Tests/UnitTests/Core/Material/HomogeneousSurfaceMaterialTests.cpp index aa31a88f46c..7c310b7c11a 100644 --- a/Tests/UnitTests/Core/Material/HomogeneousSurfaceMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/HomogeneousSurfaceMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/HomogeneousVolumeMaterialTests.cpp b/Tests/UnitTests/Core/Material/HomogeneousVolumeMaterialTests.cpp index 09fac3c8e54..c71c3f99eb4 100644 --- a/Tests/UnitTests/Core/Material/HomogeneousVolumeMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/HomogeneousVolumeMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/ISurfaceMaterialTests.cpp b/Tests/UnitTests/Core/Material/ISurfaceMaterialTests.cpp index 24bb823db74..067e460b71f 100644 --- a/Tests/UnitTests/Core/Material/ISurfaceMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/ISurfaceMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/InteractionsTests.cpp b/Tests/UnitTests/Core/Material/InteractionsTests.cpp index 80134c43f30..4dd45ec8606 100644 --- a/Tests/UnitTests/Core/Material/InteractionsTests.cpp +++ b/Tests/UnitTests/Core/Material/InteractionsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Material/InterpolatedMaterialMapTests.cpp b/Tests/UnitTests/Core/Material/InterpolatedMaterialMapTests.cpp index 60bdafc7062..10933ccfa0c 100644 --- a/Tests/UnitTests/Core/Material/InterpolatedMaterialMapTests.cpp +++ b/Tests/UnitTests/Core/Material/InterpolatedMaterialMapTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/IntersectionMaterialAssignerTests.cpp b/Tests/UnitTests/Core/Material/IntersectionMaterialAssignerTests.cpp index 42a15a860f8..83606b85ff0 100644 --- a/Tests/UnitTests/Core/Material/IntersectionMaterialAssignerTests.cpp +++ b/Tests/UnitTests/Core/Material/IntersectionMaterialAssignerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/MaterialCompositionTests.cpp b/Tests/UnitTests/Core/Material/MaterialCompositionTests.cpp index ce924a82f6d..86cdd83e3bf 100644 --- a/Tests/UnitTests/Core/Material/MaterialCompositionTests.cpp +++ b/Tests/UnitTests/Core/Material/MaterialCompositionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/MaterialGridHelperTests.cpp b/Tests/UnitTests/Core/Material/MaterialGridHelperTests.cpp index 2eebf107fc9..514da1ddd74 100644 --- a/Tests/UnitTests/Core/Material/MaterialGridHelperTests.cpp +++ b/Tests/UnitTests/Core/Material/MaterialGridHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/MaterialInteractionAssignmentTests.cpp b/Tests/UnitTests/Core/Material/MaterialInteractionAssignmentTests.cpp index 5d6101cd3be..34771c759ec 100644 --- a/Tests/UnitTests/Core/Material/MaterialInteractionAssignmentTests.cpp +++ b/Tests/UnitTests/Core/Material/MaterialInteractionAssignmentTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/MaterialMapperTests.cpp b/Tests/UnitTests/Core/Material/MaterialMapperTests.cpp index ae279cfbc55..9fca8bb64b7 100644 --- a/Tests/UnitTests/Core/Material/MaterialMapperTests.cpp +++ b/Tests/UnitTests/Core/Material/MaterialMapperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/MaterialSlabTests.cpp b/Tests/UnitTests/Core/Material/MaterialSlabTests.cpp index f997e3b08dc..3dfab084a2b 100644 --- a/Tests/UnitTests/Core/Material/MaterialSlabTests.cpp +++ b/Tests/UnitTests/Core/Material/MaterialSlabTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/MaterialTests.cpp b/Tests/UnitTests/Core/Material/MaterialTests.cpp index 0f339c3733e..8e2e7736449 100644 --- a/Tests/UnitTests/Core/Material/MaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/MaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Material/MaterialValidaterTests.cpp b/Tests/UnitTests/Core/Material/MaterialValidaterTests.cpp index fd13f594fd3..af98a7df659 100644 --- a/Tests/UnitTests/Core/Material/MaterialValidaterTests.cpp +++ b/Tests/UnitTests/Core/Material/MaterialValidaterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/PropagatorMaterialAssignerTests.cpp b/Tests/UnitTests/Core/Material/PropagatorMaterialAssignerTests.cpp index 9f33c2d62b1..ac58f82c595 100644 --- a/Tests/UnitTests/Core/Material/PropagatorMaterialAssignerTests.cpp +++ b/Tests/UnitTests/Core/Material/PropagatorMaterialAssignerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/ProtoSurfaceMaterialTests.cpp b/Tests/UnitTests/Core/Material/ProtoSurfaceMaterialTests.cpp index a5b28beee03..195ef30b81d 100644 --- a/Tests/UnitTests/Core/Material/ProtoSurfaceMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/ProtoSurfaceMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/ProtoVolumeMaterialTests.cpp b/Tests/UnitTests/Core/Material/ProtoVolumeMaterialTests.cpp index a3ebc0e527a..f5cc2c90953 100644 --- a/Tests/UnitTests/Core/Material/ProtoVolumeMaterialTests.cpp +++ b/Tests/UnitTests/Core/Material/ProtoVolumeMaterialTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/SurfaceMaterialMapperTests.cpp b/Tests/UnitTests/Core/Material/SurfaceMaterialMapperTests.cpp index 661463fcb11..6d7b94fecde 100644 --- a/Tests/UnitTests/Core/Material/SurfaceMaterialMapperTests.cpp +++ b/Tests/UnitTests/Core/Material/SurfaceMaterialMapperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Material/VolumeMaterialMapperTests.cpp b/Tests/UnitTests/Core/Material/VolumeMaterialMapperTests.cpp index dbf63a661da..ffe731cb6ca 100644 --- a/Tests/UnitTests/Core/Material/VolumeMaterialMapperTests.cpp +++ b/Tests/UnitTests/Core/Material/VolumeMaterialMapperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Navigation/DetectorNavigatorTests.cpp b/Tests/UnitTests/Core/Navigation/DetectorNavigatorTests.cpp index c117990f1f4..2dc5bbacdbd 100644 --- a/Tests/UnitTests/Core/Navigation/DetectorNavigatorTests.cpp +++ b/Tests/UnitTests/Core/Navigation/DetectorNavigatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Navigation/DetectorVolumeFindersTests.cpp b/Tests/UnitTests/Core/Navigation/DetectorVolumeFindersTests.cpp index 959aae85be8..6c9efd3949c 100644 --- a/Tests/UnitTests/Core/Navigation/DetectorVolumeFindersTests.cpp +++ b/Tests/UnitTests/Core/Navigation/DetectorVolumeFindersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Navigation/MultiWireNavigationTests.cpp b/Tests/UnitTests/Core/Navigation/MultiWireNavigationTests.cpp index 56d163b08a7..3d5f11261da 100644 --- a/Tests/UnitTests/Core/Navigation/MultiWireNavigationTests.cpp +++ b/Tests/UnitTests/Core/Navigation/MultiWireNavigationTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Navigation/NavigationStateTests.cpp b/Tests/UnitTests/Core/Navigation/NavigationStateTests.cpp index e9f1f1b35aa..1ad61af8bfe 100644 --- a/Tests/UnitTests/Core/Navigation/NavigationStateTests.cpp +++ b/Tests/UnitTests/Core/Navigation/NavigationStateTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Navigation/NavigationStateUpdatersTests.cpp b/Tests/UnitTests/Core/Navigation/NavigationStateUpdatersTests.cpp index 3829fddb354..35157b26218 100644 --- a/Tests/UnitTests/Core/Navigation/NavigationStateUpdatersTests.cpp +++ b/Tests/UnitTests/Core/Navigation/NavigationStateUpdatersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Navigation/NavigationStreamTests.cpp b/Tests/UnitTests/Core/Navigation/NavigationStreamTests.cpp index 5ac91ca72bb..097dde2ed64 100644 --- a/Tests/UnitTests/Core/Navigation/NavigationStreamTests.cpp +++ b/Tests/UnitTests/Core/Navigation/NavigationStreamTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Navigation/PortalNavigationTests.cpp b/Tests/UnitTests/Core/Navigation/PortalNavigationTests.cpp index a379d72c4eb..baa81813e8d 100644 --- a/Tests/UnitTests/Core/Navigation/PortalNavigationTests.cpp +++ b/Tests/UnitTests/Core/Navigation/PortalNavigationTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/AtlasStepperTests.cpp b/Tests/UnitTests/Core/Propagator/AtlasStepperTests.cpp index 72f00bcdc9d..0a707c7f299 100644 --- a/Tests/UnitTests/Core/Propagator/AtlasStepperTests.cpp +++ b/Tests/UnitTests/Core/Propagator/AtlasStepperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/BoundToCurvilinearConversionTests.cpp b/Tests/UnitTests/Core/Propagator/BoundToCurvilinearConversionTests.cpp index c8be9f1e57e..8f2ce96f8ae 100644 --- a/Tests/UnitTests/Core/Propagator/BoundToCurvilinearConversionTests.cpp +++ b/Tests/UnitTests/Core/Propagator/BoundToCurvilinearConversionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/ConstrainedStepTests.cpp b/Tests/UnitTests/Core/Propagator/ConstrainedStepTests.cpp index a5d381981ab..ecbcf32054f 100644 --- a/Tests/UnitTests/Core/Propagator/ConstrainedStepTests.cpp +++ b/Tests/UnitTests/Core/Propagator/ConstrainedStepTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/CovarianceEngineTests.cpp b/Tests/UnitTests/Core/Propagator/CovarianceEngineTests.cpp index d914374ac23..fb1a1717b5c 100644 --- a/Tests/UnitTests/Core/Propagator/CovarianceEngineTests.cpp +++ b/Tests/UnitTests/Core/Propagator/CovarianceEngineTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/DirectNavigatorTests.cpp b/Tests/UnitTests/Core/Propagator/DirectNavigatorTests.cpp index 44e3b51d63d..f01e2da6339 100644 --- a/Tests/UnitTests/Core/Propagator/DirectNavigatorTests.cpp +++ b/Tests/UnitTests/Core/Propagator/DirectNavigatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/EigenStepperTests.cpp b/Tests/UnitTests/Core/Propagator/EigenStepperTests.cpp index a1545b500ac..e818e220915 100644 --- a/Tests/UnitTests/Core/Propagator/EigenStepperTests.cpp +++ b/Tests/UnitTests/Core/Propagator/EigenStepperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/ExtrapolatorTests.cpp b/Tests/UnitTests/Core/Propagator/ExtrapolatorTests.cpp index a49faf6c499..4316c7ba563 100644 --- a/Tests/UnitTests/Core/Propagator/ExtrapolatorTests.cpp +++ b/Tests/UnitTests/Core/Propagator/ExtrapolatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/JacobianEngineTests.cpp b/Tests/UnitTests/Core/Propagator/JacobianEngineTests.cpp index 899caf97277..53b44d2bb48 100644 --- a/Tests/UnitTests/Core/Propagator/JacobianEngineTests.cpp +++ b/Tests/UnitTests/Core/Propagator/JacobianEngineTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/JacobianTests.cpp b/Tests/UnitTests/Core/Propagator/JacobianTests.cpp index 9d43d22dbd1..0761d5860eb 100644 --- a/Tests/UnitTests/Core/Propagator/JacobianTests.cpp +++ b/Tests/UnitTests/Core/Propagator/JacobianTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/KalmanExtrapolatorTests.cpp b/Tests/UnitTests/Core/Propagator/KalmanExtrapolatorTests.cpp index cebbb7885a2..5176d309ba6 100644 --- a/Tests/UnitTests/Core/Propagator/KalmanExtrapolatorTests.cpp +++ b/Tests/UnitTests/Core/Propagator/KalmanExtrapolatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/LoopProtectionTests.cpp b/Tests/UnitTests/Core/Propagator/LoopProtectionTests.cpp index 06ba5e8acee..20493c86f45 100644 --- a/Tests/UnitTests/Core/Propagator/LoopProtectionTests.cpp +++ b/Tests/UnitTests/Core/Propagator/LoopProtectionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/MaterialCollectionTests.cpp b/Tests/UnitTests/Core/Propagator/MaterialCollectionTests.cpp index 20594d0fed0..1e729221425 100644 --- a/Tests/UnitTests/Core/Propagator/MaterialCollectionTests.cpp +++ b/Tests/UnitTests/Core/Propagator/MaterialCollectionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/MultiStepperTests.cpp b/Tests/UnitTests/Core/Propagator/MultiStepperTests.cpp index 605da40ed28..b9842b55420 100644 --- a/Tests/UnitTests/Core/Propagator/MultiStepperTests.cpp +++ b/Tests/UnitTests/Core/Propagator/MultiStepperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/NavigatorTests.cpp b/Tests/UnitTests/Core/Propagator/NavigatorTests.cpp index 92e7f636aae..b9c6fdf87df 100644 --- a/Tests/UnitTests/Core/Propagator/NavigatorTests.cpp +++ b/Tests/UnitTests/Core/Propagator/NavigatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/PropagatorTests.cpp b/Tests/UnitTests/Core/Propagator/PropagatorTests.cpp index ce5d7b2b601..c434aa0044d 100644 --- a/Tests/UnitTests/Core/Propagator/PropagatorTests.cpp +++ b/Tests/UnitTests/Core/Propagator/PropagatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Propagator/StraightLineStepperTests.cpp b/Tests/UnitTests/Core/Propagator/StraightLineStepperTests.cpp index 527c727146f..fb8d348c38a 100644 --- a/Tests/UnitTests/Core/Propagator/StraightLineStepperTests.cpp +++ b/Tests/UnitTests/Core/Propagator/StraightLineStepperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/SympyStepperTests.cpp b/Tests/UnitTests/Core/Propagator/SympyStepperTests.cpp index a996152c402..fcdf13e9f8a 100644 --- a/Tests/UnitTests/Core/Propagator/SympyStepperTests.cpp +++ b/Tests/UnitTests/Core/Propagator/SympyStepperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Propagator/VolumeMaterialInteractionTests.cpp b/Tests/UnitTests/Core/Propagator/VolumeMaterialInteractionTests.cpp index d37ac188324..5bc361fc0a0 100644 --- a/Tests/UnitTests/Core/Propagator/VolumeMaterialInteractionTests.cpp +++ b/Tests/UnitTests/Core/Propagator/VolumeMaterialInteractionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Seeding/ATLASCuts.hpp b/Tests/UnitTests/Core/Seeding/ATLASCuts.hpp index 067f153fc72..e86d2aec8d9 100644 --- a/Tests/UnitTests/Core/Seeding/ATLASCuts.hpp +++ b/Tests/UnitTests/Core/Seeding/ATLASCuts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Seeding/BinnedGroupTest.cpp b/Tests/UnitTests/Core/Seeding/BinnedGroupTest.cpp index 18f20478488..1549472f1f6 100644 --- a/Tests/UnitTests/Core/Seeding/BinnedGroupTest.cpp +++ b/Tests/UnitTests/Core/Seeding/BinnedGroupTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Seeding/CandidatesForMiddleSpTests.cpp b/Tests/UnitTests/Core/Seeding/CandidatesForMiddleSpTests.cpp index e6068ed248c..5d4eb26dec8 100644 --- a/Tests/UnitTests/Core/Seeding/CandidatesForMiddleSpTests.cpp +++ b/Tests/UnitTests/Core/Seeding/CandidatesForMiddleSpTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Seeding/EstimateTrackParamsFromSeedTest.cpp b/Tests/UnitTests/Core/Seeding/EstimateTrackParamsFromSeedTest.cpp index aaf3b7f66ff..de15f7e09c2 100644 --- a/Tests/UnitTests/Core/Seeding/EstimateTrackParamsFromSeedTest.cpp +++ b/Tests/UnitTests/Core/Seeding/EstimateTrackParamsFromSeedTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Seeding/HoughTransformTest.cpp b/Tests/UnitTests/Core/Seeding/HoughTransformTest.cpp index 0a5b869e9da..30e3164f62c 100644 --- a/Tests/UnitTests/Core/Seeding/HoughTransformTest.cpp +++ b/Tests/UnitTests/Core/Seeding/HoughTransformTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Seeding/PathSeederTest.cpp b/Tests/UnitTests/Core/Seeding/PathSeederTest.cpp index 6e293a96b73..70a8f9ebaa0 100644 --- a/Tests/UnitTests/Core/Seeding/PathSeederTest.cpp +++ b/Tests/UnitTests/Core/Seeding/PathSeederTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Seeding/SeedFinderTest.cpp b/Tests/UnitTests/Core/Seeding/SeedFinderTest.cpp index 1bf1b565fef..4f263e693f7 100644 --- a/Tests/UnitTests/Core/Seeding/SeedFinderTest.cpp +++ b/Tests/UnitTests/Core/Seeding/SeedFinderTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Definitions/Algebra.hpp" #include "Acts/Definitions/Units.hpp" diff --git a/Tests/UnitTests/Core/Seeding/SpacePoint.hpp b/Tests/UnitTests/Core/Seeding/SpacePoint.hpp index 43fa6d0818f..e24f3cd4135 100644 --- a/Tests/UnitTests/Core/Seeding/SpacePoint.hpp +++ b/Tests/UnitTests/Core/Seeding/SpacePoint.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Seeding/SpacePointContainer.hpp b/Tests/UnitTests/Core/Seeding/SpacePointContainer.hpp index d55ca0c2cc3..cc264666f0f 100644 --- a/Tests/UnitTests/Core/Seeding/SpacePointContainer.hpp +++ b/Tests/UnitTests/Core/Seeding/SpacePointContainer.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Seeding/UtilityFunctionsTests.cpp b/Tests/UnitTests/Core/Seeding/UtilityFunctionsTests.cpp index 9c5f86f6037..963e16a1774 100644 --- a/Tests/UnitTests/Core/Seeding/UtilityFunctionsTests.cpp +++ b/Tests/UnitTests/Core/Seeding/UtilityFunctionsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/SpacePointFormation/SpacePointBuilderTests.cpp b/Tests/UnitTests/Core/SpacePointFormation/SpacePointBuilderTests.cpp index 37fced5bf35..8eb2a8b9a32 100644 --- a/Tests/UnitTests/Core/SpacePointFormation/SpacePointBuilderTests.cpp +++ b/Tests/UnitTests/Core/SpacePointFormation/SpacePointBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/AlignmentHelperTests.cpp b/Tests/UnitTests/Core/Surfaces/AlignmentHelperTests.cpp index 3f1f2d8e5fb..437db0f30cf 100644 --- a/Tests/UnitTests/Core/Surfaces/AlignmentHelperTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/AlignmentHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/AnnulusBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/AnnulusBoundsTests.cpp index 225770f0f76..c284d6d4796 100644 --- a/Tests/UnitTests/Core/Surfaces/AnnulusBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/AnnulusBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/BoundaryToleranceTests.cpp b/Tests/UnitTests/Core/Surfaces/BoundaryToleranceTests.cpp index 8d2d99ba360..cd49b409f5b 100644 --- a/Tests/UnitTests/Core/Surfaces/BoundaryToleranceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/BoundaryToleranceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/BoundaryToleranceTestsRefs.hpp b/Tests/UnitTests/Core/Surfaces/BoundaryToleranceTestsRefs.hpp index 361dd461282..a59053b8273 100644 --- a/Tests/UnitTests/Core/Surfaces/BoundaryToleranceTestsRefs.hpp +++ b/Tests/UnitTests/Core/Surfaces/BoundaryToleranceTestsRefs.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Surfaces/ConeBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/ConeBoundsTests.cpp index 63e4fb64ff2..887a14391c5 100644 --- a/Tests/UnitTests/Core/Surfaces/ConeBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/ConeBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/ConeSurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/ConeSurfaceTests.cpp index b4351175a74..e994d2dbc5a 100644 --- a/Tests/UnitTests/Core/Surfaces/ConeSurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/ConeSurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/ConvexPolygonBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/ConvexPolygonBoundsTests.cpp index 22136a369fa..bdb4c2948be 100644 --- a/Tests/UnitTests/Core/Surfaces/ConvexPolygonBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/ConvexPolygonBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/CurvilinearSurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/CurvilinearSurfaceTests.cpp index 3af7e84d528..9816bb2a8e7 100644 --- a/Tests/UnitTests/Core/Surfaces/CurvilinearSurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/CurvilinearSurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/CylinderBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/CylinderBoundsTests.cpp index aa08a3155b6..88636494152 100644 --- a/Tests/UnitTests/Core/Surfaces/CylinderBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/CylinderBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/CylinderSurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/CylinderSurfaceTests.cpp index 22f69a64109..1bc3b41db06 100644 --- a/Tests/UnitTests/Core/Surfaces/CylinderSurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/CylinderSurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/DiamondBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/DiamondBoundsTests.cpp index 866f15459c8..ecd5909f932 100644 --- a/Tests/UnitTests/Core/Surfaces/DiamondBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/DiamondBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/DiscSurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/DiscSurfaceTests.cpp index 8c07348b80e..3012f71217e 100644 --- a/Tests/UnitTests/Core/Surfaces/DiscSurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/DiscSurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/DiscTrapezoidBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/DiscTrapezoidBoundsTests.cpp index ab0e962c2d7..1515ef79292 100644 --- a/Tests/UnitTests/Core/Surfaces/DiscTrapezoidBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/DiscTrapezoidBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/EllipseBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/EllipseBoundsTests.cpp index fcc2b5db202..7d7391428f3 100644 --- a/Tests/UnitTests/Core/Surfaces/EllipseBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/EllipseBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/InfiniteBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/InfiniteBoundsTests.cpp index e9b608311ed..d0097695286 100644 --- a/Tests/UnitTests/Core/Surfaces/InfiniteBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/InfiniteBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/IntersectionHelper2DTests.cpp b/Tests/UnitTests/Core/Surfaces/IntersectionHelper2DTests.cpp index 5fc1c882378..660baa77580 100644 --- a/Tests/UnitTests/Core/Surfaces/IntersectionHelper2DTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/IntersectionHelper2DTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/LineBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/LineBoundsTests.cpp index a0190049505..f972529bed0 100644 --- a/Tests/UnitTests/Core/Surfaces/LineBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/LineBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/LineSurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/LineSurfaceTests.cpp index d52a15da8be..71dbf0827de 100644 --- a/Tests/UnitTests/Core/Surfaces/LineSurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/LineSurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/PerigeeSurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/PerigeeSurfaceTests.cpp index 416ceefedbc..b2346434293 100644 --- a/Tests/UnitTests/Core/Surfaces/PerigeeSurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/PerigeeSurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/PlaneSurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/PlaneSurfaceTests.cpp index a6e8da997d6..ee91782dca2 100644 --- a/Tests/UnitTests/Core/Surfaces/PlaneSurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/PlaneSurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // #include #include diff --git a/Tests/UnitTests/Core/Surfaces/PolyhedronSurfacesTests.cpp b/Tests/UnitTests/Core/Surfaces/PolyhedronSurfacesTests.cpp index b37649eebc5..c858f10f6db 100644 --- a/Tests/UnitTests/Core/Surfaces/PolyhedronSurfacesTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/PolyhedronSurfacesTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/RadialBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/RadialBoundsTests.cpp index 04d97041575..b95d9674bee 100644 --- a/Tests/UnitTests/Core/Surfaces/RadialBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/RadialBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/RectangleBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/RectangleBoundsTests.cpp index 7c220ba31b8..53c4df54861 100644 --- a/Tests/UnitTests/Core/Surfaces/RectangleBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/RectangleBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/StrawSurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/StrawSurfaceTests.cpp index 0402afcfabf..9756800eed2 100644 --- a/Tests/UnitTests/Core/Surfaces/StrawSurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/StrawSurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/SurfaceArrayTests.cpp b/Tests/UnitTests/Core/Surfaces/SurfaceArrayTests.cpp index 0425c91897d..348b6cceed6 100644 --- a/Tests/UnitTests/Core/Surfaces/SurfaceArrayTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/SurfaceArrayTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/SurfaceBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/SurfaceBoundsTests.cpp index 5b49bd16da0..3de53a2b628 100644 --- a/Tests/UnitTests/Core/Surfaces/SurfaceBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/SurfaceBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/SurfaceIntersectionTests.cpp b/Tests/UnitTests/Core/Surfaces/SurfaceIntersectionTests.cpp index 55cbe668d58..fed41d3fdde 100644 --- a/Tests/UnitTests/Core/Surfaces/SurfaceIntersectionTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/SurfaceIntersectionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/SurfaceLocalToGlobalRoundtripTests.cpp b/Tests/UnitTests/Core/Surfaces/SurfaceLocalToGlobalRoundtripTests.cpp index 8f3ff6e5f02..b1b56b18d59 100644 --- a/Tests/UnitTests/Core/Surfaces/SurfaceLocalToGlobalRoundtripTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/SurfaceLocalToGlobalRoundtripTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // This file contains systematic tests to verify the local->global->local // transformation roundtrip for all available surfaces with a large range of diff --git a/Tests/UnitTests/Core/Surfaces/SurfaceStub.hpp b/Tests/UnitTests/Core/Surfaces/SurfaceStub.hpp index 7c08978e4fa..573c9f55ce9 100644 --- a/Tests/UnitTests/Core/Surfaces/SurfaceStub.hpp +++ b/Tests/UnitTests/Core/Surfaces/SurfaceStub.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Surfaces/SurfaceTests.cpp b/Tests/UnitTests/Core/Surfaces/SurfaceTests.cpp index a5c3d54a09a..654bed3b8ff 100644 --- a/Tests/UnitTests/Core/Surfaces/SurfaceTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/SurfaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Surfaces/TrapezoidBoundsTests.cpp b/Tests/UnitTests/Core/Surfaces/TrapezoidBoundsTests.cpp index 6a36b889c97..35fb2cfb343 100644 --- a/Tests/UnitTests/Core/Surfaces/TrapezoidBoundsTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/TrapezoidBoundsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Surfaces/VerticesHelperTests.cpp b/Tests/UnitTests/Core/Surfaces/VerticesHelperTests.cpp index 4d59072faa8..d2838760081 100644 --- a/Tests/UnitTests/Core/Surfaces/VerticesHelperTests.cpp +++ b/Tests/UnitTests/Core/Surfaces/VerticesHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFinding/CombinatorialKalmanFilterTests.cpp b/Tests/UnitTests/Core/TrackFinding/CombinatorialKalmanFilterTests.cpp index cc2c208bc13..6cb9559691c 100644 --- a/Tests/UnitTests/Core/TrackFinding/CombinatorialKalmanFilterTests.cpp +++ b/Tests/UnitTests/Core/TrackFinding/CombinatorialKalmanFilterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFinding/TrackSelectorTests.cpp b/Tests/UnitTests/Core/TrackFinding/TrackSelectorTests.cpp index 01de2790874..f149010aef8 100644 --- a/Tests/UnitTests/Core/TrackFinding/TrackSelectorTests.cpp +++ b/Tests/UnitTests/Core/TrackFinding/TrackSelectorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/TrackFitting/FitterTestsCommon.hpp b/Tests/UnitTests/Core/TrackFitting/FitterTestsCommon.hpp index 1b2500dc32a..4eb411751bb 100644 --- a/Tests/UnitTests/Core/TrackFitting/FitterTestsCommon.hpp +++ b/Tests/UnitTests/Core/TrackFitting/FitterTestsCommon.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/TrackFitting/GainMatrixSmootherTests.cpp b/Tests/UnitTests/Core/TrackFitting/GainMatrixSmootherTests.cpp index 47ad261b0e6..ec8845ade2e 100644 --- a/Tests/UnitTests/Core/TrackFitting/GainMatrixSmootherTests.cpp +++ b/Tests/UnitTests/Core/TrackFitting/GainMatrixSmootherTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFitting/GainMatrixUpdaterTests.cpp b/Tests/UnitTests/Core/TrackFitting/GainMatrixUpdaterTests.cpp index 3cebdd61325..6123b8ca81e 100644 --- a/Tests/UnitTests/Core/TrackFitting/GainMatrixUpdaterTests.cpp +++ b/Tests/UnitTests/Core/TrackFitting/GainMatrixUpdaterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFitting/GsfComponentMergingTests.cpp b/Tests/UnitTests/Core/TrackFitting/GsfComponentMergingTests.cpp index 39959dfa0de..49b8304928e 100644 --- a/Tests/UnitTests/Core/TrackFitting/GsfComponentMergingTests.cpp +++ b/Tests/UnitTests/Core/TrackFitting/GsfComponentMergingTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFitting/GsfMixtureReductionTests.cpp b/Tests/UnitTests/Core/TrackFitting/GsfMixtureReductionTests.cpp index 064874a1b75..3791f199d66 100644 --- a/Tests/UnitTests/Core/TrackFitting/GsfMixtureReductionTests.cpp +++ b/Tests/UnitTests/Core/TrackFitting/GsfMixtureReductionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFitting/GsfTests.cpp b/Tests/UnitTests/Core/TrackFitting/GsfTests.cpp index 47f6539a36c..59c1cc72867 100644 --- a/Tests/UnitTests/Core/TrackFitting/GsfTests.cpp +++ b/Tests/UnitTests/Core/TrackFitting/GsfTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFitting/Gx2fTests.cpp b/Tests/UnitTests/Core/TrackFitting/Gx2fTests.cpp index 8098a359c20..7ef5373f41b 100644 --- a/Tests/UnitTests/Core/TrackFitting/Gx2fTests.cpp +++ b/Tests/UnitTests/Core/TrackFitting/Gx2fTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFitting/KalmanFitterTests.cpp b/Tests/UnitTests/Core/TrackFitting/KalmanFitterTests.cpp index 34811d7b6e8..80a40f8eaba 100644 --- a/Tests/UnitTests/Core/TrackFitting/KalmanFitterTests.cpp +++ b/Tests/UnitTests/Core/TrackFitting/KalmanFitterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/TrackFitting/MbfSmootherTests.cpp b/Tests/UnitTests/Core/TrackFitting/MbfSmootherTests.cpp index 0de58b88305..ab720dba11b 100644 --- a/Tests/UnitTests/Core/TrackFitting/MbfSmootherTests.cpp +++ b/Tests/UnitTests/Core/TrackFitting/MbfSmootherTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/AlgebraHelpersTests.cpp b/Tests/UnitTests/Core/Utilities/AlgebraHelpersTests.cpp index c195be14f84..86165ddb2ba 100644 --- a/Tests/UnitTests/Core/Utilities/AlgebraHelpersTests.cpp +++ b/Tests/UnitTests/Core/Utilities/AlgebraHelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/AnnealingUtilityTests.cpp b/Tests/UnitTests/Core/Utilities/AnnealingUtilityTests.cpp index 175420491c1..f8d5e53610d 100644 --- a/Tests/UnitTests/Core/Utilities/AnnealingUtilityTests.cpp +++ b/Tests/UnitTests/Core/Utilities/AnnealingUtilityTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/AnyTests.cpp b/Tests/UnitTests/Core/Utilities/AnyTests.cpp index 5e680389ce1..7389218e54a 100644 --- a/Tests/UnitTests/Core/Utilities/AnyTests.cpp +++ b/Tests/UnitTests/Core/Utilities/AnyTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/AxesTests.cpp b/Tests/UnitTests/Core/Utilities/AxesTests.cpp index 6ec592746d4..5c849e777ba 100644 --- a/Tests/UnitTests/Core/Utilities/AxesTests.cpp +++ b/Tests/UnitTests/Core/Utilities/AxesTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/BFieldMapUtilsTests.cpp b/Tests/UnitTests/Core/Utilities/BFieldMapUtilsTests.cpp index b98fc10b433..5dd21ff38de 100644 --- a/Tests/UnitTests/Core/Utilities/BFieldMapUtilsTests.cpp +++ b/Tests/UnitTests/Core/Utilities/BFieldMapUtilsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Utilities/BinAdjustmentTests.cpp b/Tests/UnitTests/Core/Utilities/BinAdjustmentTests.cpp index ff21fc6659d..6b755ddd386 100644 --- a/Tests/UnitTests/Core/Utilities/BinAdjustmentTests.cpp +++ b/Tests/UnitTests/Core/Utilities/BinAdjustmentTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/BinAdjustmentVolumeTests.cpp b/Tests/UnitTests/Core/Utilities/BinAdjustmentVolumeTests.cpp index eab989e5e0a..202f9be263d 100644 --- a/Tests/UnitTests/Core/Utilities/BinAdjustmentVolumeTests.cpp +++ b/Tests/UnitTests/Core/Utilities/BinAdjustmentVolumeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/BinUtilityTests.cpp b/Tests/UnitTests/Core/Utilities/BinUtilityTests.cpp index 83b2cfc796b..e861a2331b7 100644 --- a/Tests/UnitTests/Core/Utilities/BinUtilityTests.cpp +++ b/Tests/UnitTests/Core/Utilities/BinUtilityTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/BinningDataTests.cpp b/Tests/UnitTests/Core/Utilities/BinningDataTests.cpp index a7effbe4200..d2585905589 100644 --- a/Tests/UnitTests/Core/Utilities/BinningDataTests.cpp +++ b/Tests/UnitTests/Core/Utilities/BinningDataTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/BoundingBoxTest.cpp b/Tests/UnitTests/Core/Utilities/BoundingBoxTest.cpp index 93d6ae5766e..5541e3e8d36 100644 --- a/Tests/UnitTests/Core/Utilities/BoundingBoxTest.cpp +++ b/Tests/UnitTests/Core/Utilities/BoundingBoxTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/DBScanTests.cpp b/Tests/UnitTests/Core/Utilities/DBScanTests.cpp index efd502a464a..23ab2cd10ef 100644 --- a/Tests/UnitTests/Core/Utilities/DBScanTests.cpp +++ b/Tests/UnitTests/Core/Utilities/DBScanTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/DelegateTests.cpp b/Tests/UnitTests/Core/Utilities/DelegateTests.cpp index 1a9273871e4..c2d575b58fe 100644 --- a/Tests/UnitTests/Core/Utilities/DelegateTests.cpp +++ b/Tests/UnitTests/Core/Utilities/DelegateTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/ExtendableTests.cpp b/Tests/UnitTests/Core/Utilities/ExtendableTests.cpp index 94196975a2d..5878ebf220a 100644 --- a/Tests/UnitTests/Core/Utilities/ExtendableTests.cpp +++ b/Tests/UnitTests/Core/Utilities/ExtendableTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/FiniteStateMachineTests.cpp b/Tests/UnitTests/Core/Utilities/FiniteStateMachineTests.cpp index e633c2db5a1..d18df743bc0 100644 --- a/Tests/UnitTests/Core/Utilities/FiniteStateMachineTests.cpp +++ b/Tests/UnitTests/Core/Utilities/FiniteStateMachineTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/FrustumTest.cpp b/Tests/UnitTests/Core/Utilities/FrustumTest.cpp index f80c961c5cc..7b7221abfa0 100644 --- a/Tests/UnitTests/Core/Utilities/FrustumTest.cpp +++ b/Tests/UnitTests/Core/Utilities/FrustumTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Utilities/GraphVizTests.cpp b/Tests/UnitTests/Core/Utilities/GraphVizTests.cpp index fd80f4d52b1..4f9a16dd778 100644 --- a/Tests/UnitTests/Core/Utilities/GraphVizTests.cpp +++ b/Tests/UnitTests/Core/Utilities/GraphVizTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Utilities/GridAccessHelpersTests.cpp b/Tests/UnitTests/Core/Utilities/GridAccessHelpersTests.cpp index a69298fe222..09977099857 100644 --- a/Tests/UnitTests/Core/Utilities/GridAccessHelpersTests.cpp +++ b/Tests/UnitTests/Core/Utilities/GridAccessHelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/GridAxisGeneratorsTests.cpp b/Tests/UnitTests/Core/Utilities/GridAxisGeneratorsTests.cpp index 8553ea049c6..a7f3eefdeba 100644 --- a/Tests/UnitTests/Core/Utilities/GridAxisGeneratorsTests.cpp +++ b/Tests/UnitTests/Core/Utilities/GridAxisGeneratorsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/GridBinFinderTests.cpp b/Tests/UnitTests/Core/Utilities/GridBinFinderTests.cpp index 7841c97d9f0..3f4190a95bc 100644 --- a/Tests/UnitTests/Core/Utilities/GridBinFinderTests.cpp +++ b/Tests/UnitTests/Core/Utilities/GridBinFinderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/GridIterationTests.cpp b/Tests/UnitTests/Core/Utilities/GridIterationTests.cpp index fd67a2f03b3..82a92a4be4a 100644 --- a/Tests/UnitTests/Core/Utilities/GridIterationTests.cpp +++ b/Tests/UnitTests/Core/Utilities/GridIterationTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/GridTests.cpp b/Tests/UnitTests/Core/Utilities/GridTests.cpp index 8d626f74695..eceec2e6468 100644 --- a/Tests/UnitTests/Core/Utilities/GridTests.cpp +++ b/Tests/UnitTests/Core/Utilities/GridTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/HashedStringTests.cpp b/Tests/UnitTests/Core/Utilities/HashedStringTests.cpp index d2570aa4068..f38a71cbe89 100644 --- a/Tests/UnitTests/Core/Utilities/HashedStringTests.cpp +++ b/Tests/UnitTests/Core/Utilities/HashedStringTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/HelpersTests.cpp b/Tests/UnitTests/Core/Utilities/HelpersTests.cpp index a92defd466c..68f173db492 100644 --- a/Tests/UnitTests/Core/Utilities/HelpersTests.cpp +++ b/Tests/UnitTests/Core/Utilities/HelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/InterpolationTests.cpp b/Tests/UnitTests/Core/Utilities/InterpolationTests.cpp index 3cf75be54e2..febcc5ceed1 100644 --- a/Tests/UnitTests/Core/Utilities/InterpolationTests.cpp +++ b/Tests/UnitTests/Core/Utilities/InterpolationTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/IntersectionTests.cpp b/Tests/UnitTests/Core/Utilities/IntersectionTests.cpp index 185b3457e43..41581b08b8d 100644 --- a/Tests/UnitTests/Core/Utilities/IntersectionTests.cpp +++ b/Tests/UnitTests/Core/Utilities/IntersectionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/KDTreeTests.cpp b/Tests/UnitTests/Core/Utilities/KDTreeTests.cpp index d1fd310d1c5..b1a70c399c7 100644 --- a/Tests/UnitTests/Core/Utilities/KDTreeTests.cpp +++ b/Tests/UnitTests/Core/Utilities/KDTreeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/LoggerTests.cpp b/Tests/UnitTests/Core/Utilities/LoggerTests.cpp index cd80456da4d..9136a8f26a6 100644 --- a/Tests/UnitTests/Core/Utilities/LoggerTests.cpp +++ b/Tests/UnitTests/Core/Utilities/LoggerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/MaterialMapUtilsTests.cpp b/Tests/UnitTests/Core/Utilities/MaterialMapUtilsTests.cpp index 7d7aef745cc..8f02a12ba68 100644 --- a/Tests/UnitTests/Core/Utilities/MaterialMapUtilsTests.cpp +++ b/Tests/UnitTests/Core/Utilities/MaterialMapUtilsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/MultiIndexTests.cpp b/Tests/UnitTests/Core/Utilities/MultiIndexTests.cpp index feb1e677e32..b52737e22b8 100644 --- a/Tests/UnitTests/Core/Utilities/MultiIndexTests.cpp +++ b/Tests/UnitTests/Core/Utilities/MultiIndexTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/ParticleDataTests.cpp b/Tests/UnitTests/Core/Utilities/ParticleDataTests.cpp index aa89d78a019..41021ba3ca3 100644 --- a/Tests/UnitTests/Core/Utilities/ParticleDataTests.cpp +++ b/Tests/UnitTests/Core/Utilities/ParticleDataTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/PeriodicTests.cpp b/Tests/UnitTests/Core/Utilities/PeriodicTests.cpp index c2e237cee23..da575ce2a83 100644 --- a/Tests/UnitTests/Core/Utilities/PeriodicTests.cpp +++ b/Tests/UnitTests/Core/Utilities/PeriodicTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Utilities/QuickMathTests.cpp b/Tests/UnitTests/Core/Utilities/QuickMathTests.cpp index a463de371da..6952ea78b14 100644 --- a/Tests/UnitTests/Core/Utilities/QuickMathTests.cpp +++ b/Tests/UnitTests/Core/Utilities/QuickMathTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Utilities/Range1DTests.cpp b/Tests/UnitTests/Core/Utilities/Range1DTests.cpp index ba08a639bdf..0788f59e7d3 100644 --- a/Tests/UnitTests/Core/Utilities/Range1DTests.cpp +++ b/Tests/UnitTests/Core/Utilities/Range1DTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/RangeXDTests.cpp b/Tests/UnitTests/Core/Utilities/RangeXDTests.cpp index 3e2ac063c99..bfeafff927b 100644 --- a/Tests/UnitTests/Core/Utilities/RangeXDTests.cpp +++ b/Tests/UnitTests/Core/Utilities/RangeXDTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/RayTest.cpp b/Tests/UnitTests/Core/Utilities/RayTest.cpp index db8b20cbb41..47f5e130049 100644 --- a/Tests/UnitTests/Core/Utilities/RayTest.cpp +++ b/Tests/UnitTests/Core/Utilities/RayTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Utilities/RealQuadraticEquationTests.cpp b/Tests/UnitTests/Core/Utilities/RealQuadraticEquationTests.cpp index d2d509a6c77..cc9a7996f83 100644 --- a/Tests/UnitTests/Core/Utilities/RealQuadraticEquationTests.cpp +++ b/Tests/UnitTests/Core/Utilities/RealQuadraticEquationTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2017-2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/ResultTests.cpp b/Tests/UnitTests/Core/Utilities/ResultTests.cpp index 519625d0785..0a873f16d4c 100644 --- a/Tests/UnitTests/Core/Utilities/ResultTests.cpp +++ b/Tests/UnitTests/Core/Utilities/ResultTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/SubspaceTests.cpp b/Tests/UnitTests/Core/Utilities/SubspaceTests.cpp index d61c46a3d69..1d3c615ce5b 100644 --- a/Tests/UnitTests/Core/Utilities/SubspaceTests.cpp +++ b/Tests/UnitTests/Core/Utilities/SubspaceTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/TrackHelpersTests.cpp b/Tests/UnitTests/Core/Utilities/TrackHelpersTests.cpp index ba6580b05f8..7fc0d20c991 100644 --- a/Tests/UnitTests/Core/Utilities/TrackHelpersTests.cpp +++ b/Tests/UnitTests/Core/Utilities/TrackHelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/TransformRangeTests.cpp b/Tests/UnitTests/Core/Utilities/TransformRangeTests.cpp index 99e80b369f6..d7ce6b56877 100644 --- a/Tests/UnitTests/Core/Utilities/TransformRangeTests.cpp +++ b/Tests/UnitTests/Core/Utilities/TransformRangeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/TypeListTests.cpp b/Tests/UnitTests/Core/Utilities/TypeListTests.cpp index d41d8bd48ea..df80e51ee85 100644 --- a/Tests/UnitTests/Core/Utilities/TypeListTests.cpp +++ b/Tests/UnitTests/Core/Utilities/TypeListTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/UnitVectorsTests.cpp b/Tests/UnitTests/Core/Utilities/UnitVectorsTests.cpp index ac52e3654ea..7fc467d1971 100644 --- a/Tests/UnitTests/Core/Utilities/UnitVectorsTests.cpp +++ b/Tests/UnitTests/Core/Utilities/UnitVectorsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Utilities/ZipTests.cpp b/Tests/UnitTests/Core/Utilities/ZipTests.cpp index c7c686d3d97..d0025f46c01 100644 --- a/Tests/UnitTests/Core/Utilities/ZipTests.cpp +++ b/Tests/UnitTests/Core/Utilities/ZipTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/VersionTests.cpp b/Tests/UnitTests/Core/VersionTests.cpp index 1f9a811836b..870a1a78947 100644 --- a/Tests/UnitTests/Core/VersionTests.cpp +++ b/Tests/UnitTests/Core/VersionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // the purpose of these tests is to ensure that the version header is valid and // the exported parameters are accessible. otherwise, there would is no code diff --git a/Tests/UnitTests/Core/Vertexing/AdaptiveGridTrackDensityTests.cpp b/Tests/UnitTests/Core/Vertexing/AdaptiveGridTrackDensityTests.cpp index 924e3a76034..89d5385c125 100644 --- a/Tests/UnitTests/Core/Vertexing/AdaptiveGridTrackDensityTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/AdaptiveGridTrackDensityTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/AdaptiveMultiVertexFinderTests.cpp b/Tests/UnitTests/Core/Vertexing/AdaptiveMultiVertexFinderTests.cpp index 9723e6f4540..bbb5caa7111 100644 --- a/Tests/UnitTests/Core/Vertexing/AdaptiveMultiVertexFinderTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/AdaptiveMultiVertexFinderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/AdaptiveMultiVertexFitterTests.cpp b/Tests/UnitTests/Core/Vertexing/AdaptiveMultiVertexFitterTests.cpp index 7cb531d2e1f..15a815eb8f5 100644 --- a/Tests/UnitTests/Core/Vertexing/AdaptiveMultiVertexFitterTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/AdaptiveMultiVertexFitterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/FullBilloirVertexFitterTests.cpp b/Tests/UnitTests/Core/Vertexing/FullBilloirVertexFitterTests.cpp index 85f1274fe43..805081eab79 100644 --- a/Tests/UnitTests/Core/Vertexing/FullBilloirVertexFitterTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/FullBilloirVertexFitterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/GaussianGridTrackDensityTests.cpp b/Tests/UnitTests/Core/Vertexing/GaussianGridTrackDensityTests.cpp index 9de0daf696a..b9d63709569 100644 --- a/Tests/UnitTests/Core/Vertexing/GaussianGridTrackDensityTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/GaussianGridTrackDensityTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/GridDensityVertexFinderTests.cpp b/Tests/UnitTests/Core/Vertexing/GridDensityVertexFinderTests.cpp index 728c07cc53c..8775fe1a76f 100644 --- a/Tests/UnitTests/Core/Vertexing/GridDensityVertexFinderTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/GridDensityVertexFinderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/ImpactPointEstimatorTests.cpp b/Tests/UnitTests/Core/Vertexing/ImpactPointEstimatorTests.cpp index 321aa852da7..c9743e90d7f 100644 --- a/Tests/UnitTests/Core/Vertexing/ImpactPointEstimatorTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/ImpactPointEstimatorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Vertexing/IterativeVertexFinderTests.cpp b/Tests/UnitTests/Core/Vertexing/IterativeVertexFinderTests.cpp index 2cc09ab415c..9e35453759e 100644 --- a/Tests/UnitTests/Core/Vertexing/IterativeVertexFinderTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/IterativeVertexFinderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/KalmanVertexUpdaterTests.cpp b/Tests/UnitTests/Core/Vertexing/KalmanVertexUpdaterTests.cpp index e40d94c1c1c..de89859bc51 100644 --- a/Tests/UnitTests/Core/Vertexing/KalmanVertexUpdaterTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/KalmanVertexUpdaterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/LinearizedTrackFactoryTests.cpp b/Tests/UnitTests/Core/Vertexing/LinearizedTrackFactoryTests.cpp index f7fe759735d..99b0d6c03ac 100644 --- a/Tests/UnitTests/Core/Vertexing/LinearizedTrackFactoryTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/LinearizedTrackFactoryTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/SingleSeedVertexFinderTests.cpp b/Tests/UnitTests/Core/Vertexing/SingleSeedVertexFinderTests.cpp index c5be1d6bbf8..95ba93c0efb 100644 --- a/Tests/UnitTests/Core/Vertexing/SingleSeedVertexFinderTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/SingleSeedVertexFinderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/TrackDensityVertexFinderTests.cpp b/Tests/UnitTests/Core/Vertexing/TrackDensityVertexFinderTests.cpp index 5faeaae57c9..b45943217b7 100644 --- a/Tests/UnitTests/Core/Vertexing/TrackDensityVertexFinderTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/TrackDensityVertexFinderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Vertexing/VertexingDataHelper.hpp b/Tests/UnitTests/Core/Vertexing/VertexingDataHelper.hpp index de0963c14bd..d984b4c8c44 100644 --- a/Tests/UnitTests/Core/Vertexing/VertexingDataHelper.hpp +++ b/Tests/UnitTests/Core/Vertexing/VertexingDataHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once #include "Acts/Definitions/Algebra.hpp" diff --git a/Tests/UnitTests/Core/Vertexing/ZScanVertexFinderTests.cpp b/Tests/UnitTests/Core/Vertexing/ZScanVertexFinderTests.cpp index 411ddda7cf2..6fa0c81a928 100644 --- a/Tests/UnitTests/Core/Vertexing/ZScanVertexFinderTests.cpp +++ b/Tests/UnitTests/Core/Vertexing/ZScanVertexFinderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Visualization/EventDataView3DBase.hpp b/Tests/UnitTests/Core/Visualization/EventDataView3DBase.hpp index bd07457cc52..57b33ba1d5c 100644 --- a/Tests/UnitTests/Core/Visualization/EventDataView3DBase.hpp +++ b/Tests/UnitTests/Core/Visualization/EventDataView3DBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Visualization/EventDataView3DTests.cpp b/Tests/UnitTests/Core/Visualization/EventDataView3DTests.cpp index e6f3821e40a..36f823a02b6 100644 --- a/Tests/UnitTests/Core/Visualization/EventDataView3DTests.cpp +++ b/Tests/UnitTests/Core/Visualization/EventDataView3DTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Visualization/PrimitivesView3DBase.hpp b/Tests/UnitTests/Core/Visualization/PrimitivesView3DBase.hpp index 4c64929061a..4884756cbac 100644 --- a/Tests/UnitTests/Core/Visualization/PrimitivesView3DBase.hpp +++ b/Tests/UnitTests/Core/Visualization/PrimitivesView3DBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Visualization/PrimitivesView3DTests.cpp b/Tests/UnitTests/Core/Visualization/PrimitivesView3DTests.cpp index 26e90cc7b10..37b0abbee82 100644 --- a/Tests/UnitTests/Core/Visualization/PrimitivesView3DTests.cpp +++ b/Tests/UnitTests/Core/Visualization/PrimitivesView3DTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Visualization/SurfaceView3DBase.hpp b/Tests/UnitTests/Core/Visualization/SurfaceView3DBase.hpp index 8de0a7fda5a..be83a27cb7b 100644 --- a/Tests/UnitTests/Core/Visualization/SurfaceView3DBase.hpp +++ b/Tests/UnitTests/Core/Visualization/SurfaceView3DBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Visualization/SurfaceView3DTests.cpp b/Tests/UnitTests/Core/Visualization/SurfaceView3DTests.cpp index f40a2f5cbae..5dce4060e22 100644 --- a/Tests/UnitTests/Core/Visualization/SurfaceView3DTests.cpp +++ b/Tests/UnitTests/Core/Visualization/SurfaceView3DTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Visualization/TrackingGeometryView3DBase.hpp b/Tests/UnitTests/Core/Visualization/TrackingGeometryView3DBase.hpp index ccf5f267212..b2fb89c0ee8 100644 --- a/Tests/UnitTests/Core/Visualization/TrackingGeometryView3DBase.hpp +++ b/Tests/UnitTests/Core/Visualization/TrackingGeometryView3DBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Visualization/TrackingGeometryView3DTests.cpp b/Tests/UnitTests/Core/Visualization/TrackingGeometryView3DTests.cpp index 54faa2c8e22..8936375a353 100644 --- a/Tests/UnitTests/Core/Visualization/TrackingGeometryView3DTests.cpp +++ b/Tests/UnitTests/Core/Visualization/TrackingGeometryView3DTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Core/Visualization/Visualization3DTester.hpp b/Tests/UnitTests/Core/Visualization/Visualization3DTester.hpp index 0aaa97beb3e..78f0c21e38d 100644 --- a/Tests/UnitTests/Core/Visualization/Visualization3DTester.hpp +++ b/Tests/UnitTests/Core/Visualization/Visualization3DTester.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Visualization/Visualization3DTests.cpp b/Tests/UnitTests/Core/Visualization/Visualization3DTests.cpp index e8ae4a82c46..58958bbbe6c 100644 --- a/Tests/UnitTests/Core/Visualization/Visualization3DTests.cpp +++ b/Tests/UnitTests/Core/Visualization/Visualization3DTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Core/Visualization/VolumeView3DBase.hpp b/Tests/UnitTests/Core/Visualization/VolumeView3DBase.hpp index 00745012f74..a485086bd5e 100644 --- a/Tests/UnitTests/Core/Visualization/VolumeView3DBase.hpp +++ b/Tests/UnitTests/Core/Visualization/VolumeView3DBase.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Core/Visualization/VolumeView3DTests.cpp b/Tests/UnitTests/Core/Visualization/VolumeView3DTests.cpp index dac1b41c539..337b8e9e5dd 100644 --- a/Tests/UnitTests/Core/Visualization/VolumeView3DTests.cpp +++ b/Tests/UnitTests/Core/Visualization/VolumeView3DTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Examples/Algorithms/Alignment/AlignmentGroupingTests.cpp b/Tests/UnitTests/Examples/Algorithms/Alignment/AlignmentGroupingTests.cpp index 3c68dc94bf8..18d589be1d5 100644 --- a/Tests/UnitTests/Examples/Algorithms/Alignment/AlignmentGroupingTests.cpp +++ b/Tests/UnitTests/Examples/Algorithms/Alignment/AlignmentGroupingTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Examples/Algorithms/Digitization/ModuleClustersTests.cpp b/Tests/UnitTests/Examples/Algorithms/Digitization/ModuleClustersTests.cpp index 5a72c5c8e41..a1947cde17e 100644 --- a/Tests/UnitTests/Examples/Algorithms/Digitization/ModuleClustersTests.cpp +++ b/Tests/UnitTests/Examples/Algorithms/Digitization/ModuleClustersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Examples/EventData/MeasurementTests.cpp b/Tests/UnitTests/Examples/EventData/MeasurementTests.cpp index 0187c27eb92..fc3d33d801f 100644 --- a/Tests/UnitTests/Examples/EventData/MeasurementTests.cpp +++ b/Tests/UnitTests/Examples/EventData/MeasurementTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2016-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Examples/Io/Csv/MeasurementReaderWriterTests.cpp b/Tests/UnitTests/Examples/Io/Csv/MeasurementReaderWriterTests.cpp index 7fa64dcb128..1a3d9662a2a 100644 --- a/Tests/UnitTests/Examples/Io/Csv/MeasurementReaderWriterTests.cpp +++ b/Tests/UnitTests/Examples/Io/Csv/MeasurementReaderWriterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Examples/Io/Json/JsonDigitizationConfigTests.cpp b/Tests/UnitTests/Examples/Io/Json/JsonDigitizationConfigTests.cpp index a5b29cb257b..ab30e2a98f0 100644 --- a/Tests/UnitTests/Examples/Io/Json/JsonDigitizationConfigTests.cpp +++ b/Tests/UnitTests/Examples/Io/Json/JsonDigitizationConfigTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Examples/Io/Root/SimhitReaderWriterTests.cpp b/Tests/UnitTests/Examples/Io/Root/SimhitReaderWriterTests.cpp index 1391826a9fb..f36fcc3a9ee 100644 --- a/Tests/UnitTests/Examples/Io/Root/SimhitReaderWriterTests.cpp +++ b/Tests/UnitTests/Examples/Io/Root/SimhitReaderWriterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Digitization/BoundRandomValues.hpp b/Tests/UnitTests/Fatras/Digitization/BoundRandomValues.hpp index 4c86694bcae..5e4566efe8d 100644 --- a/Tests/UnitTests/Fatras/Digitization/BoundRandomValues.hpp +++ b/Tests/UnitTests/Fatras/Digitization/BoundRandomValues.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Fatras/Digitization/ChannelMergerTests.cpp b/Tests/UnitTests/Fatras/Digitization/ChannelMergerTests.cpp index d26b6d551cd..126fd2d7cfb 100644 --- a/Tests/UnitTests/Fatras/Digitization/ChannelMergerTests.cpp +++ b/Tests/UnitTests/Fatras/Digitization/ChannelMergerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Digitization/ChannelizerTests.cpp b/Tests/UnitTests/Fatras/Digitization/ChannelizerTests.cpp index a498f0f5f75..b1d142cc545 100644 --- a/Tests/UnitTests/Fatras/Digitization/ChannelizerTests.cpp +++ b/Tests/UnitTests/Fatras/Digitization/ChannelizerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Digitization/DigitizationCsvOutput.hpp b/Tests/UnitTests/Fatras/Digitization/DigitizationCsvOutput.hpp index e44f4cfb6f4..4aa039b13fc 100644 --- a/Tests/UnitTests/Fatras/Digitization/DigitizationCsvOutput.hpp +++ b/Tests/UnitTests/Fatras/Digitization/DigitizationCsvOutput.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceDriftTests.cpp b/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceDriftTests.cpp index 171564af1b9..c574d146fea 100644 --- a/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceDriftTests.cpp +++ b/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceDriftTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceMaskTests.cpp b/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceMaskTests.cpp index bbf5d4bf72b..f389b50237b 100644 --- a/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceMaskTests.cpp +++ b/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceMaskTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceTestBeds.hpp b/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceTestBeds.hpp index 14fd079c56a..467d2b9952e 100644 --- a/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceTestBeds.hpp +++ b/Tests/UnitTests/Fatras/Digitization/PlanarSurfaceTestBeds.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Fatras/Digitization/SegmentizerTests.cpp b/Tests/UnitTests/Fatras/Digitization/SegmentizerTests.cpp index 4680d39f974..844122027d2 100644 --- a/Tests/UnitTests/Fatras/Digitization/SegmentizerTests.cpp +++ b/Tests/UnitTests/Fatras/Digitization/SegmentizerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Fatras/Digitization/UncorrelatedHitSmearerTests.cpp b/Tests/UnitTests/Fatras/Digitization/UncorrelatedHitSmearerTests.cpp index 127dc636090..e4fde7f3b2d 100644 --- a/Tests/UnitTests/Fatras/Digitization/UncorrelatedHitSmearerTests.cpp +++ b/Tests/UnitTests/Fatras/Digitization/UncorrelatedHitSmearerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Fatras/EventData/BarcodeTests.cpp b/Tests/UnitTests/Fatras/EventData/BarcodeTests.cpp index b79be50a894..99adfab7837 100644 --- a/Tests/UnitTests/Fatras/EventData/BarcodeTests.cpp +++ b/Tests/UnitTests/Fatras/EventData/BarcodeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/EventData/HitTests.cpp b/Tests/UnitTests/Fatras/EventData/HitTests.cpp index 579eada124c..765db8378a8 100644 --- a/Tests/UnitTests/Fatras/EventData/HitTests.cpp +++ b/Tests/UnitTests/Fatras/EventData/HitTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/EventData/ParticleTests.cpp b/Tests/UnitTests/Fatras/EventData/ParticleTests.cpp index 69167583984..a6858dacc74 100644 --- a/Tests/UnitTests/Fatras/EventData/ParticleTests.cpp +++ b/Tests/UnitTests/Fatras/EventData/ParticleTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Kernel/ContinuousProcessTests.cpp b/Tests/UnitTests/Fatras/Kernel/ContinuousProcessTests.cpp index e3b0190fde0..13430f11bcc 100644 --- a/Tests/UnitTests/Fatras/Kernel/ContinuousProcessTests.cpp +++ b/Tests/UnitTests/Fatras/Kernel/ContinuousProcessTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Kernel/InteractionListTests.cpp b/Tests/UnitTests/Fatras/Kernel/InteractionListTests.cpp index cad52b2a744..167025ad739 100644 --- a/Tests/UnitTests/Fatras/Kernel/InteractionListTests.cpp +++ b/Tests/UnitTests/Fatras/Kernel/InteractionListTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Kernel/SimulationActorTests.cpp b/Tests/UnitTests/Fatras/Kernel/SimulationActorTests.cpp index 5da82e92cd3..de87bf883c1 100644 --- a/Tests/UnitTests/Fatras/Kernel/SimulationActorTests.cpp +++ b/Tests/UnitTests/Fatras/Kernel/SimulationActorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Kernel/TupleIndexOfTests.cpp b/Tests/UnitTests/Fatras/Kernel/TupleIndexOfTests.cpp index baf49ab6bdf..a825c9169e8 100644 --- a/Tests/UnitTests/Fatras/Kernel/TupleIndexOfTests.cpp +++ b/Tests/UnitTests/Fatras/Kernel/TupleIndexOfTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Physics/BetheBlochTests.cpp b/Tests/UnitTests/Fatras/Physics/BetheBlochTests.cpp index 7210d0b226a..d6372874c18 100644 --- a/Tests/UnitTests/Fatras/Physics/BetheBlochTests.cpp +++ b/Tests/UnitTests/Fatras/Physics/BetheBlochTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Fatras/Physics/BetheHeitlerTests.cpp b/Tests/UnitTests/Fatras/Physics/BetheHeitlerTests.cpp index 60d306f7da8..340ce91146b 100644 --- a/Tests/UnitTests/Fatras/Physics/BetheHeitlerTests.cpp +++ b/Tests/UnitTests/Fatras/Physics/BetheHeitlerTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Fatras/Physics/Dataset.hpp b/Tests/UnitTests/Fatras/Physics/Dataset.hpp index e26484e3f3a..21447656130 100644 --- a/Tests/UnitTests/Fatras/Physics/Dataset.hpp +++ b/Tests/UnitTests/Fatras/Physics/Dataset.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Fatras/Physics/PhotonConversionTests.cpp b/Tests/UnitTests/Fatras/Physics/PhotonConversionTests.cpp index 00ca6248c7d..f5340ab4cc7 100644 --- a/Tests/UnitTests/Fatras/Physics/PhotonConversionTests.cpp +++ b/Tests/UnitTests/Fatras/Physics/PhotonConversionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Fatras/Physics/ScatteringTests.cpp b/Tests/UnitTests/Fatras/Physics/ScatteringTests.cpp index edad2c365c7..a68326ae1f7 100644 --- a/Tests/UnitTests/Fatras/Physics/ScatteringTests.cpp +++ b/Tests/UnitTests/Fatras/Physics/ScatteringTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Fatras/Selectors/Dataset.hpp b/Tests/UnitTests/Fatras/Selectors/Dataset.hpp index f782f8e919e..4bf423c1fc3 100644 --- a/Tests/UnitTests/Fatras/Selectors/Dataset.hpp +++ b/Tests/UnitTests/Fatras/Selectors/Dataset.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Fatras/Selectors/KinematicCastsTests.cpp b/Tests/UnitTests/Fatras/Selectors/KinematicCastsTests.cpp index 6266daad892..2483fc8e196 100644 --- a/Tests/UnitTests/Fatras/Selectors/KinematicCastsTests.cpp +++ b/Tests/UnitTests/Fatras/Selectors/KinematicCastsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Selectors/ParticleSelectorsTests.cpp b/Tests/UnitTests/Fatras/Selectors/ParticleSelectorsTests.cpp index dd48b345d59..f3478fd5c68 100644 --- a/Tests/UnitTests/Fatras/Selectors/ParticleSelectorsTests.cpp +++ b/Tests/UnitTests/Fatras/Selectors/ParticleSelectorsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Fatras/Selectors/SelectorHelpersTests.cpp b/Tests/UnitTests/Fatras/Selectors/SelectorHelpersTests.cpp index c27afac7e45..a4f4ecf4511 100644 --- a/Tests/UnitTests/Fatras/Selectors/SelectorHelpersTests.cpp +++ b/Tests/UnitTests/Fatras/Selectors/SelectorHelpersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ActSVG/DetectorSvgConverterTests.cpp b/Tests/UnitTests/Plugins/ActSVG/DetectorSvgConverterTests.cpp index b4080848402..15cf2f72540 100644 --- a/Tests/UnitTests/Plugins/ActSVG/DetectorSvgConverterTests.cpp +++ b/Tests/UnitTests/Plugins/ActSVG/DetectorSvgConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ActSVG/DetectorVolumeSvgConverterTests.cpp b/Tests/UnitTests/Plugins/ActSVG/DetectorVolumeSvgConverterTests.cpp index 7d6241e8f4e..0d7ee71c62a 100644 --- a/Tests/UnitTests/Plugins/ActSVG/DetectorVolumeSvgConverterTests.cpp +++ b/Tests/UnitTests/Plugins/ActSVG/DetectorVolumeSvgConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ActSVG/GridSvgConverterTests.cpp b/Tests/UnitTests/Plugins/ActSVG/GridSvgConverterTests.cpp index 01ee38ab44b..a0741ca8136 100644 --- a/Tests/UnitTests/Plugins/ActSVG/GridSvgConverterTests.cpp +++ b/Tests/UnitTests/Plugins/ActSVG/GridSvgConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ActSVG/IndexedSurfacesSvgConverterTests.cpp b/Tests/UnitTests/Plugins/ActSVG/IndexedSurfacesSvgConverterTests.cpp index 1f4bcebd77f..bc33298431a 100644 --- a/Tests/UnitTests/Plugins/ActSVG/IndexedSurfacesSvgConverterTests.cpp +++ b/Tests/UnitTests/Plugins/ActSVG/IndexedSurfacesSvgConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ActSVG/LayerSvgConverterTests.cpp b/Tests/UnitTests/Plugins/ActSVG/LayerSvgConverterTests.cpp index 38f4a49df56..7dd3a93fe95 100644 --- a/Tests/UnitTests/Plugins/ActSVG/LayerSvgConverterTests.cpp +++ b/Tests/UnitTests/Plugins/ActSVG/LayerSvgConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ActSVG/PortalSvgConverterTests.cpp b/Tests/UnitTests/Plugins/ActSVG/PortalSvgConverterTests.cpp index 9d73ebbc681..7f4cfa5d425 100644 --- a/Tests/UnitTests/Plugins/ActSVG/PortalSvgConverterTests.cpp +++ b/Tests/UnitTests/Plugins/ActSVG/PortalSvgConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ActSVG/SurfaceSvgConverterTests.cpp b/Tests/UnitTests/Plugins/ActSVG/SurfaceSvgConverterTests.cpp index 08c973230e1..49c92f3aaf9 100644 --- a/Tests/UnitTests/Plugins/ActSVG/SurfaceSvgConverterTests.cpp +++ b/Tests/UnitTests/Plugins/ActSVG/SurfaceSvgConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ActSVG/TrackingGeometrySvgConverterTests.cpp b/Tests/UnitTests/Plugins/ActSVG/TrackingGeometrySvgConverterTests.cpp index f984984846e..7c869e90de7 100644 --- a/Tests/UnitTests/Plugins/ActSVG/TrackingGeometrySvgConverterTests.cpp +++ b/Tests/UnitTests/Plugins/ActSVG/TrackingGeometrySvgConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Covfie/CovfieFieldConversionTest.cpp b/Tests/UnitTests/Plugins/Covfie/CovfieFieldConversionTest.cpp index 3bf85cccf22..2db6c78ae1b 100644 --- a/Tests/UnitTests/Plugins/Covfie/CovfieFieldConversionTest.cpp +++ b/Tests/UnitTests/Plugins/Covfie/CovfieFieldConversionTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Acts include(s) #include "Acts/Definitions/Units.hpp" diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding/ATLASCuts.hpp b/Tests/UnitTests/Plugins/Cuda/Seeding/ATLASCuts.hpp index b13421c14ca..27dec35c80f 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding/ATLASCuts.hpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding/ATLASCuts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding/SeedFinderCudaTest.cpp b/Tests/UnitTests/Plugins/Cuda/Seeding/SeedFinderCudaTest.cpp index d30ed0d398e..1b31f083fd8 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding/SeedFinderCudaTest.cpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding/SeedFinderCudaTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/Cuda/Seeding/SeedFinder.hpp" #include "Acts/Seeding/BinnedGroup.hpp" diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding/SpacePoint.hpp b/Tests/UnitTests/Plugins/Cuda/Seeding/SpacePoint.hpp index baaeb3754b7..765de8e7973 100755 --- a/Tests/UnitTests/Plugins/Cuda/Seeding/SpacePoint.hpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding/SpacePoint.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/CommandLineArguments.cpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/CommandLineArguments.cpp index 16ee26f60dc..14413db10db 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/CommandLineArguments.cpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/CommandLineArguments.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Local include(s). #include "CommandLineArguments.hpp" diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/CommandLineArguments.hpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/CommandLineArguments.hpp index 6050daf6486..a33ccf4330a 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/CommandLineArguments.hpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/CommandLineArguments.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/ReadSeedFile.cpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/ReadSeedFile.cpp index 0de5b7385fe..5bd1c8c8830 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/ReadSeedFile.cpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/ReadSeedFile.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Local include(s). #include "ReadSeedFile.hpp" diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/ReadSeedFile.hpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/ReadSeedFile.hpp index c76d6c682c1..50e335e6c0a 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/ReadSeedFile.hpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/ReadSeedFile.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestDeviceCuts.cu b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestDeviceCuts.cu index 97befe31688..30a3595a129 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestDeviceCuts.cu +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestDeviceCuts.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Local include(s). #include "TestDeviceCuts.hpp" diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestDeviceCuts.hpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestDeviceCuts.hpp index d356ecf5358..5577be26275 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestDeviceCuts.hpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestDeviceCuts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestHostCuts.cpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestHostCuts.cpp index 6f8a6dd2b4d..51411f59b42 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestHostCuts.cpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestHostCuts.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Local include(s). #include "TestHostCuts.hpp" diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestHostCuts.hpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestHostCuts.hpp index 7b26dd0dd5a..4dc96e10767 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestHostCuts.hpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestHostCuts.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestSpacePoint.cpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestSpacePoint.cpp index e94d00d6a82..212db6a0005 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestSpacePoint.cpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestSpacePoint.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Local include(s). #include "TestSpacePoint.hpp" diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestSpacePoint.hpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestSpacePoint.hpp index 329a3d65215..ee9e7b0e826 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/TestSpacePoint.hpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/TestSpacePoint.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Cuda/Seeding2/main.cpp b/Tests/UnitTests/Plugins/Cuda/Seeding2/main.cpp index ba927acde5c..b63d549e37f 100644 --- a/Tests/UnitTests/Plugins/Cuda/Seeding2/main.cpp +++ b/Tests/UnitTests/Plugins/Cuda/Seeding2/main.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Local include(s). #include "CommandLineArguments.hpp" diff --git a/Tests/UnitTests/Plugins/Cuda/Utilities/CudaMostSimplifiedTests.cu b/Tests/UnitTests/Plugins/Cuda/Utilities/CudaMostSimplifiedTests.cu index 238b4b48cc3..a457ec873ba 100644 --- a/Tests/UnitTests/Plugins/Cuda/Utilities/CudaMostSimplifiedTests.cu +++ b/Tests/UnitTests/Plugins/Cuda/Utilities/CudaMostSimplifiedTests.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Cuda/Utilities/CudaTests.cu b/Tests/UnitTests/Plugins/Cuda/Utilities/CudaTests.cu index 54b199ac494..b736bc11de6 100644 --- a/Tests/UnitTests/Plugins/Cuda/Utilities/CudaTests.cu +++ b/Tests/UnitTests/Plugins/Cuda/Utilities/CudaTests.cu @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/DD4hep/DD4hepCylinderLayerStructureTests.cpp b/Tests/UnitTests/Plugins/DD4hep/DD4hepCylinderLayerStructureTests.cpp index cf1550a5886..994ac8bb927 100644 --- a/Tests/UnitTests/Plugins/DD4hep/DD4hepCylinderLayerStructureTests.cpp +++ b/Tests/UnitTests/Plugins/DD4hep/DD4hepCylinderLayerStructureTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/DD4hep/DD4hepCylindricalDetectorTests.cpp b/Tests/UnitTests/Plugins/DD4hep/DD4hepCylindricalDetectorTests.cpp index 5620ca8d585..4a6925a2633 100644 --- a/Tests/UnitTests/Plugins/DD4hep/DD4hepCylindricalDetectorTests.cpp +++ b/Tests/UnitTests/Plugins/DD4hep/DD4hepCylindricalDetectorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/DD4hep/DD4hepDetectorElementTests.cpp b/Tests/UnitTests/Plugins/DD4hep/DD4hepDetectorElementTests.cpp index 9f4b44e51f1..104c10b5ad4 100644 --- a/Tests/UnitTests/Plugins/DD4hep/DD4hepDetectorElementTests.cpp +++ b/Tests/UnitTests/Plugins/DD4hep/DD4hepDetectorElementTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/DD4hep/DD4hepDiscLayerStructureTests.cpp b/Tests/UnitTests/Plugins/DD4hep/DD4hepDiscLayerStructureTests.cpp index 504691d496f..40ad97f1ebf 100644 --- a/Tests/UnitTests/Plugins/DD4hep/DD4hepDiscLayerStructureTests.cpp +++ b/Tests/UnitTests/Plugins/DD4hep/DD4hepDiscLayerStructureTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/DD4hep/DD4hepTestsHelper.cpp b/Tests/UnitTests/Plugins/DD4hep/DD4hepTestsHelper.cpp index 8077382eff8..44286f0ace4 100644 --- a/Tests/UnitTests/Plugins/DD4hep/DD4hepTestsHelper.cpp +++ b/Tests/UnitTests/Plugins/DD4hep/DD4hepTestsHelper.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "DD4hepTestsHelper.hpp" diff --git a/Tests/UnitTests/Plugins/DD4hep/DD4hepTestsHelper.hpp b/Tests/UnitTests/Plugins/DD4hep/DD4hepTestsHelper.hpp index 52dd1cde058..12be9136046 100644 --- a/Tests/UnitTests/Plugins/DD4hep/DD4hepTestsHelper.hpp +++ b/Tests/UnitTests/Plugins/DD4hep/DD4hepTestsHelper.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/DD4hep/LayerFactory.cpp b/Tests/UnitTests/Plugins/DD4hep/LayerFactory.cpp index 8c14a59bdb9..f079686d33b 100644 --- a/Tests/UnitTests/Plugins/DD4hep/LayerFactory.cpp +++ b/Tests/UnitTests/Plugins/DD4hep/LayerFactory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Geometry/VolumeBounds.hpp" #include "Acts/Plugins/DD4hep/DD4hepBinningHelpers.hpp" diff --git a/Tests/UnitTests/Plugins/DD4hep/PrimitivesFactory.cpp b/Tests/UnitTests/Plugins/DD4hep/PrimitivesFactory.cpp index 44eaee325dc..52539c058af 100644 --- a/Tests/UnitTests/Plugins/DD4hep/PrimitivesFactory.cpp +++ b/Tests/UnitTests/Plugins/DD4hep/PrimitivesFactory.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include "Acts/Plugins/DD4hep/DD4hepConversionHelpers.hpp" diff --git a/Tests/UnitTests/Plugins/DD4hep/XMLFragments.hpp b/Tests/UnitTests/Plugins/DD4hep/XMLFragments.hpp index 32ebd8740b1..4eee687f3a5 100644 --- a/Tests/UnitTests/Plugins/DD4hep/XMLFragments.hpp +++ b/Tests/UnitTests/Plugins/DD4hep/XMLFragments.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Detray/DetrayConverterTests.cpp b/Tests/UnitTests/Plugins/Detray/DetrayConverterTests.cpp index 2e6377f2cdc..15e2dbc3b31 100644 --- a/Tests/UnitTests/Plugins/Detray/DetrayConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Detray/DetrayConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Detray/DetrayGeometryConverterTests.cpp b/Tests/UnitTests/Plugins/Detray/DetrayGeometryConverterTests.cpp index 41e283ccc49..97c1c7dff13 100644 --- a/Tests/UnitTests/Plugins/Detray/DetrayGeometryConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Detray/DetrayGeometryConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Detray/DetrayMaterialConverterTests.cpp b/Tests/UnitTests/Plugins/Detray/DetrayMaterialConverterTests.cpp index 702d7a25001..56507b6c322 100644 --- a/Tests/UnitTests/Plugins/Detray/DetrayMaterialConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Detray/DetrayMaterialConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/EDM4hep/ConvertTrackEDM4hepTest.cpp b/Tests/UnitTests/Plugins/EDM4hep/ConvertTrackEDM4hepTest.cpp index 58c430f4e4c..48cfe29e2fc 100644 --- a/Tests/UnitTests/Plugins/EDM4hep/ConvertTrackEDM4hepTest.cpp +++ b/Tests/UnitTests/Plugins/EDM4hep/ConvertTrackEDM4hepTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXBoostTrackBuildingTests.cpp b/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXBoostTrackBuildingTests.cpp index 0ccbc53e999..e221aaf4847 100644 --- a/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXBoostTrackBuildingTests.cpp +++ b/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXBoostTrackBuildingTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXEdgeBuildingTest.cpp b/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXEdgeBuildingTest.cpp index 3f671aeb04e..b4219c83ba9 100644 --- a/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXEdgeBuildingTest.cpp +++ b/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXEdgeBuildingTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXMetricHookTests.cpp b/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXMetricHookTests.cpp index 2974cd5ac32..16e715e1924 100644 --- a/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXMetricHookTests.cpp +++ b/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXMetricHookTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXTensorConversionTests.cpp b/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXTensorConversionTests.cpp index a75527a72e0..a1e74db14e7 100644 --- a/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXTensorConversionTests.cpp +++ b/Tests/UnitTests/Plugins/ExaTrkX/ExaTrkXTensorConversionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/FpeMonitoring/FpeMonitorTests.cpp b/Tests/UnitTests/Plugins/FpeMonitoring/FpeMonitorTests.cpp index 060b03b7535..74ca4012337 100644 --- a/Tests/UnitTests/Plugins/FpeMonitoring/FpeMonitorTests.cpp +++ b/Tests/UnitTests/Plugins/FpeMonitoring/FpeMonitorTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Geant4/Geant4ConvertersTests.cpp b/Tests/UnitTests/Plugins/Geant4/Geant4ConvertersTests.cpp index f7706e8c2ba..c748921b4d0 100644 --- a/Tests/UnitTests/Plugins/Geant4/Geant4ConvertersTests.cpp +++ b/Tests/UnitTests/Plugins/Geant4/Geant4ConvertersTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Geant4/Geant4DetectorElementTests.cpp b/Tests/UnitTests/Plugins/Geant4/Geant4DetectorElementTests.cpp index 2beea2f61d6..d0ee306a18c 100644 --- a/Tests/UnitTests/Plugins/Geant4/Geant4DetectorElementTests.cpp +++ b/Tests/UnitTests/Plugins/Geant4/Geant4DetectorElementTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Geant4/Geant4DetectorSurfaceFactoryTests.cpp b/Tests/UnitTests/Plugins/Geant4/Geant4DetectorSurfaceFactoryTests.cpp index 6fd9606b6a1..f2149bacfe8 100644 --- a/Tests/UnitTests/Plugins/Geant4/Geant4DetectorSurfaceFactoryTests.cpp +++ b/Tests/UnitTests/Plugins/Geant4/Geant4DetectorSurfaceFactoryTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Geant4/Geant4PhysicalVolumeSelectorsTests.cpp b/Tests/UnitTests/Plugins/Geant4/Geant4PhysicalVolumeSelectorsTests.cpp index a1595d8e8ef..19f0431290f 100644 --- a/Tests/UnitTests/Plugins/Geant4/Geant4PhysicalVolumeSelectorsTests.cpp +++ b/Tests/UnitTests/Plugins/Geant4/Geant4PhysicalVolumeSelectorsTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Geant4/Geant4SurfaceProviderTests.cpp b/Tests/UnitTests/Plugins/Geant4/Geant4SurfaceProviderTests.cpp index 6f7f8d77726..9aeb29a8fa6 100644 --- a/Tests/UnitTests/Plugins/Geant4/Geant4SurfaceProviderTests.cpp +++ b/Tests/UnitTests/Plugins/Geant4/Geant4SurfaceProviderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoBoxConverterTests.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoBoxConverterTests.cpp index ffd485272ad..c0f38881995 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoBoxConverterTests.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoBoxConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoBoxToVolumeTest.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoBoxToVolumeTest.cpp index 035fe7ebc1a..37a923bac13 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoBoxToVolumeTest.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoBoxToVolumeTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoDetectorObjectTest.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoDetectorObjectTest.cpp index ae155533c30..f281c7c1095 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoDetectorObjectTest.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoDetectorObjectTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoModelDetectorElementTests.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoModelDetectorElementTests.cpp index 389c5641c8b..274ef93ca59 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoModelDetectorElementTests.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoModelDetectorElementTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoPolyConverterTests.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoPolyConverterTests.cpp index ebbbd422055..b273b0a2364 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoPolyConverterTests.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoPolyConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoSubConverterTest.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoSubConverterTest.cpp index 8b11fcd31b1..3a5461aad84 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoSubConverterTest.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoSubConverterTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoTrdConverterTests.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoTrdConverterTests.cpp index 3a6718a629b..b8d9e51946d 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoTrdConverterTests.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoTrdConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoTrdToVolumeTests.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoTrdToVolumeTests.cpp index 6f8794bce0e..9c156e16423 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoTrdToVolumeTests.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoTrdToVolumeTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/GeoModel/GeoTubeToVolumeTest.cpp b/Tests/UnitTests/Plugins/GeoModel/GeoTubeToVolumeTest.cpp index c6cd459b35a..fc3263a8593 100644 --- a/Tests/UnitTests/Plugins/GeoModel/GeoTubeToVolumeTest.cpp +++ b/Tests/UnitTests/Plugins/GeoModel/GeoTubeToVolumeTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Hashing/AnnoyTest.cpp b/Tests/UnitTests/Plugins/Hashing/AnnoyTest.cpp index 158f2edec6f..cb506e23514 100644 --- a/Tests/UnitTests/Plugins/Hashing/AnnoyTest.cpp +++ b/Tests/UnitTests/Plugins/Hashing/AnnoyTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Hashing/HashingSeedingTest.cpp b/Tests/UnitTests/Plugins/Hashing/HashingSeedingTest.cpp index eda342ee0ca..1efd25e8319 100644 --- a/Tests/UnitTests/Plugins/Hashing/HashingSeedingTest.cpp +++ b/Tests/UnitTests/Plugins/Hashing/HashingSeedingTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Hashing/SpacePoint.hpp b/Tests/UnitTests/Plugins/Hashing/SpacePoint.hpp index d4b0f45f7ac..4b6b6ddd31f 100644 --- a/Tests/UnitTests/Plugins/Hashing/SpacePoint.hpp +++ b/Tests/UnitTests/Plugins/Hashing/SpacePoint.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2018-2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Json/AlgebraJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/AlgebraJsonConverterTests.cpp index cb0c89c004a..3aca472080b 100644 --- a/Tests/UnitTests/Plugins/Json/AlgebraJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/AlgebraJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/DetectorJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/DetectorJsonConverterTests.cpp index 224549bb340..a7e25729b7f 100644 --- a/Tests/UnitTests/Plugins/Json/DetectorJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/DetectorJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/DetectorVolumeFinderJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/DetectorVolumeFinderJsonConverterTests.cpp index f9842a182d5..c5f30c1ce7d 100644 --- a/Tests/UnitTests/Plugins/Json/DetectorVolumeFinderJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/DetectorVolumeFinderJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/DetectorVolumeJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/DetectorVolumeJsonConverterTests.cpp index 126322514e2..21405647769 100644 --- a/Tests/UnitTests/Plugins/Json/DetectorVolumeJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/DetectorVolumeJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/EqualityHelpers.hpp b/Tests/UnitTests/Plugins/Json/EqualityHelpers.hpp index 546ba6d8be7..b84d5f58a22 100644 --- a/Tests/UnitTests/Plugins/Json/EqualityHelpers.hpp +++ b/Tests/UnitTests/Plugins/Json/EqualityHelpers.hpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #pragma once diff --git a/Tests/UnitTests/Plugins/Json/ExtentJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/ExtentJsonConverterTests.cpp index f8e943c66c3..3fc16ad0ccf 100644 --- a/Tests/UnitTests/Plugins/Json/ExtentJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/ExtentJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/GeometryHierarchyMapJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/GeometryHierarchyMapJsonConverterTests.cpp index 394e24a39ec..238cd3b96cc 100644 --- a/Tests/UnitTests/Plugins/Json/GeometryHierarchyMapJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/GeometryHierarchyMapJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/GridJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/GridJsonConverterTests.cpp index 07a92711ebf..8f73a12c6b2 100644 --- a/Tests/UnitTests/Plugins/Json/GridJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/GridJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/MaterialJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/MaterialJsonConverterTests.cpp index 2a755ef8dad..b68a2606e61 100644 --- a/Tests/UnitTests/Plugins/Json/MaterialJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/MaterialJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/MaterialMapJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/MaterialMapJsonConverterTests.cpp index 7d0ffd19ac0..518ff1eab4e 100644 --- a/Tests/UnitTests/Plugins/Json/MaterialMapJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/MaterialMapJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2019-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/PortalJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/PortalJsonConverterTests.cpp index 7004216a790..770076c1a0e 100644 --- a/Tests/UnitTests/Plugins/Json/PortalJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/PortalJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/ProtoDetectorJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/ProtoDetectorJsonConverterTests.cpp index f728f900542..66cf86092a2 100644 --- a/Tests/UnitTests/Plugins/Json/ProtoDetectorJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/ProtoDetectorJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/SurfaceBoundsJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/SurfaceBoundsJsonConverterTests.cpp index d79673e7571..82ed67867bd 100644 --- a/Tests/UnitTests/Plugins/Json/SurfaceBoundsJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/SurfaceBoundsJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/SurfaceJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/SurfaceJsonConverterTests.cpp index 44c8b3470f9..75dedda0751 100644 --- a/Tests/UnitTests/Plugins/Json/SurfaceJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/SurfaceJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/UtilitiesJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/UtilitiesJsonConverterTests.cpp index 8a5b1c9c533..08ec49e1bed 100644 --- a/Tests/UnitTests/Plugins/Json/UtilitiesJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/UtilitiesJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2021 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Json/VolumeBoundsJsonConverterTests.cpp b/Tests/UnitTests/Plugins/Json/VolumeBoundsJsonConverterTests.cpp index c077ffbe1e4..25fa9326e79 100644 --- a/Tests/UnitTests/Plugins/Json/VolumeBoundsJsonConverterTests.cpp +++ b/Tests/UnitTests/Plugins/Json/VolumeBoundsJsonConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2022 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/Podio/PodioTrackContainerTest.cpp b/Tests/UnitTests/Plugins/Podio/PodioTrackContainerTest.cpp index adfb2946d13..3f9b11b4ab1 100644 --- a/Tests/UnitTests/Plugins/Podio/PodioTrackContainerTest.cpp +++ b/Tests/UnitTests/Plugins/Podio/PodioTrackContainerTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Plugins/Podio/PodioTrackStateContainerTest.cpp b/Tests/UnitTests/Plugins/Podio/PodioTrackStateContainerTest.cpp index 449cd180b4d..2be4cc1411a 100644 --- a/Tests/UnitTests/Plugins/Podio/PodioTrackStateContainerTest.cpp +++ b/Tests/UnitTests/Plugins/Podio/PodioTrackStateContainerTest.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoArb8ConversionTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoArb8ConversionTests.cpp index ea21c2be64b..97375d27925 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoArb8ConversionTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoArb8ConversionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoBBoxConversionTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoBBoxConversionTests.cpp index 8d2fcd7e654..ec76fde6e5d 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoBBoxConversionTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoBBoxConversionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoLayerBuilderTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoLayerBuilderTests.cpp index 3c00279d813..b45e188f9ec 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoLayerBuilderTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoLayerBuilderTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoMaterialConverterTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoMaterialConverterTests.cpp index 43fa842f863..a35772ee14c 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoMaterialConverterTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoMaterialConverterTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoParserTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoParserTests.cpp index e91fe6413de..1292d311b84 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoParserTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoParserTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoPrimitivesHelperTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoPrimitivesHelperTests.cpp index 4bc89e36861..9d81193790b 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoPrimitivesHelperTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoPrimitivesHelperTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoTrd1ConversionTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoTrd1ConversionTests.cpp index 56392407168..89293a1d48b 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoTrd1ConversionTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoTrd1ConversionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020-2023 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoTrd2ConversionTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoTrd2ConversionTests.cpp index 1feca6e1d99..386418d67b2 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoTrd2ConversionTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoTrd2ConversionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/Tests/UnitTests/Plugins/TGeo/TGeoTubeConversionTests.cpp b/Tests/UnitTests/Plugins/TGeo/TGeoTubeConversionTests.cpp index 18ac5edfd18..3309895866b 100644 --- a/Tests/UnitTests/Plugins/TGeo/TGeoTubeConversionTests.cpp +++ b/Tests/UnitTests/Plugins/TGeo/TGeoTubeConversionTests.cpp @@ -1,10 +1,10 @@ -// This file is part of the Acts project. +// This file is part of the ACTS project. // -// Copyright (C) 2020 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. #include diff --git a/cmake/assert_include/assert.h b/cmake/assert_include/assert.h index 59268f6bd93..5c1b87a5d78 100644 --- a/cmake/assert_include/assert.h +++ b/cmake/assert_include/assert.h @@ -1,3 +1,11 @@ +// This file is part of the ACTS project. +// +// Copyright (C) 2016 CERN for the benefit of the ACTS project +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at https://mozilla.org/MPL/2.0/. + #if defined(NDEBUG) #define _HAD_NDEBUG #undef NDEBUG diff --git a/cmake/setup_withdeps.sh.in b/cmake/setup_withdeps.sh.in index 9e0bdc29031..b4a17641134 100644 --- a/cmake/setup_withdeps.sh.in +++ b/cmake/setup_withdeps.sh.in @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2024 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # This script sets up the ACTS Examples environment in a somewhat robust way. diff --git a/codegen/generate_sympy_cov.py b/codegen/generate_sympy_cov.py index 1680381504a..017b81937f8 100644 --- a/codegen/generate_sympy_cov.py +++ b/codegen/generate_sympy_cov.py @@ -46,13 +46,13 @@ def my_covariance_transport_generic_function_print(name_exprs, run_cse=True): print( - """// This file is part of the Acts project. + """// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Note: This file is generated by generate_sympy_cov.py // Do not modify it manually. diff --git a/codegen/generate_sympy_jac.py b/codegen/generate_sympy_jac.py index 667382e4cf6..3c6043589e0 100644 --- a/codegen/generate_sympy_jac.py +++ b/codegen/generate_sympy_jac.py @@ -115,13 +115,13 @@ def my_full_transport_jacobian_curvilinear_function_print(name_exprs, run_cse=Tr print( - """// This file is part of the Acts project. + """// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Note: This file is generated by generate_sympy_jac.py // Do not modify it manually. diff --git a/codegen/generate_sympy_stepper.py b/codegen/generate_sympy_stepper.py index 7602a30c4a8..a1b2e77afc4 100644 --- a/codegen/generate_sympy_stepper.py +++ b/codegen/generate_sympy_stepper.py @@ -272,13 +272,13 @@ def post_expr_hook(var): ) print( - """// This file is part of the Acts project. + """// This file is part of the ACTS project. // -// Copyright (C) 2024 CERN for the benefit of the Acts project +// Copyright (C) 2016 CERN for the benefit of the ACTS project // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// file, You can obtain one at https://mozilla.org/MPL/2.0/. // Note: This file is generated by generate_sympy_stepper.py // Do not modify it manually. diff --git a/thirdparty/Annoy/CMakeLists.txt b/thirdparty/Annoy/CMakeLists.txt index 20fa70b4fcd..adc28862843 100644 --- a/thirdparty/Annoy/CMakeLists.txt +++ b/thirdparty/Annoy/CMakeLists.txt @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2024 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # CMake include(s). include(FetchContent) diff --git a/thirdparty/FRNN/CMakeLists.txt b/thirdparty/FRNN/CMakeLists.txt index cd36fc9a330..25bcfb10f2b 100644 --- a/thirdparty/FRNN/CMakeLists.txt +++ b/thirdparty/FRNN/CMakeLists.txt @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2022 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. include(FetchContent) message(STATUS "Building FRNN as part of the ACTS project") diff --git a/thirdparty/actsvg/CMakeLists.txt b/thirdparty/actsvg/CMakeLists.txt index e74e5cd0619..8d57b9ba764 100644 --- a/thirdparty/actsvg/CMakeLists.txt +++ b/thirdparty/actsvg/CMakeLists.txt @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2022 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # CMake include(s). include(FetchContent) diff --git a/thirdparty/algebra-plugins/CMakeLists.txt b/thirdparty/algebra-plugins/CMakeLists.txt index d09880b2615..ef0fc005afb 100644 --- a/thirdparty/algebra-plugins/CMakeLists.txt +++ b/thirdparty/algebra-plugins/CMakeLists.txt @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # CMake include(s). include(FetchContent) diff --git a/thirdparty/covfie/CMakeLists.txt b/thirdparty/covfie/CMakeLists.txt index 0d6d71cf47e..fe86e7e0e47 100644 --- a/thirdparty/covfie/CMakeLists.txt +++ b/thirdparty/covfie/CMakeLists.txt @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # CMake include(s). include(FetchContent) diff --git a/thirdparty/detray/CMakeLists.txt b/thirdparty/detray/CMakeLists.txt index f2f7b24a86d..aeae6304a54 100644 --- a/thirdparty/detray/CMakeLists.txt +++ b/thirdparty/detray/CMakeLists.txt @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # CMake include(s). include(FetchContent) diff --git a/thirdparty/traccc/CMakeLists.txt b/thirdparty/traccc/CMakeLists.txt index 705593f34d8..94674839a7e 100644 --- a/thirdparty/traccc/CMakeLists.txt +++ b/thirdparty/traccc/CMakeLists.txt @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # CMake include(s). include(FetchContent) diff --git a/thirdparty/vecmem/CMakeLists.txt b/thirdparty/vecmem/CMakeLists.txt index 637ea1800b7..e0fbf07b143 100644 --- a/thirdparty/vecmem/CMakeLists.txt +++ b/thirdparty/vecmem/CMakeLists.txt @@ -1,10 +1,10 @@ -# This file is part of the Acts project. +# This file is part of the ACTS project. # -# Copyright (C) 2021 CERN for the benefit of the Acts project +# Copyright (C) 2016 CERN for the benefit of the ACTS project # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# file, You can obtain one at https://mozilla.org/MPL/2.0/. # CMake include(s). include(FetchContent)