Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
This page describes how to compile and run the RCE teststand software at SLAC and CERN.

...

Setting up remote CVS access at CERN  (requires SLAC account)

Panel

setenv CVSROOT :ext:noric.slac.stanford.edu:/afs/slac/g/npa/repo
setenv CVS_RSH ssh

source /u1/rcelab/setup/npa.csh

...

Checking out the packages from SLAC CVS requires a SLAC Unix login account. Required steps are identical for the SLAC and CERN environment unless otherwiese mentioned.

...

Setting the RCE development environment (C-Shell)

...

Code Block

source  /reg/g/atlas/rcecalib/setup/setup_rce.csh

...

To execute this setup at login the follwing lines should be assed to $HOME/.cshrc

...

Code Block

if ( -r /reg/g/atlas/rcecalib/setup/setup_rce.csh ) then
source  /reg/g/atlas/rcecalib/setup/setup_rce.csh >& /dev/null
endif

...

Setup for Bourne-Shell

...

Code Block

source  /reg/g/atlas/rcecalib/setup/setup_rce.sh

...

Or adding the follwing lines to $HOME/.bash_profile

...

Code Block

if [ !  -r /reg/g/atlas/rcecalib/setup/setup_rce.sh ]; then
source /reg/g/atlas/rcecalib/setup/setup_rce.sh 2>&1 > /dev/null
fi

...

Checking out  ans setting up the RCE and STControl/PixLib packages into a directory

...

.

Panel

cvs co -d rcerel rcerelease release

cd rcerel

cvs co rce rceapp rceers rceowl rcecalib rceipc rceusr

cp rcecalib/projects.mk.template project.mk

cd ..

cvs co pixlib

Building the packages

...