From 75eaec99c3535e34b3f050608cc0c6917c873b40 Mon Sep 17 00:00:00 2001 From: Yuri Fisyak Date: Wed, 11 Sep 2024 16:40:44 -0400 Subject: [PATCH] Switch: ! NoTFGLDbTag => TFGDbTag --- StRoot/StBFChain/BigFullChain.h | 2 +- StRoot/StBFChain/StBFChain.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/StRoot/StBFChain/BigFullChain.h b/StRoot/StBFChain/BigFullChain.h index 2c0a3a39597..3287164ca6f 100644 --- a/StRoot/StBFChain/BigFullChain.h +++ b/StRoot/StBFChain/BigFullChain.h @@ -1093,7 +1093,7 @@ Bfc_st BFC[] = { // standard chains {"NoLocalCintDb","" ,"","" ,"","","Switch off local Cint Db",kFALSE}, {"NoMySQLDb" ,"" ,"","" ,"","","Switch off MySQL Db",kFALSE}, {"NoCintCalDb" ,"" ,"","NoLocalCintDb" ,"","","Switch off local Cint Db",kFALSE}, - {"NoTFGLDbTag" ,"" ,"","" ,"","","Switch off TFG specific Db tag",kFALSE}, + {"TFGDbTag", "" ,"","" ,"","","Switch on TFG specific Db tag",kFALSE}, {"dbSnapshot" ,"" ,"","" ,"","","Create?use dbSnapshot",kFALSE}, {"NoEvent" ,"" ,"","-event,-analysis" ,"","","Switch Off StEvent and StAnalysis Makers",kFALSE}, {"MakeDoc" ,"" ,"","" ,"","","Make HTML documentation for the given Chain",kFALSE}, diff --git a/StRoot/StBFChain/StBFChain.cxx b/StRoot/StBFChain/StBFChain.cxx index b99e58071e3..17ffd43b518 100644 --- a/StRoot/StBFChain/StBFChain.cxx +++ b/StRoot/StBFChain/StBFChain.cxx @@ -293,7 +293,7 @@ Int_t StBFChain::Instantiate() TString flavors = "ofl"; // default flavor for offline // TFG specific Db tag - if (! GetOption("NoTFGLDbTag")) flavors += "+TFG"; + if (GetOption("TFGDbTag")) flavors += "+TFG"; // fixed target flavor if (GetOption("FXT")) flavors.Prepend("FXT+");