Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

InstallSoftware

Andrey Popov edited this page Oct 15, 2016 · 13 revisions

Installation

First create a work area in a recent CMSSW release and check out additional subpackages if needed. Do this by executing script cmssw.sh from the recommended release (the latest production release is available via this link). Then clone the subpackage PEC-tuples, checkout tag corresponding to the release, and compile everything:

# (From $CMSSW_BASE/src)
mkdir Analysis
cd Analysis/
git clone https://github.com/andrey-popov/PEC-tuples.git PECTuples  # For users
# git clone git@github.com:andrey-popov/PEC-tuples.git PECTuples    # For developers
cd PECTuples/
git checkout 3.2.2  # Use the recommended release instead
cd ../..
scram b -j 10

Download additional data files, which are not stored under the version control system:

# (From $CMSSW_BASE/src)
cd Analysis/PECTuples/data/
./download.sh
cd -
Clone this wiki locally