Skip to content

Commit

Permalink
Merge pull request #15 from hgreenlee/trunk
Browse files Browse the repository at this point in the history
Add support for c2 qualifier.
  • Loading branch information
twongjirad authored Apr 11, 2018
2 parents b00f4b4 + e79125b commit cfd8e2e
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 @@ -3,6 +3,48 @@ Product=larlite

Group:

Flavor = ANY
Qualifiers = "c2:prof"

Action = GetFQDir
if ( printenv CET_SUBDIR > /dev/null )
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/${CET_SUBDIR}.c2.prof )
else()
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/`get-directory-name subdir`.c2.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_04e -q +c2:+prof )

Flavor = ANY
Qualifiers = "c2:debug"

Action = GetFQDir
if ( printenv CET_SUBDIR > /dev/null )
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/${CET_SUBDIR}.c2.debug )
else()
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/`get-directory-name subdir`.c2.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_04e -q +c2:+debug )

Flavor = ANY
Qualifiers = "c2:opt"

Action = GetFQDir
if ( printenv CET_SUBDIR > /dev/null )
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/${CET_SUBDIR}.c2.opt )
else()
envSet( ${UPS_PROD_NAME_UC}_FQ_DIR, ${${UPS_PROD_NAME_UC}_DIR}/`get-directory-name subdir`.c2.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_04e -q +c2:+opt )

Flavor = ANY
Qualifiers = "e15:prof"

Expand Down

0 comments on commit cfd8e2e

Please sign in to comment.