👍 🎉 First off, thanks for taking time to contribute! 👍 🎉
The following is a set of guidelines for contributing to Virtual-Scanner. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
This project and everyone participating in it is governed by the Virtual-Scanner Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to imr.framework2018@github.com.
Read through the Style Guide for Python Code and follow the coding conventions. If you notice any of Virtual-Scanner's code not adhering to PEP8, submit a pull request or open an issue.
Insert and fill out the following header comments at the top of every script in your source code:
Institution : (your university/research facility)
Version : 1.0.0
Note that "Version" refers to the Virtual Scanner release you developed your code on. You can add more fields if needed.
Please add a top-level description of code functionality in each script. In addition, document every class and method in your source code using the Numpy docstring guide. An example is shown below.
def addition(a, b):
"""
Addition of two numbers.
Parameters
----------
a : int, float
Operand 1
b : int, float
Operand 2
Returns
-------
Arthimetic sum of operand 1 and operand 2.
"""
return a + b