CodeRecipe: Difference between revisions
No edit summary |
No edit summary |
||
Line 36: | Line 36: | ||
===Satellite (partial) local build=== | ===Satellite (partial) local build=== | ||
Create a working release area, that is tied to a base release. | |||
* create the working directory (typically in /mu2e/app/users/$USER, see [[disks]]) | * create the working directory (typically in /mu2e/app/users/$USER, see [[disks]]) | ||
* since you will be working on a part of a release locally, you will need a base release where the rest of the code comes from. This would typically be a tagged release from cvfms, but may be any existing full (non-satellite) release. Execute the satellite script from that release:<pre>/cvmfs/mu2e.opensciencegrid.org/Offline/v6_0_0/SLF6/prof/Offline/bin/createSatelliteRelease</pre> | |||
* use this local setups.sh in the setup procedure above | * cd Offline and use this local setups.sh in the setup procedure above | ||
* see the tutorials for examples of how to get pieces of Offline into this area | |||
===Full local build=== | ===Full local build=== |
Revision as of 18:09, 15 February 2017
Introduction
This page shows the basic steps in setting up, checking out and building the mu2e code base. If you haven't read the computing overview please do that first.
Setup (environment)
There are three basic steps, plus options to setting up the code environment
- Locate the non-mu2e UPS utility packages (art, root, ifdh, jobsub, etc.). If cvmfs is mounted (the mu2egpvm machines, the grid, and most other places) you can source this setup file. If cvmfs is not mounted, ask your experts where is. The main point here is to point the PRODUCTS environmental to the products area.
source /cvmfs/fermilab.opensciencegrid.org/products/common/etc/setups
- The next step is to setup general mu2e environmental variables. This is a UPS product which you located in the first step. The main point here is to add the directory of mu2e-specific products to the PRODUCTS path and setup a version of git.
setup mu2e
- source a setup.sh file in a specific code release. This will point environmentals to this specific build of code so when you run an executable, the shared libraries, fcl control files and data come from this build. It also determines which version of the art, geant and root you will use.
- if you are using a tagged release, pre-built on the cvmfs disk (or possibly other places) you will source the setup there. You can see the path determines the release (tag), the platform (SLF6) and the choice of optimized (prof) or debug.
source /cvmfs/mu2e.opensciencegrid.org/Offline/v6_0_0/SLF6/prof/Offline/setup.sh
- If you are building locally, you have more control. The optimized (prof) build is default, and you can chose to chose the debug build with the following. buildopts is a script with a --help switch to see other options.
./buildopts --build=debug
then the setup looks like
source /buildarea/Offline/setup.sh
- if you are using a tagged release, pre-built on the cvmfs disk (or possibly other places) you will source the setup there. You can see the path determines the release (tag), the platform (SLF6) and the choice of optimized (prof) or debug.
If you log out and back in, you can follow the same procedure to recover the environment.
Warning: UPS products have the ability to unsetup and resetup, basically overwriting a previous setup. This procedure can be ambiguous and difficult to maintain, so we have a rule that you do step 3, sourcing a release setup procedure, only once in a process. If you need to switch to a different release, or switch between prof and debug, then open a new window and execute the new setup there.
There are plenty of other packages we use for various purposes, which can be added to these setups, such as "setup mu2egrid" or "setup sam_web_client", for example.
Checkout
You have the choice of running a tagged, pre-built release, building the code locally, or building a small part of the code locally in a satellite release. To run in a pre-built release, you only need to perform the above setup steps. If you can use a tagged release, and only need to modify a geometry file, modify a fcl file, add a print statement, or add an analysis module, you can use a satellite release. If you are doing extensive development work, in particular modifying existing headed files, you probably want to check out the entire repository.
See git for much more information about tools, commits, branches, tags.
Satellite (partial) local build
Create a working release area, that is tied to a base release.
- create the working directory (typically in /mu2e/app/users/$USER, see disks)
- since you will be working on a part of a release locally, you will need a base release where the rest of the code comes from. This would typically be a tagged release from cvfms, but may be any existing full (non-satellite) release. Execute the satellite script from that release:
/cvmfs/mu2e.opensciencegrid.org/Offline/v6_0_0/SLF6/prof/Offline/bin/createSatelliteRelease
- cd Offline and use this local setups.sh in the setup procedure above
- see the tutorials for examples of how to get pieces of Offline into this area
Full local build
Checking out the entire repository. If you will only modify this code locally, then you can check it out with readonly. If you will need to commit the code back to the repository, you will need to check the code with kerberos authentication.
- create the working directory (typically in /mu2e/app/users/$USER, see disks)
- checking out the main repository
- readonly:
git clone http://cdcvs.fnal.gov/projects/mu2eofflinesoftwaremu2eoffline/Offline.git
- with kerberos authentication for committing code
git clone ssh://p-mu2eofflinesoftwaremu2eoffline@cdcvs.fnal.gov/cvs/projects/mu2eofflinesoftwaremu2eoffline/Offline.git
- readonly:
- cd Offline and use this local setups.sh in the setup procedure above