TLDR
cd /path/to/workarea
mkdir -p /path/to/workarea/run /path/to/workarea/build
cd build
setupATLAS # if you haven't done this already
asetup 21.2.32,AnalysisBase
lsetup git
cd ../
### choose a name for your project, I'm calling it "AnaProject"
curl https://gitlab.cern.ch/atlas-trt-software/TRTFramework/raw/v2.X-branch/scripts/GenerateProject.py | python - AnaProjectcd build
cmake ../AnaProject ## or whatever you called your project
make -j4
source $AnalysisBase_PLATFORM/setup.sh
## if using a local cluster $AnalysisBase_PLATFORM might not be set
## you should source the setup.sh file which is in a folder that should
## start with x86_64...Last updated