Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for UED takepeds #229

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/takepeds
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ SIT_ENV_DIR="/cds/group/psdm/sw"
LCLS2_HUTCHES="rix, tmo, ued"
HUTCH=$(get_info --gethutch)
if echo "$LCLS2_HUTCHES" | grep -iw "$HUTCH" > /dev/null; then
echo "This is a LCLS-II experiment"
echo "This is an LCLS-II experiment"

SIT_ENV_DIR=$SIT_ENV_DIR'/conda2/'
SIT_ENV_DIR='/cds/group/pcds/dist/pds/'$HUTCH'/scripts/'
LCLS2=1
if [[ ${HUTCH} =~ 'ued' ]]; then
source $SIT_ENV_DIR/manage/bin/psconda.sh
source $SIT_ENV_DIR/setup_env.sh
epixquad_pedestal_scan --record 1 --hutch ued
fi
else
echo "This is a LCLS-I experiment"
echo "This is an LCLS-I experiment"
SIT_ENV_DIR=$SIT_ENV_DIR'/conda1/'
DAQ_RELEASE=/cds/group/pcds/dist/pds/current

Expand Down
Loading