Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The remote AIDA tree can be viewed in real-time using JAS3 as a client.

Installation of JAS3 is not covered here. You need to install the "Remote AIDA Plugin" from the Plugin Manager as well as the standard AIDA plugin (no other plugins should be required).

...

Code Block
languagebash
themeMidnight
# Download and untar sources
wget https://coda.jlab.org/drupal/system/files/et-16.1.tgz
tar -zxvf et-16.1.tgz

# Fix up build files (for some reason this seems to be needed even with Python 2)
cd et-16.1.GIT
2to3-2.7 -w ./coda.py ./SConstruct
autopep8 -i SConstruct
autopep8 -i coda.py

# Build it
export CODA=`pwd`
scons install

# Setup the environment (needs to be done every time you run)
export LD_LIBRARY_PATH=${CODA}/Linux-x86_64/lib
export PATH=${CODA}/Linux-x86_64/bin:${CODA}/Linux-x86_64/bin/examples:$PATH

...