File indexing completed on 2025-08-03 08:20:27
0001 #ifndef MACRO_TRKRTRUTHTABLES_C
0002 #define MACRO_TRKRTRUTHTABLES_C
0003
0004 #include <GlobalVariables.C>
0005
0006 #include <g4eval/SvtxTruthRecoTableEval.h>
0007
0008 #include <fun4all/Fun4AllServer.h>
0009
0010 R__LOAD_LIBRARY(libg4eval.so)
0011
0012 void build_truthreco_tables()
0013 {
0014 int verbosity = std::max(Enable::VERBOSITY, Enable::TRACKING_VERBOSITY);
0015 Fun4AllServer* se = Fun4AllServer::instance();
0016
0017
0018
0019
0020 SvtxTruthRecoTableEval *tables = new SvtxTruthRecoTableEval();
0021 tables->Verbosity(verbosity);
0022 se->registerSubsystem(tables);
0023
0024 return;
0025 }
0026
0027 #endif