Skip to content
Snippets Groups Projects
Commit dc72294a authored by Chichi Lalescu's avatar Chichi Lalescu
Browse files

add some minimum description for base classes

parent 9ed6e256
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,10 @@ import h5py
import bfps
class base(object):
"""
This class contains simulation parameters, and handles parameter related
functionalities of both python objects and C++ codes.
"""
def __init__(
self,
work_dir = './',
......
......@@ -26,6 +26,10 @@ import bfps
from bfps.base import base
class code(base):
"""
This class is meant to stitch together the C++ code into a final source file,
compile it, and handle all job launching.
"""
def __init__(
self,
work_dir = './',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment