Versions Compared

Key

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

...

  1. First, see the the "Getting Started in UT ATLAS" page. You'll need an account on the UT ATLAS cluster. 
  2. Once you have your account, open a terminal window (linux), the Terminal application (OSX), or download and install an Xterm application for Windows (for example, MobaXterm is a good one, and free).
  3. On the command line ssh into one of the taumachines, for example {{ ssh -X -Y tau6.hep.texas.edu}} . 
  4. You should now have a command prompt on the machine. To make sure you can open an X-Window try xclock. You should see a little clock open in a window. You can kill the clock with Ctrl-C, or use Ctrl-Z and then bg if you'd like to keep it running in the background. (Here's a useful and brief overview of linux commands.) 
  5. Now take a look at what is in your .bashrc file. This is a list of commands that run whenever you log in. You can edit it with {{emacs .bashrc &}} . (More about emacs can be found in this emacs tour.)
  6. You should make sure (add) the following lines to this file: 
    1. export ATLAS_LOCAL_ROOT_BASE=/cvmfs/atlas.cern.ch/repo/ATLASLocalRootBase/
      export ALRB_localConfigDir=/code/localConfig
      . /cvmfs/atlas.cern.ch/repo/ATLASLocalRootBase/user/atlasLocalSetup.sh
  7. Save the file in emacs with Ctrl-X Ctrl-S, and then quit with Ctrl-X Ctrl-C.

...

  1. If you are not already familiar with ROOT there are many good tutorials on the web. I recommend this one. You can download ROOT, read the users manual, find support forums and more all at root.cern.ch. 
  2. On the UT ATLAS cluster, log off and log in again. The ATLAS setup scripts should now have run as you logged in and you should be able to setup ROOT with  {{ localSetupROOT}}
  3. Now you can start root with {{with root -l}}.
  4. At this point you should be able to follow the tutorial mentioned above. It comes with some introductory slidesthat  that you can check out. There are some files you'll need that you can grab with {{with wget -r --no-parent --reject "index.html*" http://www.nevis.columbia.edu/~seligman/root-class/files}} 

Analysis Software

The next steps will involve specific analysis software, and there are several possibilities (most require access to ATLAS webpages). 

...