Libraries for HEP Computing - LHC++

 
Last update - 17th June 2001.  

CLHEP-1.7

CLHEP is installed in AFS and NICE-NT:

The sources are available in:

The distribution kits can be accessed here.

The following is an installation guide for previous version of CLHEP:

     "CLHEP-1.6 Installation Guide"

Installation of CLHEP on Unix

The "configure" script is a part of the distribution, so it is not necessary to call "autoconf" to create it.

The installation procedure for UNIX looks like the following:

    gtar -zxvf clhep-1.7.0.0.tar.gz
    cd CLHEP
    ./configure
    gmake install prefix=...
The default compilers are:
    SUN, SGI - CC
    HP       - aCC
    DEC      - cxx
    IBM      - xlC
    Linux    - g++
If you want to use other compilers then set CXX environment variable before to call the "configure" script:
    setenv CXX KCC     // or export CXX=KCC
    ./configure
    gmake install prefix=...

Installation of CLHEP on NT

First install GNU-Win32 tools (bash shell) available from CYGNUS:
   http://www.cygnus.com/misc/gnu-win32/
After that you can follow an ordinary installation procedure for UNIX:
    gunzip clhep-1.7.0.0.tar.gz
    tar -xvf clhep-1.7.0.0.tar
    cd CLHEP
    ./configure
    make install prefix=...