Logo ROOT   6.18/05
Reference Guide
Config.cxx
Go to the documentation of this file.
1// @(#)root/tmva $Id$
2// Author: Andreas Hoecker, Joerg Stelzer, Fredrik Tegenfeldt, Helge Voss
3
4/**********************************************************************************
5 * Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6 * Package: TMVA *
7 * Class : Config *
8 * Web : http://tmva.sourceforge.net *
9 * *
10 * Description: *
11 * Implementation *
12 * *
13 * Authors (alphabetical): *
14 * Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland *
15 * Joerg Stelzer <Joerg.Stelzer@cern.ch> - CERN, Switzerland *
16 * Fredrik Tegenfeldt <Fredrik.Tegenfeldt@cern.ch> - Iowa State U., USA *
17 * Helge Voss <Helge.Voss@cern.ch> - MPI-K Heidelberg, GER *
18 * *
19 * Copyright (c) 2006: *
20 * CERN, Switzerland *
21 * Iowa State U., USA *
22 * MPI-K Heidelberg, Germany *
23 * *
24 * Redistribution and use in source and binary forms, with or without *
25 * modification, are permitted according to the terms listed in LICENSE *
26 * (http://mva.sourceforge.net/license.txt) *
27 **********************************************************************************/
28
29/*! \class TMVA::Config
30\ingroup TMVA
31
32Singleton class for global configuration settings used by TMVA.
33
34*/
35
36#include "TMVA/Config.h"
37#include "TMVA/MsgLogger.h"
38
39#include "Rtypes.h"
40#include "TString.h"
41#include "TSystem.h"
42#include "TROOT.h"
43
45
46#if __cplusplus > 199711L
47std::atomic<TMVA::Config*> TMVA::Config::fgConfigPtr{ 0 };
48#else
50#endif
51
53
54////////////////////////////////////////////////////////////////////////////////
55/// constructor - set defaults
56
58 fDrawProgressBar ( kFALSE ),
59 fNWorkers (1),
60 fUseColoredConsole ( kTRUE ),
61 fSilent ( kFALSE ),
62 fWriteOptionsReference( kFALSE ),
63 fLogger (new MsgLogger("Config"))
64{
65 // plotting
70
74
75 // IO names
76 fIONames.fWeightFileDir = "weights";
79
80}
81
82////////////////////////////////////////////////////////////////////////////////
83/// destructor
84
86{
87 delete fLogger;
88}
89
90////////////////////////////////////////////////////////////////////////////////
91/// static function: destroy TMVA instance
92
94{
95#if __cplusplus > 199711L
96 delete fgConfigPtr.exchange(0);
97#else
98 if (fgConfigPtr != 0) { delete fgConfigPtr; fgConfigPtr = 0;}
99#endif
100}
101
102////////////////////////////////////////////////////////////////////////////////
103/// static function: returns TMVA instance
104
106{
107#if __cplusplus > 199711L
108 if(!fgConfigPtr) {
109 TMVA::Config* tmp = new Config();
110 TMVA::Config* expected = 0;
111 if(! fgConfigPtr.compare_exchange_strong(expected,tmp) ) {
112 //another thread beat us to the switch
113 delete tmp;
114 }
115 }
116 return *fgConfigPtr;
117#else
118 return fgConfigPtr ? *fgConfigPtr :*(fgConfigPtr = new Config());
119#endif
120}
121
const Bool_t kFALSE
Definition: RtypesCore.h:88
const Bool_t kTRUE
Definition: RtypesCore.h:87
#define ClassImp(name)
Definition: Rtypes.h:365
TString fWeightFileDir
Definition: Config.h:122
TString fOptionsReferenceFileDir
Definition: Config.h:124
TString fWeightFileExtension
Definition: Config.h:123
Int_t fMaxNumOfAllowedVariablesForScatterPlots
Definition: Config.h:110
Singleton class for global configuration settings used by TMVA.
Definition: Config.h:51
class TMVA::Config::IONames fIONames
static Config * fgConfigPtr
Definition: Config.h:138
static void DestroyInstance()
static function: destroy TMVA instance
Definition: Config.cxx:93
virtual ~Config()
destructor
Definition: Config.cxx:85
static Config & Instance()
static function: returns TMVA instance
Definition: Config.cxx:105
Config()
constructor - set defaults
Definition: Config.cxx:57
class TMVA::Config::VariablePlotting fVariablePlotting
ostringstream derivative to redirect and format output
Definition: MsgLogger.h:59
Config & gConfig()