Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LbScripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
LHCb Core Software
LbScripts
Merge requests
!131
added simple ganga wrapper
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
added simple ganga wrapper
clemenci/LbScripts:ganga-wrapper
into
master
Overview
2
Commits
2
Changes
1
Merged
Marco Clemencic
requested to merge
clemenci/LbScripts:ganga-wrapper
into
master
8 years ago
Overview
2
Commits
2
Changes
1
Expand
fixes
LBCORE-1267
0
0
Merge request reports
Compare
master
version 2
09194e49
8 years ago
version 1
07854efb
8 years ago
master (base)
and
latest version
latest version
abb4faf4
2 commits,
8 years ago
version 2
09194e49
1 commit,
8 years ago
version 1
07854efb
1 commit,
8 years ago
1 file
+
19
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
LbConfiguration/scripts/ganga
0 → 100755
+
19
−
0
Options
#!/bin/sh
# if the first command line option is --ganga-version use the version of
# Ganga specified as argument
GANGA_VERSION
=
LATEST
while
[
$#
-ne
0
]
;
do
case
$1
in
--ganga-version
)
shift
GANGA_VERSION
=
$1
shift
;;
*
)
break
;;
esac
done
export
GANGA_CONFIG_PATH
=
GangaLHCb/LHCb.ini
export
GANGA_SITE_CONFIG_AREA
=
/cvmfs/lhcb.cern.ch/lib/GangaConfig/config
exec
/cvmfs/ganga.cern.ch/Ganga/install/
${
GANGA_VERSION
}
/bin/ganga
"
$@
"
Loading