-
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
5917326
commit 7486b06
Showing
4 changed files
with
34 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,7 @@ | ||
from aiidalab_qe_vibroscopy.app.result.model import VibroResultsModel | ||
from aiidalab_qe_vibroscopy.app.result.result import VibroResultsPanel | ||
|
||
__all__ = [ | ||
"VibroResultsModel", | ||
"VibroResultsPanel", | ||
] |
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,13 @@ | ||
from aiidalab_qe.common.panel import ResultsModel | ||
import traitlets as tl | ||
|
||
|
||
class VibroResultsModel(ResultsModel): | ||
identifier = "vibronic" | ||
|
||
_this_process_label = "VibroWorkChain" | ||
|
||
tab_titles = tl.List([]) | ||
|
||
def get_vibro_node(self): | ||
return self._get_child_outputs() |
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,14 @@ | ||
"""Vibronic results view widgets""" | ||
|
||
from aiidalab_qe_vibroscopy.app.result.model import VibroResultsModel | ||
from aiidalab_qe.common.panel import ResultsPanel | ||
|
||
|
||
class VibroResultsPanel(ResultsPanel[VibroResultsModel]): | ||
title = "Vibronic" | ||
identifier = "vibronic" | ||
workchain_labels = ["vibro"] | ||
|
||
def render(self): | ||
if self.rendered: | ||
return |
Empty file.