From 3bd6e6e3434b407c387da99fecf999609617d941 Mon Sep 17 00:00:00 2001 From: Whitney Armstrong <warmstrong@anl.gov> Date: Wed, 14 Jul 2021 14:03:11 -0500 Subject: [PATCH] modified: src/docs/part3/running_juggler.md --- src/docs/part3/running_juggler.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/part3/running_juggler.md b/src/docs/part3/running_juggler.md index 0d2db10..8e21353 100644 --- a/src/docs/part3/running_juggler.md +++ b/src/docs/part3/running_juggler.md @@ -17,7 +17,7 @@ These are actually python that is interpreted by the `gaudirun.py` program. Once compiled and install as part of juggler, the algorithms can be imported into juggler. -``` +```py from Gaudi.Configuration import * from GaudiKernel.DataObjectHandleBase import DataObjectHandleBase from Configurables import ApplicationMgr, EICDataSvc, PodioOutput, GeoSvc @@ -61,12 +61,12 @@ ApplicationMgr( ### Executing Juggler If using the container-installed juggler algorithms you can run the reconstruction with: -``` +```bash gaudirun.py options/demo_reco.py ``` When adding your own algorithm and installed into a custom location, you will need do the following: -``` +```bash xenv -x ${JUGGLER_INSTALL_PREFIX}/Juggler.xenv gaudirun.py options/demo_reco.py ``` -- GitLab