Contributing
Gauss is the LHCb project based on top of core simulation framework Gaussino, and other LHCb projects. Gauss contains all the LHCb-experiment-related components, whereas Gaussino contains all the core functionalities which should be independent of any experiment.
Developing Gauss
Please make sure that you followed the recipe described in and make sure that you work on your local development branch.
Changes should be introduced via merge requests targeting the Futurev5 branch.
If you wish to open a MR with your local branch (the name of the branch should start with your username, e.g. username-some-changes), then you can directly push the changes to the branch in the remote repository:
git add file1 file2
git commit -m "The description of your commit"
git push origin username-some-changes
In gitlab, open a MR targeting the Futurev5 branch. Adding the lhcb-gaussino label will include your changes in the next nightly build of lhcb-gaussino.
Documentation
Add a
Python Documentationlabel to your MR. This will activate the gitlab CI pipeline.Edit or add new markdown (
.md) or reStructured Text (.rst) files in thedocs/repository and make sure they are listed in theindex.rstfile. You can mix both by creating a markdown file and then putting rst in the following format:
```{eval-rst}
Your reStructured Text in markdown.
```{}
Your documentation should be accessible at
https://lhcb-gauss.docs.cern.ch/name-of-your-branch/index.htmlYou can test the documentation locally by running
gitlab-runner exec shell build-docs. Standardmake docswill not work, as we need to add python paths of other projects.