Skip to content

bbgui model creation #188

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: user_guide_updates
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/guis/betabeat/model_creation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Model Creation

<figure>
<center>
<img src="../../assets/images/betabeat_gui/model_creation_window.png" width="100%" alt="Model selection window." />
<figcaption>Model selection window.</figcaption>
</center>
</figure>

<figure>
<center>
<img src="../../assets/images/betabeat_gui/model_creation_with_model.png" width="100%" alt="Model selection window with created model." />
<figcaption>Model selection window with a created model</figcaption>
</center>
</figure>

<figure>
<center>
<img src="../../assets/images/betabeat_gui/model_creation_lhc.png" width="100%" alt="Model creation window for the LHC." />
<figcaption>Model creation window for the LHC.</figcaption>
</center>
</figure>
12 changes: 9 additions & 3 deletions docs/resources/shared_filesystems.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,17 @@ mkdir ~/mnt/eos && ln -nfs ~/mnt/eos /eos
### Mount network resources (repeat after timeouts and restarts)

```bash
sshfs [email protected]:/user/ ~/mnt/user
sshfs [email protected]:/nfs/ ~/mnt/nfs
sshfs [email protected]:/eos/ ~/mnt/eos
sshfs -o follow_symlinks [email protected]:/user/ ~/mnt/user
sshfs -o follow_symlinks [email protected]:/nfs/ ~/mnt/nfs
sshfs -o follow_symlinks [email protected]:/eos/ ~/mnt/eos
```

??? info "Follow Symlinks"
When mounting to a different location than `/nfs` or `/user` **locally**, one has to set the `follow_symlinks` option
so that symlinks e.g. pointing to a folder somewhere in `/nfs/` (which locally does not exist) are followed correctly, i.e. to the path on the remote machine.
This is not needed when mounting to `/nfs` or `/user` as the symlinks would point to these locations anyway,
but that comes with its own problems, as the mount needs to be done as **root** in these cases and might not be valid for other users.

### If outside of the GPN, jump through `lxplus` to mount `dev3`-folders

```bash
Expand Down