generated from FAIRmat-NFDI/nomad-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c374dcc
commit 13bd1e3
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from nomad.datamodel.data import ArchiveSection, EntryData | ||
from nomad.metainfo import Quantity, Section, SubSection | ||
from nomad_material_processing.vapor_deposition.pvd.general import PVDSource | ||
from nomad_material_processing.vapor_deposition.pvd.sputtering import SputterDeposition | ||
|
||
from nomad_uibk_plugin.schema_packages import UIBKCategory | ||
|
||
from .sample import Sample | ||
|
||
|
||
class SputterSource(PVDSource, ArchiveSection): | ||
pass | ||
|
||
class SputterParameters(ArchiveSection): | ||
pass | ||
|
||
class UIBKSputterDeposition(SputterDeposition, EntryData): | ||
|
||
m_def = Section( | ||
categories=[UIBKCategory], | ||
label = 'Sputter Deposition', | ||
) | ||
|
||
samples = SubSection(Sample, repeats=True) |