blackhat is hosted by Hepforge, IPPP Durham
close Warning: Can't synchronize with repository "(default)" (/hepforge/svn/blackhat does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of NtupleReaderInstallation


Ignore:
Timestamp:
Oct 4, 2013, 12:36:18 PM (11 years ago)
Author:
Daniel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NtupleReaderInstallation

    v1 v1  
     1The library is an autotools package, and is installed using the usual
     2paradigm of configure; make; make install.
     3
     4Along with the usual autotools options, the library's configure script offers the following options:
     5%
     6
     7--with-lhapdf-path=path_to_lhapdf_installation
     8
     9Sets the location of the \textsc{lhapdf} installation. This option is needed only if the helper program lhapdf-config is not in the executable search path.
     10
     11--with-root-path=path_to_ROOT_installation
     12
     13Sets the location of the root installation. This option is needed only if the helper program root-config is not in the executable search path.
     14
     15--enable-pythoninterface::
     16
     17Compiles the python interface (see section \ref{sec:python
     18
     19
     20To install the library, unpack the {\tt .tar.gz} file,
     21\begin{lstlisting}[basicstyle=\ttfamily,keepspaces=true,columns=fullflexible,escapeinside={(*}{*)}]
     22tar -xzf ntuplesreader-(*$\langle${\it version\/}$\rangle$*).tar.gz
     23\end{lstlisting}
     24where {\it version\/} is a string like `1.0'.
     25Configure, with options as needed,
     26\begin{lstlisting}[basicstyle=\ttfamily,keepspaces=true,columns=fullflexible,escapeinside={(*}{*)}]
     27cd ntuplesreader-(*$\langle${\it version\/}$\rangle$*)
     28./configure (*$\langle${\rm options}$\rangle$*)
     29\end{lstlisting}
     30and then compile and install,
     31\begin{lstlisting}[basicstyle=\ttfamily,keepspaces=true,columns=fullflexible,escapeinside={(*}{*)}]
     32make
     33make install
     34\end{lstlisting}
     35To install in a different location than the standard one, use the
     36{\tt --prefix\/} option to the {\tt configure\/} script.