Skip to content

Commit

Permalink
Merge pull request #17 from hgreenlee/trunk
Browse files Browse the repository at this point in the history
Add support for e17 qualifier.
  • Loading branch information
hgreenlee authored Aug 3, 2018
2 parents 6123778 + 205e803 commit 82472c8
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions ups/larlite.table
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,48 @@ Qualifiers = "c2:opt"
Action = GetProducts
setupRequired( root v6_12_06a -q +c2:+opt )

Flavor = ANY
Qualifiers = "e17:prof"

Action = GetFQDir
if ( printenv CET_SUBDIR > /dev/null )
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/${CET_SUBDIR}.e17.prof )
else()
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/`get-directory-name subdir`.e17.prof )
endif ( printenv CET_SUBDIR > /dev/null )
fileTest( ${${UPS_PROD_NAME_UC}_FQ_DIR}, -d, "${${UPS_PROD_NAME_UC}_FQ_DIR} directory not found: SETUP ABORTED")

Action = GetProducts
setupRequired( root v6_12_06a -q +e17:+prof )

Flavor = ANY
Qualifiers = "e17:debug"

Action = GetFQDir
if ( printenv CET_SUBDIR > /dev/null )
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/${CET_SUBDIR}.e17.debug )
else()
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/`get-directory-name subdir`.e17.debug )
endif ( printenv CET_SUBDIR > /dev/null )
fileTest( ${${UPS_PROD_NAME_UC}_FQ_DIR}, -d, "${${UPS_PROD_NAME_UC}_FQ_DIR} directory not found: SETUP ABORTED")

Action = GetProducts
setupRequired( root v6_12_06a -q +e17:+debug )

Flavor = ANY
Qualifiers = "e17:opt"

Action = GetFQDir
if ( printenv CET_SUBDIR > /dev/null )
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/${CET_SUBDIR}.e17.opt )
else()
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/`get-directory-name subdir`.e17.opt )
endif ( printenv CET_SUBDIR > /dev/null )
fileTest( ${${UPS_PROD_NAME_UC}_FQ_DIR}, -d, "${${UPS_PROD_NAME_UC}_FQ_DIR} directory not found: SETUP ABORTED")

Action = GetProducts
setupRequired( root v6_12_06a -q +e17:+opt )

Flavor = ANY
Qualifiers = "e15:prof"

Expand Down

0 comments on commit 82472c8

Please sign in to comment.