Skip to content
Snippets Groups Projects

Respect LHCB_CONDITION_DB env. var. if set in test_RichIntersections

1 file
+ 3
0
Compare changes
  • Side-by-side
  • Inline
@@ -59,6 +59,9 @@ int main( int argc, char* argv[] ) {
const char* desc_xml = "compact/trunk/LHCb.xml";
const char* conditions = "git:/cvmfs/lhcb.cern.ch/lib/lhcb/git-conddb/lhcb-conditions-database.git@master";
const char* field_map_path = "/cvmfs/lhcb.cern.ch/lib/lhcb/DBASE/FieldMap/v5r7/cdf";
// If LHCB_CONDITION_DB is set respect its value
const char* db_env = getenv( "LHCB_CONDITION_DB" );
if ( db_env ) { conditions = db_env; }
if ( argc > 3 ) {
desc_xml = argv[1];
conditions = argv[2];
Loading