CodeRecipe: Difference between revisions

From Mu2eWiki
Jump to navigation Jump to search
(Created page with " ==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 pl...")
 
No edit summary
Line 9: Line 9:
<li>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.
<li>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.
   <pre>source /cvmfs/fermilab.opensciencegrid.org/products/common/etc/setups</pre>
   <pre>source /cvmfs/fermilab.opensciencegrid.org/products/common/etc/setups</pre>
<li>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.
<li>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.
   <pre>setup mu2e</pre>
   <pre>setup mu2e</pre>
<li>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.
<li>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.
   <ul>
   <ul>
     <li>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.
     <li>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.
Line 31: Line 31:
==Checkout==
==Checkout==


* For quick cut and paste...
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.
checking out the main repository, ''with kerberos authentication for committing'':
 
<nowiki>git clone ssh://p-mu2eofflinesoftwaremu2eoffline@cdcvs.fnal.gov/cvs/projects/mu2eofflinesoftwaremu2eoffline/Offline.git</nowiki>
See [[git]] for much more information about tools, commits, branches, tags.
checking out the main repository, ''readonly'':
 
<nowiki>git clone http://cdcvs.fnal.gov/projects/mu2eofflinesoftwaremu2eoffline/Offline.git</nowiki>
===Satellite (partial) local build===
* create the working directory (typically in /mu2e/app/users/$USER, see [[disks]])
 
* use this local setups.sh in the setup procedure above
 
===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: <pre>git clone http://cdcvs.fnal.gov/projects/mu2eofflinesoftwaremu2eoffline/Offline.git</pre>
** with kerberos authentication for committing code <pre>git clone ssh://p-mu2eofflinesoftwaremu2eoffline@cdcvs.fnal.gov/cvs/projects/mu2eofflinesoftwaremu2eoffline/Offline.git</pre>
* cd Offline and use this local setups.sh in the setup procedure above




==Build==
==Build==

Revision as of 17:53, 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

  1. 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
  2. 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
  3. 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 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 the working directory (typically in /mu2e/app/users/$USER, see disks)
  • use this local setups.sh in the setup procedure above

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
  • cd Offline and use this local setups.sh in the setup procedure above


Build