From 7098c55eb11a79bd516a6a6ad8cecb0e2a88fe51 Mon Sep 17 00:00:00 2001 From: ddiaz006 Date: Thu, 15 Aug 2024 20:04:29 -0500 Subject: [PATCH] update setup instructions --- setup.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.md b/setup.md index 186f6c5..99ab940 100644 --- a/setup.md +++ b/setup.md @@ -1,18 +1,20 @@ --- title: Setup --- +The following instructions assume you are using Bash. To switch to Bash, use `bash --login`. ## Setup the work area Set up the CMSSW environment and clone the repository from github for the trigger exercise: ~~~ -source /cvmfs/cms.cern.ch/cmsset_default.csh -setenv SCRAM_ARCH slc7_amd64_gcc700 cd nobackup/ +mkdir HATS2024 +cd HATS2024 +cmssw-el7 -p --bind `readlink $HOME` --bind `readlink -f ${HOME}/nobackup/` --bind /uscms_data --bind /cvmfs -- /bin/bash -l cmsrel CMSSW_10_6_31_patch1 cd CMSSW_10_6_31_patch1/src cmsenv -git clone -b 2024 https://github.com/kakwok/LPCTriggerHATS.git +git clone -b 2024 https://github.com/FNALLPC/LPCTriggerHATS.git scram b -j 4 ~~~ {: .language-bash}