Skip to content

Commit

Permalink
Merge pull request #13 from hgreenlee/trunk
Browse files Browse the repository at this point in the history
Add support for e15 qualifier.
  • Loading branch information
twongjirad authored Feb 3, 2018
2 parents 859872f + 6ead8b3 commit 367dc96
Showing 1 changed file with 45 additions and 3 deletions.
48 changes: 45 additions & 3 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 = "e15:prof"

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

Flavor = ANY
Qualifiers = "e15:debug"

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

Flavor = ANY
Qualifiers = "e15:opt"

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

Flavor = ANY
Qualifiers = "e14:prof"

Expand All @@ -15,7 +57,7 @@ Qualifiers = "e14:prof"
fileTest( ${${UPS_PROD_NAME_UC}_FQ_DIR}, -d, "${${UPS_PROD_NAME_UC}_FQ_DIR} directory not found: SETUP ABORTED")

Action = GetProducts
setupRequired( root v6_08_06g -q +e14:+nu:+prof )
setupRequired( root v6_10_08b -q +e14:+nu:+prof )

Flavor = ANY
Qualifiers = "e14:debug"
Expand All @@ -29,7 +71,7 @@ Qualifiers = "e14:debug"
fileTest( ${${UPS_PROD_NAME_UC}_FQ_DIR}, -d, "${${UPS_PROD_NAME_UC}_FQ_DIR} directory not found: SETUP ABORTED")

Action = GetProducts
setupRequired( root v6_08_06g -q +e14:+nu:+debug )
setupRequired( root v6_10_08b -q +e14:+nu:+debug )

Flavor = ANY
Qualifiers = "e14:opt"
Expand All @@ -43,7 +85,7 @@ Qualifiers = "e14:opt"
fileTest( ${${UPS_PROD_NAME_UC}_FQ_DIR}, -d, "${${UPS_PROD_NAME_UC}_FQ_DIR} directory not found: SETUP ABORTED")

Action = GetProducts
setupRequired( root v6_08_06g -q +e14:+nu:+opt )
setupRequired( root v6_10_08b -q +e14:+nu:+opt )

Flavor = ANY
Qualifiers = "e10:prof"
Expand Down

0 comments on commit 367dc96

Please sign in to comment.