Versions Compared

Key

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

...

Code Block
languagebash
condarel --addpkg --name pdsdata --tag HEAD
condarel --addpkg --name psddldata --tag HEAD
 
# we need this proxy to use pdsdata, shouldn't need to get it from master
condarel --addpkg --name pdsdata_ext
 
# we'll need these proxy packages for compiling the Translator
condarel --addpkg --name hdf5
condarel --addpkg --name openmpi

# we'll  need this proxy package to compile psddl_python 
condarel --addpkg --name python
 
# These are the packages that we will generate new code for, so we'll get them from head
 
# these are essential:
condarel --addpkg --name psddl_psana --tag HEAD
condarel --addpkg --name psddl_pds2psana --tag HEAD
condarel --addpkg --name psddl_python --tag HEAD


# psana_test is part of the testing system, and useful for dummping xtc files, but could be deprecated, probably no user uses it
condarel --addpkg --name psana_test         --tag HEAD       
 
# this if for the Translator
condarel --addpkg --name psddl_hdf2psana    --tag HEAD
condarel --addpkg --name Translator         --tag HEAD

pdsdata note

The code for pdsdata is checked out into the extpkgs subdir, if you need to modify or run svn log or things like that, cd into the appropriate directory

...