Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dashboard: Add missing copyright headers #858

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/python/impactx/dashboard/Input/components.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from typing import Optional

from .. import html, setup_server, vuetify
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from ... import setup_server, vuetify
from .. import CardComponents, InputComponents

Expand Down
8 changes: 8 additions & 0 deletions src/python/impactx/dashboard/Input/defaults.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from impactx.impactx_pybind import ImpactX, RefPart

from .defaults_helper import InputDefaultsHelper
Expand Down
8 changes: 8 additions & 0 deletions src/python/impactx/dashboard/Input/defaults_helper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

import inspect
from typing import Dict, List, Type

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX
Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from ... import setup_server

server, state, ctrl = setup_server()
Expand Down
8 changes: 8 additions & 0 deletions src/python/impactx/dashboard/Input/shared.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from .. import setup_server
from ..Input.inputParameters.inputMain import InputParameters
from . import DashboardDefaults, generalFunctions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from ... import setup_server
from .. import generalFunctions

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from ... import setup_server, vuetify
from .. import CardComponents, InputComponents, NavigationComponents, generalFunctions
from . import SpaceChargeFunctions
Expand Down
8 changes: 8 additions & 0 deletions src/python/impactx/dashboard/Run/controls.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

import asyncio
import io

Expand Down
8 changes: 8 additions & 0 deletions src/python/impactx/dashboard/Toolbar/exportTemplate.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from .. import setup_server
from ..Input.distributionParameters.distributionFunctions import DistributionFunctions
from ..Input.latticeConfiguration.latticeMain import parameter_input_checker_for_lattice
Expand Down
8 changes: 8 additions & 0 deletions src/python/impactx/dashboard/Toolbar/importParser.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

from .. import setup_server
from ..Input.distributionParameters.distributionMain import (
on_distribution_parameter_change,
Expand Down
8 changes: 8 additions & 0 deletions src/python/impactx/dashboard/Toolbar/importParserHelper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
This file is part of ImpactX

Copyright 2025 ImpactX contributors
Authors: Parthib Roy
License: BSD-3-Clause-LBNL
"""

import ast
import re

Expand Down
Loading