Skip to content

Commit

Permalink
add place holder modules for card not used now
Browse files Browse the repository at this point in the history
  • Loading branch information
KedoKudo committed Jan 31, 2025
1 parent 6970fc2 commit b5d3fc2
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pleiades/sammy/parameters/background.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env python
"""Background function card for SAMMY.
TODO: This card will be implemented in the future.
"""
5 changes: 5 additions & 0 deletions src/pleiades/sammy/parameters/det_efficiency.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env python
"""Detector efficiency function card for SAMMY.
TODO: This card will be implemented in the future.
"""
5 changes: 5 additions & 0 deletions src/pleiades/sammy/parameters/resolution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env python
"""Resolution function card for SAMMY.
TODO: This module will be implemented in the future.
"""
10 changes: 10 additions & 0 deletions tests/unit/pleiades/sammy/parameters/test_background.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env python
"""Tests for the background function card.
TODO: This test will be implemented in the future when the card is implemented.
"""

import pytest

if __name__ == "__main__":
pytest.main(["-v", __file__])
11 changes: 11 additions & 0 deletions tests/unit/pleiades/sammy/parameters/test_det_efficiency.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env python
"""Tests for the detector efficiency function card.
TODO: This test will be implemented in the future when the card is implemented.
"""

import pytest

if __name__ == "__main__":
pytest.main(["-v", __file__])
10 changes: 10 additions & 0 deletions tests/unit/pleiades/sammy/parameters/test_resolution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env python
"""Tests for the resolution function card.
TODO: This test will be implemented in the future when the card is implemented.
"""

import pytest

if __name__ == "__main__":
pytest.main(["-v", __file__])

0 comments on commit b5d3fc2

Please sign in to comment.