#!/bin/sh -f # # File produced by the obuild tool version 1.0 # for the package osc_snovis with version v1r0. # #//////////////////////////////////////////////// # Usage : # UNIX> cd some_path/project/version/obuild # ( UNIX> chmod a+x sh/build_release ) # UNIX> sh/build_release # #//////////////////////////////////////////////// #obuild_args="$*" obuild_verbose=no obuild_set_x=no obuild_erase_dir_bin=no while test $# -ge 1 ; do case $1 in -h) echo "Usage :" echo " UNIX> sh/release [Options]" echo "Options :" echo " -v : verbose." echo " -x : execute with set -x." echo "" exit ;; -v) obuild_verbose=yes ;; -x) obuild_set_x=yes ;; -e) obuild_erase_dir_bin=yes ;; -*) echo "unknwon option : $1" ; exit ;; esac shift done if [ ${obuild_set_x} = yes ] ; then set -x fi if [ "${OBUILD_PLATFORM}" = "" ] ; then obuild_platform=`uname` else obuild_platform=${OBUILD_PLATFORM} fi if [ "${obuild_platform}" = "" ] ; then echo "obuild_platform variable not defined." exit fi if [ "${OBUILD_DIR_BIN}" = "" ] ; then obuild_dir_bin=${obuild_platform}_obuild else obuild_dir_bin=${OBUILD_DIR_BIN} fi if [ "${obuild_dir_bin}" = "" ] ; then echo "obuild_dir_bin variable not defined." exit fi obuild_pwd=`pwd` obuild_osc_snovis_path=`dirname "${obuild_pwd}"` unset obuild_pwd if [ ${obuild_erase_dir_bin} = "yes" ] ; then /bin/rm -R -f "${obuild_osc_snovis_path}/${obuild_dir_bin}" exit fi # Create the bin directory : /bin/mkdir -p "${obuild_osc_snovis_path}/${obuild_dir_bin}" if [ ! -e "${obuild_osc_snovis_path}/${obuild_dir_bin}/obuild_platform" ] ; then if [ ! -e "${obuild_osc_snovis_path}/obuild/cpp/obuild_platform.cpp" ] ; then echo "Program source obuild_platform.cpp not found." exit fi if [ "${obuild_cxx_command}" = "" ] ; then if [ "${OBUILD_CXX}" != "" ] ; then obuild_platform_compiler=${OBUILD_CXX} else obuild_platform_compiler=c++ fi else obuild_platform_compiler=${obuild_cxx_command} fi ${obuild_platform_compiler} -o "${obuild_osc_snovis_path}/${obuild_dir_bin}/obuild_platform" "${obuild_osc_snovis_path}/obuild/cpp/obuild_platform.cpp" unset obuild_platform_compiler if [ ! -e "${obuild_osc_snovis_path}/${obuild_dir_bin}/obuild_platform" ] ; then echo "Program obuild_platform not found." exit fi fi obuild_platform_exe="${obuild_osc_snovis_path}/${obuild_dir_bin}/obuild_platform" if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then CERNLIB_home="/cern/pro" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then CERNLIB_home="C:\cern\pro" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then Motif_home="/usr/X11R6" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then Qt_home="/usr/local/Qt/4.1.4" fi unset obuild_platform_result if [ "${OBUILD_SITE}" = "CERN" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then Qt_home="/afs/cern.ch/sw/contrib/Qt/4.1.4/Darwin" fi unset obuild_platform_result fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then Qt_home="/usr/local/Qt/4.1.4" fi unset obuild_platform_result if [ "${OBUILD_SITE}" = "CERN" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then Qt_home="/afs/cern.ch/user/g/gybarran/software/Qt/4.1.4/slc3_ia32_gcc323" fi unset obuild_platform_result fi if [ "${OBUILD_SITE}" = "CERN_SLC4" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then Qt_home="/afs/cern.ch/user/g/gybarran/software/Qt/4.1.4/slc4_ia32_gcc34" fi unset obuild_platform_result fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then Qt_home="C:\usr\local\Qt\4.1.1" fi unset obuild_platform_result if [ "${OBUILD_SITE}" = "CERN" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then Qt_home="P:\cern.ch\user\g\gybarran\software\Qt\4.1.1\win32_vc71" fi unset obuild_platform_result fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then Python_home="/System/Library/Frameworks/Python.framework" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then Python_home="/usr/local/Python/2.4.2" fi unset obuild_platform_result if [ "${OBUILD_SITE}" = "CERN" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then Python_home="/afs/cern.ch/sw/lcg/external/Python/2.4.2/slc3_ia32_gcc323" fi unset obuild_platform_result fi if [ "${OBUILD_SITE}" = "CERN_SLC4" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then Python_home="/afs/cern.ch/sw/lcg/external/Python/2.4.2/slc4_ia32_gcc34" fi unset obuild_platform_result fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'OSF1'` if [ ${obuild_platform_result} = yes ] ; then Python_home="/usr/local/Python/2.3.4" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then Python_home="C:\usr\local\Python\2.4.2" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then Python_version="24" fi unset obuild_platform_result if [ "${OBUILD_SITE}" = "CERN" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then Python_home="P:\cern.ch\sw\lcg\external\Python\2.4.2\win32_vc71" fi unset obuild_platform_result fi if [ "${OBUILD_SITE}" = "CERN" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then Python_version="24" fi unset obuild_platform_result fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then SDL_home="/Library/Frameworks/SDL.framework" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then SDL_home="/usr/local/SDL/1.2.11" fi unset obuild_platform_result if [ "${OBUILD_SITE}" = "CERN" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then SDL_home="/afs/cern.ch/sw/contrib/SDL/1.2.11/slc3_ia32_gcc323" fi unset obuild_platform_result fi if [ "${OBUILD_SITE}" = "CERN_SLC4" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then SDL_home="/afs/cern.ch/sw/contrib/SDL/1.2.11/slc4_ia32_gcc34" fi unset obuild_platform_result fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then SDL_home="C:\usr\local\SDL\1.2.11" fi unset obuild_platform_result if [ "${OBUILD_SITE}" = "CERN" ] ; then if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then SDL_home="P:\cern.ch\sw\contrib\SDL\1.2.11\win32_vc71" fi unset obuild_platform_result fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then JavaVM_home="/System/Library/Frameworks/JavaVM.framework" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then JavaVM_home="/opt/jdk1.5.0_07" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then JavaVM_home="C:\usr\local\j2sdk1.4.1" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then CLHEP_home="/usr/local/CLHEP/2.0.3.1" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then Geant4_home="/usr/local/geant4/8.2" fi unset obuild_platform_result obuild_pwd_osc_snovis_0=`pwd` cd "${obuild_osc_snovis_path}/${obuild_dir_bin}" /bin/rm -R -f osc_snovis /bin/mkdir -p osc_snovis cd osc_snovis /bin/mkdir -p v1r0 cd v1r0 /bin/mkdir -p lib /bin/mkdir -p bin /bin/mkdir -p Resources /bin/mkdir -p tools obuild_dir_project=`pwd` /bin/rm -f "${obuild_dir_project}/Versions" echo "package foreign v1r0" >> "${obuild_dir_project}/Versions" echo "package expat v1r11p6" >> "${obuild_dir_project}/Versions" echo "package Slash v1r0p0" >> "${obuild_dir_project}/Versions" echo "package Lib v8r0" >> "${obuild_dir_project}/Versions" echo "package BatchLab v1r0" >> "${obuild_dir_project}/Versions" echo "package UseAIDA v1r0p2" >> "${obuild_dir_project}/Versions" echo "package osc_batch v16r0p0" >> "${obuild_dir_project}/Versions" echo "package CoinGL v1r244p0" >> "${obuild_dir_project}/Versions" echo "package CoinXt v1r122p0" >> "${obuild_dir_project}/Versions" echo "package CoinQt v1r130p0" >> "${obuild_dir_project}/Versions" echo "package CoinPython v1r0" >> "${obuild_dir_project}/Versions" echo "package HEPVis v6r6p0" >> "${obuild_dir_project}/Versions" echo "package OnX v17r0" >> "${obuild_dir_project}/Versions" echo "package OnXLab v1r0" >> "${obuild_dir_project}/Versions" echo "package OpenPAW v3r0" >> "${obuild_dir_project}/Versions" echo "package G4Lab v8r0p0" >> "${obuild_dir_project}/Versions" echo "package G4Simple v2r0p0" >> "${obuild_dir_project}/Versions" echo "package G4Examples v1r0" >> "${obuild_dir_project}/Versions" echo "package bhep v1r4p2" >> "${obuild_dir_project}/Versions" echo "package snova v2r0p0" >> "${obuild_dir_project}/Versions" echo "package snovis v1r1" >> "${obuild_dir_project}/Versions" echo "foreign Motif 2.2" >> "${obuild_dir_project}/Versions" if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then echo "foreign Qt 4.1.4" >> "${obuild_dir_project}/Versions" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then echo "foreign Qt 4.1.4" >> "${obuild_dir_project}/Versions" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then echo "foreign Qt 4.1.1" >> "${obuild_dir_project}/Versions" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then echo "foreign Python 2.3.5" >> "${obuild_dir_project}/Versions" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then echo "foreign Python 2.4.2" >> "${obuild_dir_project}/Versions" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'OSF1'` if [ ${obuild_platform_result} = yes ] ; then echo "foreign Python 2.3.4" >> "${obuild_dir_project}/Versions" fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then echo "foreign Python 2.4.2" >> "${obuild_dir_project}/Versions" fi unset obuild_platform_result echo "foreign CLHEP 2.0.3.1" >> "${obuild_dir_project}/Versions" echo "foreign Geant4 8.2" >> "${obuild_dir_project}/Versions" if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Motif_home}/lib" ] ; then echo "WARNNING : Directory ${Motif_home}/lib not found." else /bin/mkdir -p "${obuild_dir_project}/lib/." find "${Motif_home}/lib" -name 'libXm.so*' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "%Qt_home%\bin\moc.exe" ] ; then echo "WARNNING : File %Qt_home%\bin\moc.exe not found." else /bin/mkdir -p "${obuild_dir_project}/bin" /bin/cp "%Qt_home%\bin\moc.exe" "${obuild_dir_project}/bin\." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Qt_home}/osc_libs" ] ; then echo "WARNNING : Directory ${Qt_home}/osc_libs not found." else /bin/mkdir -p "${obuild_dir_project}/lib/." find "${Qt_home}/osc_libs" -name 'libQt*' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "%Qt_home%\bin" ] ; then echo "WARNNING : Directory %Qt_home%\bin not found." else /bin/mkdir -p "${obuild_dir_project}/bin\." find "%Qt_home%\bin" -name 'Qt*.dll' -follow -exec /bin/cp {} "${obuild_dir_project}/bin\." \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ -e "%Python_home%\python%Python_version%.dll" ] ; then /bin/cp "%Python_home%\python%Python_version%.dll" "%obuild_dir_project%\bin\." ;fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "%Python_home%\Lib" ] ; then echo "WARNNING : Directory %Python_home%\Lib not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Python/." /bin/cp -R "%Python_home%\Lib" "${obuild_dir_project}/Resources/Python/." find "${obuild_dir_project}/Resources/Python/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Python/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "%Python_home%\DLLs" ] ; then echo "WARNNING : Directory %Python_home%\DLLs not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Python/." /bin/cp -R "%Python_home%\DLLs" "${obuild_dir_project}/Resources/Python/." find "${obuild_dir_project}/Resources/Python/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Python/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Python_home}/lib" ] ; then echo "WARNNING : Directory ${Python_home}/lib not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Python/." /bin/cp -R "${Python_home}/lib" "${obuild_dir_project}/Resources/Python/." find "${obuild_dir_project}/Resources/Python/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Python/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Python_home}/lib" ] ; then echo "WARNNING : Directory ${Python_home}/lib not found." else /bin/mkdir -p "${obuild_dir_project}/lib/." find "${Python_home}/lib" -name 'libpython*.so.*' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${CLHEP_home}/lib/libCLHEP.dylib" ] ; then echo "WARNNING : File ${CLHEP_home}/lib/libCLHEP.dylib not found." else /bin/mkdir -p "${obuild_dir_project}/lib" /bin/cp "${CLHEP_home}/lib/libCLHEP.dylib" "${obuild_dir_project}/lib/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${CLHEP_home}/lib/libCLHEP-2.0.3.1.dylib" ] ; then echo "WARNNING : File ${CLHEP_home}/lib/libCLHEP-2.0.3.1.dylib not found." else /bin/mkdir -p "${obuild_dir_project}/lib" /bin/cp "${CLHEP_home}/lib/libCLHEP-2.0.3.1.dylib" "${obuild_dir_project}/lib/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${CLHEP_home}/lib/libCLHEP.so" ] ; then echo "WARNNING : File ${CLHEP_home}/lib/libCLHEP.so not found." else /bin/mkdir -p "${obuild_dir_project}/lib" /bin/cp "${CLHEP_home}/lib/libCLHEP.so" "${obuild_dir_project}/lib/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${CLHEP_home}/lib/libCLHEP-2.0.3.1.so" ] ; then echo "WARNNING : File ${CLHEP_home}/lib/libCLHEP-2.0.3.1.so not found." else /bin/mkdir -p "${obuild_dir_project}/lib" /bin/cp "${CLHEP_home}/lib/libCLHEP-2.0.3.1.so" "${obuild_dir_project}/lib/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${CLHEP_home}/include" ] ; then echo "WARNNING : Directory ${CLHEP_home}/include not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/CLHEP/." /bin/cp -R "${CLHEP_home}/include" "${obuild_dir_project}/Resources/CLHEP/." find "${obuild_dir_project}/Resources/CLHEP/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/CLHEP/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Geant4_home}/include" ] ; then echo "WARNNING : Directory ${Geant4_home}/include not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Geant4/." /bin/cp -R "${Geant4_home}/include" "${obuild_dir_project}/Resources/Geant4/." find "${obuild_dir_project}/Resources/Geant4/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Geant4/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Geant4_home}/data/G4NDL" ] ; then echo "WARNNING : Directory ${Geant4_home}/data/G4NDL not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Geant4/data/." /bin/cp -R "${Geant4_home}/data/G4NDL" "${obuild_dir_project}/Resources/Geant4/data/." find "${obuild_dir_project}/Resources/Geant4/data/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Geant4/data/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Geant4_home}/data/PhotonEvaporation" ] ; then echo "WARNNING : Directory ${Geant4_home}/data/PhotonEvaporation not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Geant4/data/." /bin/cp -R "${Geant4_home}/data/PhotonEvaporation" "${obuild_dir_project}/Resources/Geant4/data/." find "${obuild_dir_project}/Resources/Geant4/data/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Geant4/data/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Geant4_home}/data/RadioactiveDecay" ] ; then echo "WARNNING : Directory ${Geant4_home}/data/RadioactiveDecay not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Geant4/data/." /bin/cp -R "${Geant4_home}/data/RadioactiveDecay" "${obuild_dir_project}/Resources/Geant4/data/." find "${obuild_dir_project}/Resources/Geant4/data/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Geant4/data/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Geant4_home}/data/G4EMLOW" ] ; then echo "WARNNING : Directory ${Geant4_home}/data/G4EMLOW not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Geant4/data/." /bin/cp -R "${Geant4_home}/data/G4EMLOW" "${obuild_dir_project}/Resources/Geant4/data/." find "${obuild_dir_project}/Resources/Geant4/data/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Geant4/data/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Geant4_home}/lib" ] ; then echo "WARNNING : Directory ${Geant4_home}/lib not found." else /bin/mkdir -p "${obuild_dir_project}/lib/." find "${Geant4_home}/lib" -name 'libG4physicslists.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4readout.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4run.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4event.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4tracking.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4processes.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4digits_hits.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4track.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4particles.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4geometry.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4graphics_reps.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4materials.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4intercoms.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4global.dylib' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Linux'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${Geant4_home}/lib" ] ; then echo "WARNNING : Directory ${Geant4_home}/lib not found." else /bin/mkdir -p "${obuild_dir_project}/lib/." find "${Geant4_home}/lib" -name 'libG4physicslists.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4readout.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4run.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4event.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4tracking.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4processes.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4digits_hits.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4track.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4particles.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4geometry.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4graphics_reps.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4materials.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4intercoms.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; find "${Geant4_home}/lib" -name 'libG4global.so' -follow -exec /bin/cp {} "${obuild_dir_project}/lib/." \; fi fi unset obuild_platform_result if [ ! -e "${obuild_osc_snovis_path}/${obuild_dir_bin}/obuild_find" ] ; then if [ ! -e "${obuild_osc_snovis_path}/obuild/cpp/obuild_find.cpp" ] ; then echo "Program source obuild_find.cpp not found." exit fi if [ "${obuild_cxx_command}" = "" ] ; then if [ "${OBUILD_CXX}" != "" ] ; then obuild_find_compiler=${OBUILD_CXX} else obuild_find_compiler=c++ fi else obuild_find_compiler=${obuild_cxx_command} fi ${obuild_find_compiler} -o "${obuild_osc_snovis_path}/${obuild_dir_bin}/obuild_find" "${obuild_osc_snovis_path}/obuild/cpp/obuild_find.cpp" unset obuild_find_compiler if [ ! -e "${obuild_osc_snovis_path}/${obuild_dir_bin}/obuild_find" ] ; then echo "Program obuild_find not found." exit fi fi obuild_find_exe="${obuild_osc_snovis_path}/${obuild_dir_bin}/obuild_find" if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_foreign_path=`"${obuild_find_exe}" foreign 'v1r0'` if [ "${obuild_foreign_path}" = "" ] ; then echo "Can't find foreign package." exit fi if [ ! -d "${obuild_foreign_path}/../v1r0" ] ; then echo "WARNNING : Directory ${obuild_foreign_path}/../v1r0 not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/foreign/." /bin/cp -R "${obuild_foreign_path}/../v1r0" "${obuild_dir_project}/Resources/foreign/." find "${obuild_dir_project}/Resources/foreign/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/foreign/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_expat_path=`"${obuild_find_exe}" expat 'v1r11p6'` if [ "${obuild_expat_path}" = "" ] ; then echo "Can't find expat package." exit fi if [ ! -d "${obuild_expat_path}/include" ] ; then echo "WARNNING : Directory ${obuild_expat_path}/include not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/expat/." /bin/cp -R "${obuild_expat_path}/include" "${obuild_dir_project}/Resources/expat/." find "${obuild_dir_project}/Resources/expat/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/expat/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Slash_path=`"${obuild_find_exe}" Slash 'v1r0p0'` if [ "${obuild_Slash_path}" = "" ] ; then echo "Can't find Slash package." exit fi if [ ! -d "${obuild_Slash_path}/Slash" ] ; then echo "WARNNING : Directory ${obuild_Slash_path}/Slash not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Slash/." /bin/cp -R "${obuild_Slash_path}/Slash" "${obuild_dir_project}/Resources/Slash/." find "${obuild_dir_project}/Resources/Slash/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Slash/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/include" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/include not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/Lib/." /bin/cp -R "${obuild_Lib_path}/include" "${obuild_dir_project}/Resources/Lib/." find "${obuild_dir_project}/Resources/Lib/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/Lib/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/BatchLab/." /bin/cp -R "${obuild_BatchLab_path}/scripts" "${obuild_dir_project}/Resources/BatchLab/." find "${obuild_dir_project}/Resources/BatchLab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/BatchLab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_BatchLab_path}/examples" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/examples not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/BatchLab/." /bin/cp -R "${obuild_BatchLab_path}/examples" "${obuild_dir_project}/Resources/BatchLab/." find "${obuild_dir_project}/Resources/BatchLab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/BatchLab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_BatchLab_path}/BatchLab" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/BatchLab not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/BatchLab/." /bin/cp -R "${obuild_BatchLab_path}/BatchLab" "${obuild_dir_project}/Resources/BatchLab/." find "${obuild_dir_project}/Resources/BatchLab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/BatchLab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/examples/data" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/examples/data not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/AIDA/examples/." /bin/cp -R "${obuild_UseAIDA_path}/examples/data" "${obuild_dir_project}/Resources/AIDA/examples/." find "${obuild_dir_project}/Resources/AIDA/examples/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/AIDA/examples/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_UseAIDA_path}/examples/cpp" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/examples/cpp not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/AIDA/examples/." /bin/cp -R "${obuild_UseAIDA_path}/examples/cpp" "${obuild_dir_project}/Resources/AIDA/examples/." find "${obuild_dir_project}/Resources/AIDA/examples/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/AIDA/examples/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_osc_batch_path=`"${obuild_find_exe}" osc_batch 'v16r0p0'` if [ "${obuild_osc_batch_path}" = "" ] ; then echo "Can't find osc_batch package." exit fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/UNIX/setup.csh" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/UNIX/setup.csh not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/UNIX/setup.csh" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/UNIX/setup.sh" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/UNIX/setup.sh not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/UNIX/setup.sh" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/UNIX/aida-setup.csh" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/UNIX/aida-setup.csh not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/UNIX/aida-setup.csh" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/UNIX/aida-setup.sh" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/UNIX/aida-setup.sh not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/UNIX/aida-setup.sh" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/UNIX/install" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/UNIX/install not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/UNIX/install" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/UNIX/README" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/UNIX/README not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/UNIX/README" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/UNIX/aida-build-example" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/UNIX/aida-build-example not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/UNIX/aida-build-example" "${obuild_dir_project}/tools/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'UNIX'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/UNIX/aida-run-all-examples" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/UNIX/aida-run-all-examples not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/UNIX/aida-run-all-examples" "${obuild_dir_project}/tools/." fi fi unset obuild_platform_result if [ ! -e "${obuild_osc_batch_path}/obuild/release/License" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/License not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/License" "${obuild_dir_project}/." fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/Windows_NT/setup.bat" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/Windows_NT/setup.bat not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/Windows_NT/setup.bat" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-setup.bat" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-setup.bat not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-setup.bat" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/Windows_NT/README" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/Windows_NT/README not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/Windows_NT/README" "${obuild_dir_project}/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-build-example.bat" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-build-example.bat not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-build-example.bat" "${obuild_dir_project}/tools/." fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Windows_NT'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -e "${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-run-all-examples.bat" ] ; then echo "WARNNING : File ${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-run-all-examples.bat not found." else /bin/cp "${obuild_osc_batch_path}/obuild/release/Windows_NT/aida-run-all-examples.bat" "${obuild_dir_project}/tools/." fi fi unset obuild_platform_result if [ ! -d "${obuild_osc_batch_path}/../../AIDA/v3r2p1/src/cpp/AIDA" ] ; then echo "WARNNING : Directory ${obuild_osc_batch_path}/../../AIDA/v3r2p1/src/cpp/AIDA not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/AIDA/src/cpp/." /bin/cp -R "${obuild_osc_batch_path}/../../AIDA/v3r2p1/src/cpp/AIDA" "${obuild_dir_project}/Resources/AIDA/src/cpp/." find "${obuild_dir_project}/Resources/AIDA/src/cpp/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/AIDA/src/cpp/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinGL_path=`"${obuild_find_exe}" CoinGL 'v1r244p0'` if [ "${obuild_CoinGL_path}" = "" ] ; then echo "Can't find CoinGL package." exit fi if [ ! -d "${obuild_CoinGL_path}/include" ] ; then echo "WARNNING : Directory ${obuild_CoinGL_path}/include not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/CoinGL/." /bin/cp -R "${obuild_CoinGL_path}/include" "${obuild_dir_project}/Resources/CoinGL/." find "${obuild_dir_project}/Resources/CoinGL/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/CoinGL/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinPython_path=`"${obuild_find_exe}" CoinPython 'v1r0'` if [ "${obuild_CoinPython_path}" = "" ] ; then echo "Can't find CoinPython package." exit fi if [ ! -d "${obuild_CoinPython_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_CoinPython_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/CoinPython/." /bin/cp -R "${obuild_CoinPython_path}/scripts" "${obuild_dir_project}/Resources/CoinPython/." find "${obuild_dir_project}/Resources/CoinPython/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/CoinPython/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/HEPVis/." /bin/cp -R "${obuild_HEPVis_path}/scripts" "${obuild_dir_project}/Resources/HEPVis/." find "${obuild_dir_project}/Resources/HEPVis/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/HEPVis/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_HEPVis_path}/fonts" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/fonts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/HEPVis/." /bin/cp -R "${obuild_HEPVis_path}/fonts" "${obuild_dir_project}/Resources/HEPVis/." find "${obuild_dir_project}/Resources/HEPVis/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/HEPVis/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_HEPVis_path}/include" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/include not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/HEPVis/." /bin/cp -R "${obuild_HEPVis_path}/include" "${obuild_dir_project}/Resources/HEPVis/." find "${obuild_dir_project}/Resources/HEPVis/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/HEPVis/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OnX/." /bin/cp -R "${obuild_OnX_path}/scripts" "${obuild_dir_project}/Resources/OnX/." find "${obuild_dir_project}/Resources/OnX/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OnX/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_OnX_path}/examples" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/examples not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OnX/." /bin/cp -R "${obuild_OnX_path}/examples" "${obuild_dir_project}/Resources/OnX/." find "${obuild_dir_project}/Resources/OnX/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OnX/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_OnX_path}/include" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/include not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OnX/." /bin/cp -R "${obuild_OnX_path}/include" "${obuild_dir_project}/Resources/OnX/." find "${obuild_dir_project}/Resources/OnX/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OnX/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_OnX_path}/templates" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/templates not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OnX/." /bin/cp -R "${obuild_OnX_path}/templates" "${obuild_dir_project}/Resources/OnX/." find "${obuild_dir_project}/Resources/OnX/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OnX/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OnXLab/." /bin/cp -R "${obuild_OnXLab_path}/scripts" "${obuild_dir_project}/Resources/OnXLab/." find "${obuild_dir_project}/Resources/OnXLab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OnXLab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_OnXLab_path}/examples" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/examples not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OnXLab/." /bin/cp -R "${obuild_OnXLab_path}/examples" "${obuild_dir_project}/Resources/OnXLab/." find "${obuild_dir_project}/Resources/OnXLab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OnXLab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_OnXLab_path}/OnXLab" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/OnXLab not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OnXLab/." /bin/cp -R "${obuild_OnXLab_path}/OnXLab" "${obuild_dir_project}/Resources/OnXLab/." find "${obuild_dir_project}/Resources/OnXLab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OnXLab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${obuild_OnXLab_path}/Darwin_obuild/OnXLab_onx.app" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/Darwin_obuild/OnXLab_onx.app not found." else /bin/mkdir -p "${obuild_dir_project}/../../." /bin/cp -R "${obuild_OnXLab_path}/Darwin_obuild/OnXLab_onx.app" "${obuild_dir_project}/../../." find "${obuild_dir_project}/../../." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/../../." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${obuild_OnXLab_path}/Darwin_obuild/OnXLab_oqt.app" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/Darwin_obuild/OnXLab_oqt.app not found." else /bin/mkdir -p "${obuild_dir_project}/../../." /bin/cp -R "${obuild_OnXLab_path}/Darwin_obuild/OnXLab_oqt.app" "${obuild_dir_project}/../../." find "${obuild_dir_project}/../../." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/../../." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OpenPAW_path=`"${obuild_find_exe}" OpenPAW 'v3r0'` if [ "${obuild_OpenPAW_path}" = "" ] ; then echo "Can't find OpenPAW package." exit fi if [ ! -d "${obuild_OpenPAW_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_OpenPAW_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OpenPAW/." /bin/cp -R "${obuild_OpenPAW_path}/scripts" "${obuild_dir_project}/Resources/OpenPAW/." find "${obuild_dir_project}/Resources/OpenPAW/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OpenPAW/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_OpenPAW_path}/examples" ] ; then echo "WARNNING : Directory ${obuild_OpenPAW_path}/examples not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/OpenPAW/." /bin/cp -R "${obuild_OpenPAW_path}/examples" "${obuild_dir_project}/Resources/OpenPAW/." find "${obuild_dir_project}/Resources/OpenPAW/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/OpenPAW/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${obuild_OpenPAW_path}/Darwin_obuild/OpenPAW_opaw.app" ] ; then echo "WARNNING : Directory ${obuild_OpenPAW_path}/Darwin_obuild/OpenPAW_opaw.app not found." else /bin/mkdir -p "${obuild_dir_project}/../../." /bin/cp -R "${obuild_OpenPAW_path}/Darwin_obuild/OpenPAW_opaw.app" "${obuild_dir_project}/../../." find "${obuild_dir_project}/../../." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/../../." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/G4Lab/." /bin/cp -R "${obuild_G4Lab_path}/scripts" "${obuild_dir_project}/Resources/G4Lab/." find "${obuild_dir_project}/Resources/G4Lab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/G4Lab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_G4Lab_path}/include" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/include not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/G4Lab/." /bin/cp -R "${obuild_G4Lab_path}/include" "${obuild_dir_project}/Resources/G4Lab/." find "${obuild_dir_project}/Resources/G4Lab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/G4Lab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ ! -d "${obuild_G4Lab_path}/templates" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/templates not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/G4Lab/." /bin/cp -R "${obuild_G4Lab_path}/templates" "${obuild_dir_project}/Resources/G4Lab/." find "${obuild_dir_project}/Resources/G4Lab/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/G4Lab/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Simple_path=`"${obuild_find_exe}" G4Simple 'v2r0p0'` if [ "${obuild_G4Simple_path}" = "" ] ; then echo "Can't find G4Simple package." exit fi if [ ! -d "${obuild_G4Simple_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_G4Simple_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/G4Simple/." /bin/cp -R "${obuild_G4Simple_path}/scripts" "${obuild_dir_project}/Resources/G4Simple/." find "${obuild_dir_project}/Resources/G4Simple/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/G4Simple/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/G4Examples/." /bin/cp -R "${obuild_G4Examples_path}/scripts" "${obuild_dir_project}/Resources/G4Examples/." find "${obuild_dir_project}/Resources/G4Examples/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/G4Examples/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snovis_path=`"${obuild_find_exe}" snovis 'v1r1'` if [ "${obuild_snovis_path}" = "" ] ; then echo "Can't find snovis package." exit fi if [ ! -d "${obuild_snovis_path}/scripts" ] ; then echo "WARNNING : Directory ${obuild_snovis_path}/scripts not found." else /bin/mkdir -p "${obuild_dir_project}/Resources/snovis/." /bin/cp -R "${obuild_snovis_path}/scripts" "${obuild_dir_project}/Resources/snovis/." find "${obuild_dir_project}/Resources/snovis/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/Resources/snovis/." -depth -name .svn -exec /bin/rm -R -f {} \; fi if [ "${obuild_platform_exe}" = "" ] ; then echo "Variable obuild_platform_exe not defined." exit fi obuild_platform_result=`"${obuild_platform_exe}" ${obuild_platform} 'Darwin'` if [ ${obuild_platform_result} = yes ] ; then if [ ! -d "${obuild_snovis_path}/Darwin_obuild/snovis_session.app" ] ; then echo "WARNNING : Directory ${obuild_snovis_path}/Darwin_obuild/snovis_session.app not found." else /bin/mkdir -p "${obuild_dir_project}/." /bin/cp -R "${obuild_snovis_path}/Darwin_obuild/snovis_session.app" "${obuild_dir_project}/." find "${obuild_dir_project}/." -depth -name CVS -exec /bin/rm -R -f {} \; find "${obuild_dir_project}/." -depth -name .svn -exec /bin/rm -R -f {} \; fi fi unset obuild_platform_result if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_zlib_path=`"${obuild_find_exe}" zlib 'v1r114p3'` if [ "${obuild_zlib_path}" = "" ] ; then echo "Can't find zlib package." exit fi if [ ! -d "${obuild_zlib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_zlib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_zlib_path}/${obuild_dir_bin}/libosc_z.dylib" ] ; then /bin/cp "${obuild_zlib_path}/${obuild_dir_bin}/libosc_z.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_zlib_path}/${obuild_dir_bin}/libosc_z.so" ] ; then /bin/cp "${obuild_zlib_path}/${obuild_dir_bin}/libosc_z.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_expat_path=`"${obuild_find_exe}" expat 'v1r11p6'` if [ "${obuild_expat_path}" = "" ] ; then echo "Can't find expat package." exit fi if [ ! -d "${obuild_expat_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_expat_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_expat_path}/${obuild_dir_bin}/libosc_expat.dylib" ] ; then /bin/cp "${obuild_expat_path}/${obuild_dir_bin}/libosc_expat.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_expat_path}/${obuild_dir_bin}/libosc_expat.so" ] ; then /bin/cp "${obuild_expat_path}/${obuild_dir_bin}/libosc_expat.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibUtils.dylib" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibUtils.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibUtils.so" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibUtils.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibZip.dylib" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibZip.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibZip.so" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibZip.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibXML.dylib" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibXML.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibXML.so" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibXML.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibSocket.dylib" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibSocket.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibSocket.so" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibSocket.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HCL_path=`"${obuild_find_exe}" HCL 'v7r0'` if [ "${obuild_HCL_path}" = "" ] ; then echo "Can't find HCL package." exit fi if [ ! -d "${obuild_HCL_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HCL_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HCL_path}/${obuild_dir_bin}/libHCL.dylib" ] ; then /bin/cp "${obuild_HCL_path}/${obuild_dir_bin}/libHCL.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HCL_path}/${obuild_dir_bin}/libHCL.so" ] ; then /bin/cp "${obuild_HCL_path}/${obuild_dir_bin}/libHCL.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Midnight_path=`"${obuild_find_exe}" Midnight 'v4r0p0'` if [ "${obuild_Midnight_path}" = "" ] ; then echo "Can't find Midnight package." exit fi if [ ! -d "${obuild_Midnight_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Midnight_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Midnight_path}/${obuild_dir_bin}/libMidnight.dylib" ] ; then /bin/cp "${obuild_Midnight_path}/${obuild_dir_bin}/libMidnight.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_Midnight_path}/${obuild_dir_bin}/libMidnight.so" ] ; then /bin/cp "${obuild_Midnight_path}/${obuild_dir_bin}/libMidnight.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/libosc_Minuit.dylib" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/libosc_Minuit.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/libosc_Minuit.so" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/libosc_Minuit.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Rio_path=`"${obuild_find_exe}" Rio 'v7r1'` if [ "${obuild_Rio_path}" = "" ] ; then echo "Can't find Rio package." exit fi if [ ! -d "${obuild_Rio_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Rio_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Rio_path}/${obuild_dir_bin}/libRio.dylib" ] ; then /bin/cp "${obuild_Rio_path}/${obuild_dir_bin}/libRio.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_Rio_path}/${obuild_dir_bin}/libRio.so" ] ; then /bin/cp "${obuild_Rio_path}/${obuild_dir_bin}/libRio.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HDF5_path=`"${obuild_find_exe}" HDF5 'v1r165p2'` if [ "${obuild_HDF5_path}" = "" ] ; then echo "Can't find HDF5 package." exit fi if [ ! -d "${obuild_HDF5_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HDF5_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HDF5_path}/${obuild_dir_bin}/libosc_HDF5.dylib" ] ; then /bin/cp "${obuild_HDF5_path}/${obuild_dir_bin}/libosc_HDF5.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HDF5_path}/${obuild_dir_bin}/libosc_HDF5.so" ] ; then /bin/cp "${obuild_HDF5_path}/${obuild_dir_bin}/libosc_HDF5.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabCore.dylib" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabCore.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabCore.so" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabCore.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabAIDA.dylib" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabAIDA.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabAIDA.so" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabAIDA.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabHBOOK.dylib" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabHBOOK.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabHBOOK.so" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabHBOOK.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_jpeg_path=`"${obuild_find_exe}" jpeg 'v1r62p1'` if [ "${obuild_jpeg_path}" = "" ] ; then echo "Can't find jpeg package." exit fi if [ ! -d "${obuild_jpeg_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_jpeg_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_jpeg_path}/${obuild_dir_bin}/libosc_jpeg.dylib" ] ; then /bin/cp "${obuild_jpeg_path}/${obuild_dir_bin}/libosc_jpeg.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_jpeg_path}/${obuild_dir_bin}/libosc_jpeg.so" ] ; then /bin/cp "${obuild_jpeg_path}/${obuild_dir_bin}/libosc_jpeg.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_dvi2bitmap_path=`"${obuild_find_exe}" dvi2bitmap 'v1r0132p1'` if [ "${obuild_dvi2bitmap_path}" = "" ] ; then echo "Can't find dvi2bitmap package." exit fi if [ ! -d "${obuild_dvi2bitmap_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_dvi2bitmap_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/libosc_dvi2bitmap.dylib" ] ; then /bin/cp "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/libosc_dvi2bitmap.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/libosc_dvi2bitmap.so" ] ; then /bin/cp "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/libosc_dvi2bitmap.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_freetype2_path=`"${obuild_find_exe}" freetype2 'v1r219p0'` if [ "${obuild_freetype2_path}" = "" ] ; then echo "Can't find freetype2 package." exit fi if [ ! -d "${obuild_freetype2_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_freetype2_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_freetype2_path}/${obuild_dir_bin}/libosc_freetype2.dylib" ] ; then /bin/cp "${obuild_freetype2_path}/${obuild_dir_bin}/libosc_freetype2.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_freetype2_path}/${obuild_dir_bin}/libosc_freetype2.so" ] ; then /bin/cp "${obuild_freetype2_path}/${obuild_dir_bin}/libosc_freetype2.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinGL_path=`"${obuild_find_exe}" CoinGL 'v1r244p0'` if [ "${obuild_CoinGL_path}" = "" ] ; then echo "Can't find CoinGL package." exit fi if [ ! -d "${obuild_CoinGL_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinGL_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinGL_path}/${obuild_dir_bin}/libosc_Coin.dylib" ] ; then /bin/cp "${obuild_CoinGL_path}/${obuild_dir_bin}/libosc_Coin.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_CoinGL_path}/${obuild_dir_bin}/libosc_Coin.so" ] ; then /bin/cp "${obuild_CoinGL_path}/${obuild_dir_bin}/libosc_Coin.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinXt_path=`"${obuild_find_exe}" CoinXt 'v1r122p0'` if [ "${obuild_CoinXt_path}" = "" ] ; then echo "Can't find CoinXt package." exit fi if [ ! -d "${obuild_CoinXt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinXt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/libCoinXt.dylib" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/libCoinXt.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/libCoinXt.so" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/libCoinXt.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinQt_path=`"${obuild_find_exe}" CoinQt 'v1r130p0'` if [ "${obuild_CoinQt_path}" = "" ] ; then echo "Can't find CoinQt package." exit fi if [ ! -d "${obuild_CoinQt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinQt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinQt_path}/${obuild_dir_bin}/libCoinQt.dylib" ] ; then /bin/cp "${obuild_CoinQt_path}/${obuild_dir_bin}/libCoinQt.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_CoinQt_path}/${obuild_dir_bin}/libCoinQt.so" ] ; then /bin/cp "${obuild_CoinQt_path}/${obuild_dir_bin}/libCoinQt.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisUtils.dylib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisUtils.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisUtils.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisUtils.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisGeometry.dylib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisGeometry.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisGeometry.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisGeometry.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisDetector.dylib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisDetector.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisDetector.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisDetector.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisGUI.dylib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisGUI.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisGUI.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisGUI.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisPlotter.dylib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisPlotter.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisPlotter.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisPlotter.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisXt.dylib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisXt.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisXt.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisXt.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisQt.dylib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisQt.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisQt.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisQt.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisSDL.dylib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisSDL.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisSDL.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVisSDL.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_KUIP_path=`"${obuild_find_exe}" KUIP 'v1r950303p16'` if [ "${obuild_KUIP_path}" = "" ] ; then echo "Can't find KUIP package." exit fi if [ ! -d "${obuild_KUIP_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_KUIP_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_KUIP_path}/${obuild_dir_bin}/libKUIP.dylib" ] ; then /bin/cp "${obuild_KUIP_path}/${obuild_dir_bin}/libKUIP.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_KUIP_path}/${obuild_dir_bin}/libKUIP.so" ] ; then /bin/cp "${obuild_KUIP_path}/${obuild_dir_bin}/libKUIP.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXCore.dylib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXCore.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXCore.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXCore.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXInventor.dylib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXInventor.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXInventor.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXInventor.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXXtCore.dylib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXXtCore.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXXtCore.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXXtCore.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXQtCore.dylib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXQtCore.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXQtCore.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXQtCore.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java_jar.dylib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java_jar.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java_jar.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java_jar.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabCore.dylib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabCore.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabCore.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabCore.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabAIDA.dylib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabAIDA.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabAIDA.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabAIDA.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java_jar.dylib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java_jar.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java_jar.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java_jar.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabHDUMMY.dylib" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabHDUMMY.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabHDUMMY.so" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabHDUMMY.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabCore.dylib" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabCore.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabCore.so" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabCore.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabUIOnX.dylib" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabUIOnX.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabUIOnX.so" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4LabUIOnX.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Simple_path=`"${obuild_find_exe}" G4Simple 'v2r0p0'` if [ "${obuild_G4Simple_path}" = "" ] ; then echo "Can't find G4Simple package." exit fi if [ ! -d "${obuild_G4Simple_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Simple_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4SimpleCore.dylib" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4SimpleCore.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4SimpleCore.so" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4SimpleCore.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N02Core.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N02Core.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N02Core.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N02Core.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N03Core.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N03Core.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N03Core.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N03Core.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N04Core.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N04Core.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N04Core.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N04Core.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N05Core.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N05Core.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N05Core.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N05Core.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N06Core.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N06Core.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N06Core.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N06Core.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N07Core.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N07Core.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N07Core.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_N07Core.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_AnaEx01Core.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_AnaEx01Core.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_AnaEx01Core.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_AnaEx01Core.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_A01Core.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_A01Core.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_A01Core.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_A01Core.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_gammaray_telescopeCore.dylib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_gammaray_telescopeCore.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_gammaray_telescopeCore.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples_gammaray_telescopeCore.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_bhep_path=`"${obuild_find_exe}" bhep 'v1r4p2'` if [ "${obuild_bhep_path}" = "" ] ; then echo "Can't find bhep package." exit fi if [ ! -d "${obuild_bhep_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_bhep_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_bhep_path}/${obuild_dir_bin}/libbhep.dylib" ] ; then /bin/cp "${obuild_bhep_path}/${obuild_dir_bin}/libbhep.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_bhep_path}/${obuild_dir_bin}/libbhep.so" ] ; then /bin/cp "${obuild_bhep_path}/${obuild_dir_bin}/libbhep.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snova_path=`"${obuild_find_exe}" snova 'v2r0p0'` if [ "${obuild_snova_path}" = "" ] ; then echo "Can't find snova package." exit fi if [ ! -d "${obuild_snova_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_snova_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_snova_path}/${obuild_dir_bin}/libgeomutils.dylib" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/libgeomutils.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_snova_path}/${obuild_dir_bin}/libgeomutils.so" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/libgeomutils.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snova_path=`"${obuild_find_exe}" snova 'v2r0p0'` if [ "${obuild_snova_path}" = "" ] ; then echo "Can't find snova package." exit fi if [ ! -d "${obuild_snova_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_snova_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_snova_path}/${obuild_dir_bin}/libsngeom.dylib" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/libsngeom.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_snova_path}/${obuild_dir_bin}/libsngeom.so" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/libsngeom.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snova_path=`"${obuild_find_exe}" snova 'v2r0p0'` if [ "${obuild_snova_path}" = "" ] ; then echo "Can't find snova package." exit fi if [ ! -d "${obuild_snova_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_snova_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_snova_path}/${obuild_dir_bin}/libsnvertex.dylib" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/libsnvertex.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_snova_path}/${obuild_dir_bin}/libsnvertex.so" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/libsnvertex.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snova_path=`"${obuild_find_exe}" snova 'v2r0p0'` if [ "${obuild_snova_path}" = "" ] ; then echo "Can't find snova package." exit fi if [ ! -d "${obuild_snova_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_snova_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_snova_path}/${obuild_dir_bin}/libsnova.dylib" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/libsnova.dylib" "${obuild_dir_project}/lib/." ;fi if [ -e "${obuild_snova_path}/${obuild_dir_bin}/libsnova.so" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/libsnova.so" "${obuild_dir_project}/lib/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/LibTest.bundle" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/LibTest.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibTest.jnilib" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibTest.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/libLibTest.so" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/libLibTest.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabLoadAIDA.bundle" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabLoadAIDA.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabLoadAIDA.jnilib" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabLoadAIDA.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabLoadAIDA.so" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabLoadAIDA.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabRio.bundle" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabRio.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabRio.jnilib" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabRio.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabRio.so" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabRio.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabXML.bundle" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabXML.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabXML.jnilib" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabXML.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabXML.so" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabXML.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabHDF5.bundle" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabHDF5.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabHDF5.jnilib" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabHDF5.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabHDF5.so" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabHDF5.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabZebra.bundle" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLabZebra.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabZebra.jnilib" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabZebra.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabZebra.so" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/libBatchLabZebra.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinPython_path=`"${obuild_find_exe}" CoinPython 'v1r0'` if [ "${obuild_CoinPython_path}" = "" ] ; then echo "Can't find CoinPython package." exit fi if [ ! -d "${obuild_CoinPython_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinPython_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinPython_path}/${obuild_dir_bin}/CoinPython.bundle" ] ; then /bin/cp "${obuild_CoinPython_path}/${obuild_dir_bin}/CoinPython.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinPython_path}/${obuild_dir_bin}/_CoinPython.so" ] ; then /bin/cp "${obuild_CoinPython_path}/${obuild_dir_bin}/_CoinPython.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinPython_path}/${obuild_dir_bin}/libCoinPython.jnilib" ] ; then /bin/cp "${obuild_CoinPython_path}/${obuild_dir_bin}/libCoinPython.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinPython_path}/${obuild_dir_bin}/libCoinPython.so" ] ; then /bin/cp "${obuild_CoinPython_path}/${obuild_dir_bin}/libCoinPython.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_SWIG_Python.bundle" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_SWIG_Python.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_SWIG_Python.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_SWIG_Python.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVis_SWIG_Python.jnilib" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVis_SWIG_Python.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVis_SWIG_Python.so" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/libHEPVis_SWIG_Python.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnXSession.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnXSession.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXSession.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXSession.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXSession.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXSession.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnXTestDLD.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnXTestDLD.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXTestDLD.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXTestDLD.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXTestDLD.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXTestDLD.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnXXt.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnXXt.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXXt.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXXt.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXXt.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXXt.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnXQt.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnXQt.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXQt.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXQt.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXQt.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXQt.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Lib.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Lib.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Lib.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Lib.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Lib.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Lib.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Lib.save" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Lib.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_OpenGL.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_OpenGL.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_OpenGL.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_OpenGL.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_OpenGL.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_OpenGL.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_OpenGL.save" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_OpenGL.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Inventor.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Inventor.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Inventor.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Inventor.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Inventor.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Inventor.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Inventor.save" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Inventor.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnXKUIP.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnXKUIP.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXKUIP.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXKUIP.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXKUIP.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXKUIP.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnXPython.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnXPython.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXPython.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXPython.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXPython.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXPython.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_SWIG_Python.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_SWIG_Python.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_SWIG_Python.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_SWIG_Python.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Python.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Python.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Python.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Python.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Python.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Python.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Python.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Python.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Python.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_config_Python.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Python.save" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_config_Python.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnXJava.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnXJava.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXJava.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXJava.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnXJava.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnXJava.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_SWIG_Java.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_SWIG_Java.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java.jnilib.bundle" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java.jnilib.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java.jnilib" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/libOnX_SWIG_Java.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/liblibOnX_SWIG_Java.jnilib.so" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/liblibOnX_SWIG_Java.jnilib.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLabInventor.bundle" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLabInventor.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabInventor.jnilib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabInventor.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabInventor.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabInventor.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLabLoadAIDA.bundle" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLabLoadAIDA.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabLoadAIDA.jnilib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabLoadAIDA.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabLoadAIDA.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabLoadAIDA.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab.bundle" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/Lab.bundle" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/Lab.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab.jnilib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libLab.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libLab.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLabKUIP.bundle" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLabKUIP.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabKUIP.jnilib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabKUIP.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabKUIP.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLabKUIP.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_SWIG_Python.bundle" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_SWIG_Python.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_SWIG_Python.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_SWIG_Python.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Python.jnilib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Python.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Python.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Python.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_SWIG_Java.bundle" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_SWIG_Java.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java.jnilib.bundle" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java.jnilib.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java.jnilib" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/libOnXLab_SWIG_Java.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/liblibOnXLab_SWIG_Java.jnilib.so" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/liblibOnXLab_SWIG_Java.jnilib.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OpenPAW_path=`"${obuild_find_exe}" OpenPAW 'v3r0'` if [ "${obuild_OpenPAW_path}" = "" ] ; then echo "Can't find OpenPAW package." exit fi if [ ! -d "${obuild_OpenPAW_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OpenPAW_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OpenPAW_path}/${obuild_dir_bin}/OpenPAW.bundle" ] ; then /bin/cp "${obuild_OpenPAW_path}/${obuild_dir_bin}/OpenPAW.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OpenPAW_path}/${obuild_dir_bin}/libOpenPAW.jnilib" ] ; then /bin/cp "${obuild_OpenPAW_path}/${obuild_dir_bin}/libOpenPAW.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OpenPAW_path}/${obuild_dir_bin}/libOpenPAW.so" ] ; then /bin/cp "${obuild_OpenPAW_path}/${obuild_dir_bin}/libOpenPAW.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab.bundle" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab.jnilib" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab.so" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config_Geant4.bundle" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config_Geant4.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config_Geant4.jnilib" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config_Geant4.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config_Geant4.so" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config_Geant4.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config_Geant4.save" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config_Geant4.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config_physics_lists.bundle" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config_physics_lists.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config_physics_lists.jnilib" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config_physics_lists.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config_physics_lists.so" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config_physics_lists.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config_physics_lists.save" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config_physics_lists.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config.bundle" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config.jnilib" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config.so" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/libG4Lab_config.so" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config.save" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_config.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Simple_path=`"${obuild_find_exe}" G4Simple 'v2r0p0'` if [ "${obuild_G4Simple_path}" = "" ] ; then echo "Can't find G4Simple package." exit fi if [ ! -d "${obuild_G4Simple_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Simple_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/G4SimpleOnX.bundle" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/G4SimpleOnX.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4SimpleOnX.jnilib" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4SimpleOnX.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4SimpleOnX.so" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4SimpleOnX.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Simple_path=`"${obuild_find_exe}" G4Simple 'v2r0p0'` if [ "${obuild_G4Simple_path}" = "" ] ; then echo "Can't find G4Simple package." exit fi if [ ! -d "${obuild_G4Simple_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Simple_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/G4Simple.bundle" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/G4Simple.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4Simple.jnilib" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4Simple.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4Simple.so" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/libG4Simple.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples.bundle" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples.jnilib" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples.so" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/libG4Examples.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snovis_path=`"${obuild_find_exe}" snovis 'v1r1'` if [ "${obuild_snovis_path}" = "" ] ; then echo "Can't find snovis package." exit fi if [ ! -d "${obuild_snovis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_snovis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_snovis_path}/${obuild_dir_bin}/snovis.bundle" ] ; then /bin/cp "${obuild_snovis_path}/${obuild_dir_bin}/snovis.bundle" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_snovis_path}/${obuild_dir_bin}/libsnovis.jnilib" ] ; then /bin/cp "${obuild_snovis_path}/${obuild_dir_bin}/libsnovis.jnilib" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_snovis_path}/${obuild_dir_bin}/libsnovis.so" ] ; then /bin/cp "${obuild_snovis_path}/${obuild_dir_bin}/libsnovis.so" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_obuild_path=`"${obuild_find_exe}" obuild 'v1r0'` if [ "${obuild_obuild_path}" = "" ] ; then echo "Can't find obuild package." exit fi if [ ! -d "${obuild_obuild_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_obuild_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_obuild_path}/${obuild_dir_bin}/owrap" ] ; then /bin/cp "${obuild_obuild_path}/${obuild_dir_bin}/owrap" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_obuild_path=`"${obuild_find_exe}" obuild 'v1r0'` if [ "${obuild_obuild_path}" = "" ] ; then echo "Can't find obuild package." exit fi if [ ! -d "${obuild_obuild_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_obuild_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_obuild_path}/${obuild_dir_bin}/obuild" ] ; then /bin/cp "${obuild_obuild_path}/${obuild_dir_bin}/obuild" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_zlib_path=`"${obuild_find_exe}" zlib 'v1r114p3'` if [ "${obuild_zlib_path}" = "" ] ; then echo "Can't find zlib package." exit fi if [ ! -d "${obuild_zlib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_zlib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_zlib_path}/${obuild_dir_bin}/zlib_example" ] ; then /bin/cp "${obuild_zlib_path}/${obuild_dir_bin}/zlib_example" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_zlib_path=`"${obuild_find_exe}" zlib 'v1r114p3'` if [ "${obuild_zlib_path}" = "" ] ; then echo "Can't find zlib package." exit fi if [ ! -d "${obuild_zlib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_zlib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_zlib_path}/${obuild_dir_bin}/zlib_minigzip" ] ; then /bin/cp "${obuild_zlib_path}/${obuild_dir_bin}/zlib_minigzip" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_expat_path=`"${obuild_find_exe}" expat 'v1r11p6'` if [ "${obuild_expat_path}" = "" ] ; then echo "Can't find expat package." exit fi if [ ! -d "${obuild_expat_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_expat_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_expat_path}/${obuild_dir_bin}/expat_example" ] ; then /bin/cp "${obuild_expat_path}/${obuild_dir_bin}/expat_example" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_tab" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_tab" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_sizeof" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_sizeof" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_endian" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_endian" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_whereami" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_whereami" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_subs" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_subs" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_run" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_run" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_clone" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_clone" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_upgrade" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_upgrade" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_find" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_find" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_wrap" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_wrap" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_dld" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_dld" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_cxx" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_cxx" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_f77" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_f77" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_STL" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_STL" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_accessorManager" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_accessorManager" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_array" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_array" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_colormanip" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_colormanip" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_columns" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_columns" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_contour" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_contour" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_debug" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_debug" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_dirmanip" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_dirmanip" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_extern" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_extern" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_fortran_format" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_fortran_format" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_functionManager" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_functionManager" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_functions" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_functions" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_home" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_home" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_parameters" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_parameters" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_paw_set_opt" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_paw_set_opt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_prime" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_prime" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_processor" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_processor" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_rio_sinfo" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_rio_sinfo" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_smanip" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_smanip" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_symbolic" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_symbolic" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_args" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_args" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_algebra" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_algebra" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_phys" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_phys" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_baker_hausdorf" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_baker_hausdorf" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_objectML" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_objectML" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_xml" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_xml" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_zip" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_zip" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_client" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_client" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Lib_path=`"${obuild_find_exe}" Lib 'v8r0'` if [ "${obuild_Lib_path}" = "" ] ; then echo "Can't find Lib package." exit fi if [ ! -d "${obuild_Lib_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Lib_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_server" ] ; then /bin/cp "${obuild_Lib_path}/${obuild_dir_bin}/Lib_test_server" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HCL_path=`"${obuild_find_exe}" HCL 'v7r0'` if [ "${obuild_HCL_path}" = "" ] ; then echo "Can't find HCL package." exit fi if [ ! -d "${obuild_HCL_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HCL_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HCL_path}/${obuild_dir_bin}/HCL_example" ] ; then /bin/cp "${obuild_HCL_path}/${obuild_dir_bin}/HCL_example" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Midnight_path=`"${obuild_find_exe}" Midnight 'v4r0p0'` if [ "${obuild_Midnight_path}" = "" ] ; then echo "Can't find Midnight package." exit fi if [ ! -d "${obuild_Midnight_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Midnight_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Midnight_path}/${obuild_dir_bin}/Midnight_example" ] ; then /bin/cp "${obuild_Midnight_path}/${obuild_dir_bin}/Midnight_example" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_DemoGaussSim" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_DemoGaussSim" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_PaulTest" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_PaulTest" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_PaulTest2" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_PaulTest2" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_PaulTest3" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_PaulTest3" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_PaulTest4" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_PaulTest4" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_ReneTest" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_ReneTest" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad1FMain" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad1FMain" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad2FMain" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad2FMain" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad3FMain" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad3FMain" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad4FMain" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad4FMain" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad8FMain" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad8FMain" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Minuit_path=`"${obuild_find_exe}" Minuit 'v1r140p4'` if [ "${obuild_Minuit_path}" = "" ] ; then echo "Can't find Minuit package." exit fi if [ ! -d "${obuild_Minuit_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Minuit_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad12FMain" ] ; then /bin/cp "${obuild_Minuit_path}/${obuild_dir_bin}/Minuit_test_Quad12FMain" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Rio_path=`"${obuild_find_exe}" Rio 'v7r1'` if [ "${obuild_Rio_path}" = "" ] ; then echo "Can't find Rio package." exit fi if [ ! -d "${obuild_Rio_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Rio_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Rio_path}/${obuild_dir_bin}/Rio_rio" ] ; then /bin/cp "${obuild_Rio_path}/${obuild_dir_bin}/Rio_rio" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_Rio_path}/${obuild_dir_bin}/rio" ] ; then /bin/cp "${obuild_Rio_path}/${obuild_dir_bin}/rio" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Rio_path=`"${obuild_find_exe}" Rio 'v7r1'` if [ "${obuild_Rio_path}" = "" ] ; then echo "Can't find Rio package." exit fi if [ ! -d "${obuild_Rio_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Rio_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Rio_path}/${obuild_dir_bin}/Rio_test" ] ; then /bin/cp "${obuild_Rio_path}/${obuild_dir_bin}/Rio_test" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Rio_path=`"${obuild_find_exe}" Rio 'v7r1'` if [ "${obuild_Rio_path}" = "" ] ; then echo "Can't find Rio package." exit fi if [ ! -d "${obuild_Rio_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Rio_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Rio_path}/${obuild_dir_bin}/Rio_test_jec" ] ; then /bin/cp "${obuild_Rio_path}/${obuild_dir_bin}/Rio_test_jec" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_Rio_path=`"${obuild_find_exe}" Rio 'v7r1'` if [ "${obuild_Rio_path}" = "" ] ; then echo "Can't find Rio package." exit fi if [ ! -d "${obuild_Rio_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_Rio_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_Rio_path}/${obuild_dir_bin}/Rio_test_jec_read" ] ; then /bin/cp "${obuild_Rio_path}/${obuild_dir_bin}/Rio_test_jec_read" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HDF5_path=`"${obuild_find_exe}" HDF5 'v1r165p2'` if [ "${obuild_HDF5_path}" = "" ] ; then echo "Can't find HDF5 package." exit fi if [ ! -d "${obuild_HDF5_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HDF5_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HDF5_path}/${obuild_dir_bin}/h5_array_compound" ] ; then /bin/cp "${obuild_HDF5_path}/${obuild_dir_bin}/h5_array_compound" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_aida_config" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_aida_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/aida-config" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/aida-config" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_config" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_config.save" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_config.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_xml" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_xml" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_xml2fs" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_xml2fs" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_store" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_store" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_functions" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_functions" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_analysis" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_analysis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_b1" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_b1" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_hippo" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_hippo" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_jec" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_jec" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_cloud" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_cloud" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_shahrokh_write" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_shahrokh_write" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_shahrokh_read" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_exa_shahrokh_read" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_test_tuple" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_test_tuple" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_Rio" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_Rio" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_BatchLab_path=`"${obuild_find_exe}" BatchLab 'v1r0'` if [ "${obuild_BatchLab_path}" = "" ] ; then echo "Can't find BatchLab package." exit fi if [ ! -d "${obuild_BatchLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_BatchLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_test_HDF5" ] ; then /bin/cp "${obuild_BatchLab_path}/${obuild_dir_bin}/BatchLab_test_HDF5" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ChainedAndFilteredTuplesExample" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ChainedAndFilteredTuplesExample" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Cloud" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Cloud" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_CloudCreate" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_CloudCreate" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_DataPointSetCreateAndFill" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_DataPointSetCreateAndFill" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_FilterAndEvaluatorExample" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_FilterAndEvaluatorExample" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Histogram" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Histogram" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_HistogramArithmetic" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_HistogramArithmetic" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_PlotExample" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_PlotExample" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_PlotWithStyles" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_PlotWithStyles" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileCreate" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileCreate" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileFill" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileFill" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Tree" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Tree" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Tuple" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Tuple" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_TupleCreate" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_TupleCreate" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_createAndFillTupleWithComplexStructure" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_createAndFillTupleWithComplexStructure" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_DataPointSetCreateFromData" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_DataPointSetCreateFromData" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Store" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Store" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Restore" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Restore" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Chi2FitToHistogram" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_Chi2FitToHistogram" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ComplexFit" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ComplexFit" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_CreateAndFitDataPointSet" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_CreateAndFitDataPointSet" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_FitExample" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_FitExample" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileFitAndPlot" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileFitAndPlot" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ScanAndContour" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_ScanAndContour" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_SimpleFit" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_SimpleFit" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b1" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b1" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b2" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b2" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b3" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b3" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b4" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b4" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b5" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b5" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b6" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b6" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b7" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b7" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b8" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b8" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b11" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b11" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_DynamicLoad" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_DynamicLoad" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_jec" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_jec" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_UseAIDA_path=`"${obuild_find_exe}" UseAIDA 'v1r0p2'` if [ "${obuild_UseAIDA_path}" = "" ] ; then echo "Can't find UseAIDA package." exit fi if [ ! -d "${obuild_UseAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_UseAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_rmason" ] ; then /bin/cp "${obuild_UseAIDA_path}/${obuild_dir_bin}/AIDA_example_rmason" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_dvi2bitmap_path=`"${obuild_find_exe}" dvi2bitmap 'v1r0132p1'` if [ "${obuild_dvi2bitmap_path}" = "" ] ; then echo "Can't find dvi2bitmap package." exit fi if [ ! -d "${obuild_dvi2bitmap_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_dvi2bitmap_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/dvireport" ] ; then /bin/cp "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/dvireport" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_dvi2bitmap_path=`"${obuild_find_exe}" dvi2bitmap 'v1r0132p1'` if [ "${obuild_dvi2bitmap_path}" = "" ] ; then echo "Can't find dvi2bitmap package." exit fi if [ ! -d "${obuild_dvi2bitmap_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_dvi2bitmap_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/dvi2bitmap" ] ; then /bin/cp "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/dvi2bitmap" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_dvi2bitmap_path=`"${obuild_find_exe}" dvi2bitmap 'v1r0132p1'` if [ "${obuild_dvi2bitmap_path}" = "" ] ; then echo "Can't find dvi2bitmap package." exit fi if [ ! -d "${obuild_dvi2bitmap_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_dvi2bitmap_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/fontGeneration" ] ; then /bin/cp "${obuild_dvi2bitmap_path}/${obuild_dir_bin}/fontGeneration" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_freetype2_path=`"${obuild_find_exe}" freetype2 'v1r219p0'` if [ "${obuild_freetype2_path}" = "" ] ; then echo "Can't find freetype2 package." exit fi if [ ! -d "${obuild_freetype2_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_freetype2_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_freetype2_path}/${obuild_dir_bin}/freetypes_test_gb_0" ] ; then /bin/cp "${obuild_freetype2_path}/${obuild_dir_bin}/freetypes_test_gb_0" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinGL_path=`"${obuild_find_exe}" CoinGL 'v1r244p0'` if [ "${obuild_CoinGL_path}" = "" ] ; then echo "Can't find CoinGL package." exit fi if [ ! -d "${obuild_CoinGL_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinGL_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinGL_path}/${obuild_dir_bin}/CoinGL_coin_config" ] ; then /bin/cp "${obuild_CoinGL_path}/${obuild_dir_bin}/CoinGL_coin_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinGL_path}/${obuild_dir_bin}/coin-config" ] ; then /bin/cp "${obuild_CoinGL_path}/${obuild_dir_bin}/coin-config" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinGL_path=`"${obuild_find_exe}" CoinGL 'v1r244p0'` if [ "${obuild_CoinGL_path}" = "" ] ; then echo "Can't find CoinGL package." exit fi if [ ! -d "${obuild_CoinGL_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinGL_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinGL_path}/${obuild_dir_bin}/CoinGL_config_save" ] ; then /bin/cp "${obuild_CoinGL_path}/${obuild_dir_bin}/CoinGL_config_save" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinGL_path}/${obuild_dir_bin}/CoinGL_config_save.save" ] ; then /bin/cp "${obuild_CoinGL_path}/${obuild_dir_bin}/CoinGL_config_save.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinXt_path=`"${obuild_find_exe}" CoinXt 'v1r122p0'` if [ "${obuild_CoinXt_path}" = "" ] ; then echo "Can't find CoinXt package." exit fi if [ ! -d "${obuild_CoinXt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinXt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_test_GL" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_test_GL" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinXt_path=`"${obuild_find_exe}" CoinXt 'v1r122p0'` if [ "${obuild_CoinXt_path}" = "" ] ; then echo "Can't find CoinXt package." exit fi if [ ! -d "${obuild_CoinXt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinXt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_test_cube" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_test_cube" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinXt_path=`"${obuild_find_exe}" CoinXt 'v1r122p0'` if [ "${obuild_CoinXt_path}" = "" ] ; then echo "Can't find CoinXt package." exit fi if [ ! -d "${obuild_CoinXt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinXt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_test_gui" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_test_gui" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinXt_path=`"${obuild_find_exe}" CoinXt 'v1r122p0'` if [ "${obuild_CoinXt_path}" = "" ] ; then echo "Can't find CoinXt package." exit fi if [ ! -d "${obuild_CoinXt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinXt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_test_sceneViewer" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_test_sceneViewer" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinXt_path=`"${obuild_find_exe}" CoinXt 'v1r122p0'` if [ "${obuild_CoinXt_path}" = "" ] ; then echo "Can't find CoinXt package." exit fi if [ ! -d "${obuild_CoinXt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinXt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_coin_config" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_coin_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/soxt-config" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/soxt-config" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinXt_path=`"${obuild_find_exe}" CoinXt 'v1r122p0'` if [ "${obuild_CoinXt_path}" = "" ] ; then echo "Can't find CoinXt package." exit fi if [ ! -d "${obuild_CoinXt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinXt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_config_save" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_config_save" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_config_save.save" ] ; then /bin/cp "${obuild_CoinXt_path}/${obuild_dir_bin}/CoinXt_config_save.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinQt_path=`"${obuild_find_exe}" CoinQt 'v1r130p0'` if [ "${obuild_CoinQt_path}" = "" ] ; then echo "Can't find CoinQt package." exit fi if [ ! -d "${obuild_CoinQt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinQt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_test_cube" ] ; then /bin/cp "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_test_cube" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinQt_path=`"${obuild_find_exe}" CoinQt 'v1r130p0'` if [ "${obuild_CoinQt_path}" = "" ] ; then echo "Can't find CoinQt package." exit fi if [ ! -d "${obuild_CoinQt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinQt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_test_gui" ] ; then /bin/cp "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_test_gui" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinQt_path=`"${obuild_find_exe}" CoinQt 'v1r130p0'` if [ "${obuild_CoinQt_path}" = "" ] ; then echo "Can't find CoinQt package." exit fi if [ ! -d "${obuild_CoinQt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinQt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_coin_config" ] ; then /bin/cp "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_coin_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinQt_path}/${obuild_dir_bin}/soqt-config" ] ; then /bin/cp "${obuild_CoinQt_path}/${obuild_dir_bin}/soqt-config" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinQt_path=`"${obuild_find_exe}" CoinQt 'v1r130p0'` if [ "${obuild_CoinQt_path}" = "" ] ; then echo "Can't find CoinQt package." exit fi if [ ! -d "${obuild_CoinQt_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinQt_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_config_save" ] ; then /bin/cp "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_config_save" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_config_save.save" ] ; then /bin/cp "${obuild_CoinQt_path}/${obuild_dir_bin}/CoinQt_config_save.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_CoinPython_path=`"${obuild_find_exe}" CoinPython 'v1r0'` if [ "${obuild_CoinPython_path}" = "" ] ; then echo "Can't find CoinPython package." exit fi if [ ! -d "${obuild_CoinPython_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_CoinPython_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_CoinPython_path}/${obuild_dir_bin}/CoinPython_exa_0" ] ; then /bin/cp "${obuild_CoinPython_path}/${obuild_dir_bin}/CoinPython_exa_0" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_test_freetype" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_test_freetype" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVisToStdIv" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVisToStdIv" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_test_gluTess" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_test_gluTess" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Pyramid_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Pyramid_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_SimpleButton_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_SimpleButton_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextTTF_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextTTF_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextHershey_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextHershey_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_ImageRegion_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_ImageRegion_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_FontTTF_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_FontTTF_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_MarkerSet_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_MarkerSet_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Image_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Image_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_SplineCurve_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_SplineCurve_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextVtk_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextVtk_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TestTexture_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TestTexture_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_HEPVis99_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_HEPVis99_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_FillContour_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_FillContour_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_LatexImage_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_LatexImage_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Grid_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Grid_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_RulerRegion_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_RulerRegion_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axis_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axis_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axes2D_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axes2D_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axes3D_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axes3D_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_HatchBox_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_HatchBox_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TestVRML_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TestVRML_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TestKit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TestKit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Polyhedron_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Polyhedron_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_CoordinateAxis_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_CoordinateAxis_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Torus_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Torus_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Box_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Box_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Cons_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Cons_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Trap_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Trap_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Trd_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Trd_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Tubs_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Tubs_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Arrow_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Arrow_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Ellipsoid_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Ellipsoid_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_EllipsoidSegment_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_EllipsoidSegment_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_EllipticalPrism_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_EllipticalPrism_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Pcon_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Pcon_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_PolyVol_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_PolyVol_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Test2D_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Test2D_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_DetectorTreeKit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_DetectorTreeKit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_TestWedge_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_TestWedge_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_HelicalTrack_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_HelicalTrack_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_DblSiStripDetKit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_DblSiStripDetKit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_ReconTrack_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_ReconTrack_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_SiStripDetKit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_SiStripDetKit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_SiStrips_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_SiStrips_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_StereoSiStripDetKit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_StereoSiStripDetKit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_CrystalHit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_CrystalHit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_HadEmCrystalHit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_HadEmCrystalHit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_Jet_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_Jet_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_VtxReconTrack_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_VtxReconTrack_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_IdealTrackKit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_IdealTrackKit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_MeterStickKit_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_MeterStickKit_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_Plotter_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_Plotter_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_Page_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_Page_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Shell_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Shell_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Command_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Command_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Text_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Text_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Primitive_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Primitive_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_List_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_List_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_PushButton_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_PushButton_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_ArrowButton_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_ArrowButton_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_FileSelectionBox_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_FileSelectionBox_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Form_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Form_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_ScrolledList_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_ScrolledList_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_SelectionBox_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_SelectionBox_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_FileSelection_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_FileSelection_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Selection_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Selection_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_GUI_Plotters_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_GUI_Plotters_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_PainterViewer_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_PainterViewer_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_HepEventViewer_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_HepEventViewer_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_HepViewer_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_HepViewer_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_XmColorChooser_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_XmColorChooser_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_TestSoXtGui_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_TestSoXtGui_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_TestHvTwig_Xt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_TestHvTwig_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextTTF_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextTTF_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Pyramid_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Pyramid_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_SimpleButton_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_SimpleButton_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextHershey_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextHershey_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_ImageRegion_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_ImageRegion_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_FontTTF_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_FontTTF_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_MarkerSet_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_MarkerSet_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Image_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Image_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_SplineCurve_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_SplineCurve_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextVtk_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TextVtk_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TestTexture_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_TestTexture_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_HEPVis99_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_HEPVis99_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_FillContour_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_FillContour_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_LatexImage_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_LatexImage_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Grid_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Grid_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_RulerRegion_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_RulerRegion_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axis_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axis_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axes2D_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axes2D_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axes3D_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_Axes3D_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_HatchBox_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_utils_HatchBox_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Polyhedron_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Polyhedron_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_CoordinateAxis_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_CoordinateAxis_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Torus_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Torus_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Box_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Box_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Cons_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Cons_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Trap_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Trap_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Trd_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Trd_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Tubs_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Tubs_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Arrow_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Arrow_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Ellipsoid_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Ellipsoid_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_EllipsoidSegment_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_EllipsoidSegment_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_EllipticalPrism_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_EllipticalPrism_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Pcon_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Pcon_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_PolyVol_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_PolyVol_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Test2D_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_geometry_Test2D_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_DetectorTreeKit_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_DetectorTreeKit_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_TestWedge_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_TestWedge_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_HelicalTrack_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_HelicalTrack_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_DblSiStripDetKit_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_DblSiStripDetKit_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_ReconTrack_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_ReconTrack_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_SiStripDetKit_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_SiStripDetKit_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_SiStrips_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_SiStrips_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_StereoSiStripDetKit_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_StereoSiStripDetKit_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_CrystalHit_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_CrystalHit_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_HadEmCrystalHit_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_HadEmCrystalHit_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_Jet_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_Jet_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_VtxReconTrack_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_VtxReconTrack_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_IdealTrackKit_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_IdealTrackKit_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_MeterStickKit_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_detector_MeterStickKit_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_Plotter_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_Plotter_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_Page_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_Page_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Shell_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Shell_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Command_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Command_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Text_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Text_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Primitive_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Primitive_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_List_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_List_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_PushButton_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_PushButton_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_ArrowButton_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_ArrowButton_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_FileSelectionBox_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_FileSelectionBox_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Form_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Form_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_ScrolledList_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_ScrolledList_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_SelectionBox_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_SelectionBox_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_FileSelection_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_FileSelection_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Selection_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_GUI_Selection_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_GUI_Plotters_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_plotter_GUI_Plotters_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_PainterViewer_Qt" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_PainterViewer_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_Game_SDL" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_Game_SDL" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_HEPVis_path=`"${obuild_find_exe}" HEPVis 'v6r6p0'` if [ "${obuild_HEPVis_path}" = "" ] ; then echo "Can't find HEPVis package." exit fi if [ ! -d "${obuild_HEPVis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_HEPVis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_exa_detector" ] ; then /bin/cp "${obuild_HEPVis_path}/${obuild_dir_bin}/HEPVis_exa_detector" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_KUIP_path=`"${obuild_find_exe}" KUIP 'v1r950303p16'` if [ "${obuild_KUIP_path}" = "" ] ; then echo "Can't find KUIP package." exit fi if [ ! -d "${obuild_KUIP_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_KUIP_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_KUIP_path}/${obuild_dir_bin}/kuipcc" ] ; then /bin/cp "${obuild_KUIP_path}/${obuild_dir_bin}/kuipcc" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_KUIP_path=`"${obuild_find_exe}" KUIP 'v1r950303p16'` if [ "${obuild_KUIP_path}" = "" ] ; then echo "Can't find KUIP package." exit fi if [ ! -d "${obuild_KUIP_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_KUIP_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_KUIP_path}/${obuild_dir_bin}/kuipsh" ] ; then /bin/cp "${obuild_KUIP_path}/${obuild_dir_bin}/kuipsh" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_onx" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_onx" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/onx" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/onx" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_onx_config" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_onx_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/onx-config" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/onx-config" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_obatch" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_obatch" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/obatch" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/obatch" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_oxt" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_oxt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Xt_page" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Xt_page" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Xt" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Xt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Xm" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Xm" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_XmText" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_XmText" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_CommandLine" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_CommandLine" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_colorEditor" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_colorEditor" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_GL_test" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_GL_test" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Xt_tab" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Xt_tab" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_oqt" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_oqt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Qt" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Qt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Qt_page" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Qt_page" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Python" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Python" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_hello" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_hello" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_OnX" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_OnX" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_cube" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_cube" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_detector" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_detector" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_cylinder" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_cylinder" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_images" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_images" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_shapes" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_shapes" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_menu" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_menu" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_tree" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_tree" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Java_hello" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_test_Java_hello" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_cube" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_cube" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_detector" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_detector" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_hello" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_hello" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_shapes" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_shapes" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_std_vector" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_std_vector" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnX_path=`"${obuild_find_exe}" OnX 'v17r0'` if [ "${obuild_OnX_path}" = "" ] ; then echo "Can't find OnX package." exit fi if [ ! -d "${obuild_OnX_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnX_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_typemaps" ] ; then /bin/cp "${obuild_OnX_path}/${obuild_dir_bin}/OnX_exa_Java_typemaps" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_aida_config" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_aida_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/aida-config" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/aida-config" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_config" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_config.save" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_config.save" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_onx" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_onx" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/onxlab" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/onxlab" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_oxt" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_oxt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_oqt" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_oqt" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_analysis" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_analysis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_plotter_factory" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_plotter_factory" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_0" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_0" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_1" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_1" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_2" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_2" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_3" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_3" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_4" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_4" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_5" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_5" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_6" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_6" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_7" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_7" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_8" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_8" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_9" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_9" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_10" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_10" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_11" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_11" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_12" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_12" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_13" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_13" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_14" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_14" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_0" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_0" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_1" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_1" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_3" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_3" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_4" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_4" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_5" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_5" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_6" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_6" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_7" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_quite_aida_7" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_OnX_0" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_OnX_0" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_OnX_1" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_OnX_1" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_OnX_2" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_OnX_2" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_OnX_3" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_aida_OnX_3" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_update" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_update" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_aida_0" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_aida_0" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_aida_13" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_aida_13" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Chi2FitToHistogram" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Chi2FitToHistogram" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Cloud" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Cloud" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_CloudCreate" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_CloudCreate" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ComplexFit" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ComplexFit" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_CreateAndFitDataPointSet" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_CreateAndFitDataPointSet" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_DataPointSetCreateAndFill" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_DataPointSetCreateAndFill" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_DataPointSetCreateFromData" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_DataPointSetCreateFromData" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_FilterAndEvaluator" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_FilterAndEvaluator" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Fit" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Fit" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Histogram" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Histogram" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_HistogramArithmetic" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_HistogramArithmetic" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Plot" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Plot" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ProfileCreate" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ProfileCreate" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ProfileFill" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ProfileFill" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ProfileFitAndPlot" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ProfileFitAndPlot" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Restore" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Restore" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ScanAndContour" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_ScanAndContour" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_SimpleFit" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_SimpleFit" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Store" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Store" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Tree" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Tree" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Tuple" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_Tuple" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_TupleCreate" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_TupleCreate" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OnXLab_path=`"${obuild_find_exe}" OnXLab 'v1r0'` if [ "${obuild_OnXLab_path}" = "" ] ; then echo "Can't find OnXLab package." exit fi if [ ! -d "${obuild_OnXLab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OnXLab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_createAndFillTupleWithComplexStructure" ] ; then /bin/cp "${obuild_OnXLab_path}/${obuild_dir_bin}/OnXLab_exa_Java_SLAC_createAndFillTupleWithComplexStructure" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ChainedAndFilteredTuplesExample_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ChainedAndFilteredTuplesExample_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Cloud_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Cloud_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_CloudCreate_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_CloudCreate_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_DataPointSetCreateAndFill_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_DataPointSetCreateAndFill_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_FilterAndEvaluatorExample_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_FilterAndEvaluatorExample_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Histogram_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Histogram_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_HistogramArithmetic_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_HistogramArithmetic_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_PlotExample_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_PlotExample_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_PlotWithStyles_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_PlotWithStyles_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileCreate_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileCreate_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileFill_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileFill_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Tree_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Tree_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Tuple_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Tuple_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_TupleCreate_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_TupleCreate_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_createAndFillTupleWithComplexStructure_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_createAndFillTupleWithComplexStructure_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_DataPointSetCreateFromData_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_DataPointSetCreateFromData_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Store_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Store_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Restore_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Restore_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Chi2FitToHistogram_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_Chi2FitToHistogram_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ComplexFit_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ComplexFit_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_CreateAndFitDataPointSet_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_CreateAndFitDataPointSet_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_FitExample_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_FitExample_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileFitAndPlot_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ProfileFitAndPlot_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ScanAndContour_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_ScanAndContour_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_SimpleFit_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_SimpleFit_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b1_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b1_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b2_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b2_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b3_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b3_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b4_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b4_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b5_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b5_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b6_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b6_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b7_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b7_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b8_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b8_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_VisAIDA_path=`"${obuild_find_exe}" VisAIDA 'v1r0'` if [ "${obuild_VisAIDA_path}" = "" ] ; then echo "Can't find VisAIDA package." exit fi if [ ! -d "${obuild_VisAIDA_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_VisAIDA_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b11_vis" ] ; then /bin/cp "${obuild_VisAIDA_path}/${obuild_dir_bin}/AIDA_example_anaphe_b11_vis" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_OpenPAW_path=`"${obuild_find_exe}" OpenPAW 'v3r0'` if [ "${obuild_OpenPAW_path}" = "" ] ; then echo "Can't find OpenPAW package." exit fi if [ ! -d "${obuild_OpenPAW_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_OpenPAW_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_OpenPAW_path}/${obuild_dir_bin}/OpenPAW_opaw" ] ; then /bin/cp "${obuild_OpenPAW_path}/${obuild_dir_bin}/OpenPAW_opaw" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_OpenPAW_path}/${obuild_dir_bin}/opaw" ] ; then /bin/cp "${obuild_OpenPAW_path}/${obuild_dir_bin}/opaw" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Lab_path=`"${obuild_find_exe}" G4Lab 'v8r0p0'` if [ "${obuild_G4Lab_path}" = "" ] ; then echo "Can't find G4Lab package." exit fi if [ ! -d "${obuild_G4Lab_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Lab_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_g4lab_config" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/G4Lab_g4lab_config" "${obuild_dir_project}/bin/." ;fi if [ -e "${obuild_G4Lab_path}/${obuild_dir_bin}/g4lab-config" ] ; then /bin/cp "${obuild_G4Lab_path}/${obuild_dir_bin}/g4lab-config" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Simple_path=`"${obuild_find_exe}" G4Simple 'v2r0p0'` if [ "${obuild_G4Simple_path}" = "" ] ; then echo "Can't find G4Simple package." exit fi if [ ! -d "${obuild_G4Simple_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Simple_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Simple_path}/${obuild_dir_bin}/G4Simple_session" ] ; then /bin/cp "${obuild_G4Simple_path}/${obuild_dir_bin}/G4Simple_session" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N02" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N02" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N03" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N03" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N04" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N04" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N05" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N05" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N06" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N06" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N07" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_N07" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_AnaEx01" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_AnaEx01" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_A01" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_A01" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_G4Examples_path=`"${obuild_find_exe}" G4Examples 'v1r0'` if [ "${obuild_G4Examples_path}" = "" ] ; then echo "Can't find G4Examples package." exit fi if [ ! -d "${obuild_G4Examples_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_G4Examples_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_gammaray_telescope" ] ; then /bin/cp "${obuild_G4Examples_path}/${obuild_dir_bin}/G4Examples_gammaray_telescope" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snova_path=`"${obuild_find_exe}" snova 'v2r0p0'` if [ "${obuild_snova_path}" = "" ] ; then echo "Can't find snova package." exit fi if [ ! -d "${obuild_snova_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_snova_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_snova_path}/${obuild_dir_bin}/prog_snova" ] ; then /bin/cp "${obuild_snova_path}/${obuild_dir_bin}/prog_snova" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snovis_path=`"${obuild_find_exe}" snovis 'v1r1'` if [ "${obuild_snovis_path}" = "" ] ; then echo "Can't find snovis package." exit fi if [ ! -d "${obuild_snovis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_snovis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_snovis_path}/${obuild_dir_bin}/prog_snova" ] ; then /bin/cp "${obuild_snovis_path}/${obuild_dir_bin}/prog_snova" "${obuild_dir_project}/bin/." ;fi fi if [ "${obuild_find_exe}" = "" ] ; then echo "Variable obuild_find_exe not defined." exit fi obuild_snovis_path=`"${obuild_find_exe}" snovis 'v1r1'` if [ "${obuild_snovis_path}" = "" ] ; then echo "Can't find snovis package." exit fi if [ ! -d "${obuild_snovis_path}/${obuild_dir_bin}" ] ; then echo "WARNNING : Directory ${obuild_snovis_path}/${obuild_dir_bin} not found." else if [ -e "${obuild_snovis_path}/${obuild_dir_bin}/snovis_session" ] ; then /bin/cp "${obuild_snovis_path}/${obuild_dir_bin}/snovis_session" "${obuild_dir_project}/bin/." ;fi fi cd "${obuild_osc_snovis_path}/${obuild_dir_bin}" /bin/rm -f obuild_platform cd "${obuild_pwd_osc_snovis_0}" unset obuild_pwd_osc_snovis_0