/usr/include/root/TMVA/Tools.h is in libroot-tmva-dev 5.34.19+dfsg-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | // @(#)root/tmva $Id$
// Author: Andreas Hoecker, Joerg Stelzer, Helge Voss, Kai Voss
/**********************************************************************************
* Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
* Package: TMVA *
* Class : Tools *
* Web : http://tmva.sourceforge.net *
* *
* Description: *
* Global auxiliary applications and data treatment routines *
* *
* Authors (alphabetical): *
* Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland *
* Peter Speckmayer <peter.speckmayer@cern.ch> - CERN, Switzerland *
* Helge Voss <Helge.Voss@cern.ch> - MPI-K Heidelberg, Germany *
* Kai Voss <Kai.Voss@cern.ch> - U. of Victoria, Canada *
* *
* Copyright (c) 2005: *
* CERN, Switzerland *
* U. of Victoria, Canada *
* MPI-K Heidelberg, Germany *
* *
* Redistribution and use in source and binary forms, with or without *
* modification, are permitted according to the terms listed in LICENSE *
* (http://tmva.sourceforge.net/LICENSE) *
**********************************************************************************/
#ifndef ROOT_TMVA_Tools
#define ROOT_TMVA_Tools
//////////////////////////////////////////////////////////////////////////
// //
// Tools (namespace) //
// //
// Global auxiliary applications and data treatment routines //
// //
//////////////////////////////////////////////////////////////////////////
#include <vector>
#include <sstream>
#include <iostream>
#include <iomanip>
#ifndef ROOT_TXMLEngine
#include "TXMLEngine.h"
#endif
#ifndef ROOT_TMatrixDSymfwd
#include "TMatrixDSymfwd.h"
#endif
#ifndef ROOT_TMatrixDfwd
#include "TMatrixDfwd.h"
#endif
#ifndef ROOT_TVectorDfwd
#include "TVectorDfwd.h"
#endif
#ifndef ROOT_TVectorDfwd
#include "TVectorDfwd.h"
#endif
#ifndef ROOT_TMVA_Types
#include "TMVA/Types.h"
#endif
#ifndef ROOT_TMVA_VariableTransformBase
#include "TMVA/VariableTransformBase.h"
#endif
class TList;
class TTree;
class TString;
class TH1;
class TH2;
class TH2F;
class TSpline;
class TXMLEngine;
namespace TMVA {
class Event;
class PDF;
class MsgLogger;
class Tools {
private:
Tools();
public:
// destructor
~Tools();
// accessor to single instance
static Tools& Instance();
static void DestroyInstance();
template <typename T> Double_t Mean(Long64_t n, const T *a, const Double_t *w=0);
template <typename Iterator, typename WeightIterator> Double_t Mean ( Iterator first, Iterator last, WeightIterator w);
template <typename T> Double_t RMS(Long64_t n, const T *a, const Double_t *w=0);
template <typename Iterator, typename WeightIterator> Double_t RMS(Iterator first, Iterator last, WeightIterator w);
// simple statistics operations on tree entries
void ComputeStat( const std::vector<TMVA::Event*>&,
std::vector<Float_t>*,
Double_t&, Double_t&, Double_t&,
Double_t&, Double_t&, Double_t&, Int_t signalClass,
Bool_t norm = kFALSE );
// compute variance from sums
inline Double_t ComputeVariance( Double_t sumx2, Double_t sumx, Int_t nx );
// creates histograms normalized to one
TH1* projNormTH1F( TTree* theTree, const TString& theVarName,
const TString& name, Int_t nbins,
Double_t xmin, Double_t xmax, const TString& cut );
// normalize histogram by its integral
Double_t NormHist( TH1* theHist, Double_t norm = 1.0 );
// parser for TString phrase with items separated by a character
TList* ParseFormatLine( TString theString, const char * sep = ":" );
// parse option string for ANN methods
std::vector<Int_t>* ParseANNOptionString( TString theOptions, Int_t nvar,
std::vector<Int_t>* nodes );
// returns the square-root of a symmetric matrix: symMat = sqrtMat*sqrtMat
TMatrixD* GetSQRootMatrix( TMatrixDSym* symMat );
// returns the covariance matrix of of the different classes (and the sum)
// given the event sample
std::vector<TMatrixDSym*>* CalcCovarianceMatrices( const std::vector<Event*>& events, Int_t maxCls, VariableTransformBase* transformBase=0 );
std::vector<TMatrixDSym*>* CalcCovarianceMatrices( const std::vector<const Event*>& events, Int_t maxCls, VariableTransformBase* transformBase=0 );
// turns covariance into correlation matrix
const TMatrixD* GetCorrelationMatrix( const TMatrixD* covMat );
// check spline quality by comparison with initial histogram
Bool_t CheckSplines( const TH1*, const TSpline* );
// normalization of variable output
Double_t NormVariable( Double_t x, Double_t xmin, Double_t xmax );
// return separation of two histograms
Double_t GetSeparation( TH1* S, TH1* B ) const;
Double_t GetSeparation( const PDF& pdfS, const PDF& pdfB ) const;
// vector rescaling
std::vector<Double_t> MVADiff( std::vector<Double_t>&, std::vector<Double_t>& );
void Scale( std::vector<Double_t>&, Double_t );
void Scale( std::vector<Float_t>&, Float_t );
// re-arrange a vector of arrays (vectors) in a way such that the first array
// is ordered, and the other arrays reshuffeld accordingly
void UsefulSortDescending( std::vector< std::vector<Double_t> >&, std::vector<TString>* vs = 0 );
void UsefulSortAscending ( std::vector< std::vector<Double_t> >&, std::vector<TString>* vs = 0 );
void UsefulSortDescending( std::vector<Double_t>& );
void UsefulSortAscending ( std::vector<Double_t>& );
Int_t GetIndexMaxElement ( std::vector<Double_t>& );
Int_t GetIndexMinElement ( std::vector<Double_t>& );
// check if input string contains regular expression
Bool_t ContainsRegularExpression( const TString& s );
TString ReplaceRegularExpressions( const TString& s, const TString& replace = "+" );
// routines for formatted output -----------------
void FormattedOutput( const std::vector<Double_t>&, const std::vector<TString>&,
const TString titleVars, const TString titleValues, MsgLogger& logger,
TString format = "%+1.3f" );
void FormattedOutput( const TMatrixD&, const std::vector<TString>&, MsgLogger& logger );
void FormattedOutput( const TMatrixD&, const std::vector<TString>& vert, const std::vector<TString>& horiz,
MsgLogger& logger );
void WriteFloatArbitraryPrecision( Float_t val, std::ostream& os );
void ReadFloatArbitraryPrecision ( Float_t& val, std::istream& is );
// for histogramming
TString GetXTitleWithUnit( const TString& title, const TString& unit );
TString GetYTitleWithUnit( const TH1& h, const TString& unit, Bool_t normalised );
// Mutual Information method for non-linear correlations estimates in 2D histogram
// Author: Moritz Backes, Geneva (2009)
Double_t GetMutualInformation( const TH2F& );
// Correlation Ratio method for non-linear correlations estimates in 2D histogram
// Author: Moritz Backes, Geneva (2009)
Double_t GetCorrelationRatio( const TH2F& );
TH2F* TransposeHist ( const TH2F& );
// check if "silent" or "verbose" option in configuration string
Bool_t CheckForSilentOption ( const TString& ) const;
Bool_t CheckForVerboseOption( const TString& ) const;
// color information
const TString& Color( const TString& );
// print welcome message (to be called from, eg, .TMVAlogon)
enum EWelcomeMessage { kStandardWelcomeMsg = 1,
kIsometricWelcomeMsg,
kBlockWelcomeMsg,
kLeanWelcomeMsg,
kLogoWelcomeMsg,
kSmall1WelcomeMsg,
kSmall2WelcomeMsg,
kOriginalWelcomeMsgColor,
kOriginalWelcomeMsgBW };
// print TMVA citation (to be called from, eg, .TMVAlogon)
enum ECitation { kPlainText = 1,
kBibTeX,
kLaTeX,
kHtmlLink };
void TMVAWelcomeMessage();
void TMVAWelcomeMessage( MsgLogger& logger, EWelcomeMessage m = kStandardWelcomeMsg );
void TMVAVersionMessage( MsgLogger& logger );
void ROOTVersionMessage( MsgLogger& logger );
void TMVACitation( MsgLogger& logger, ECitation citType = kPlainText );
// string tools
std::vector<TString> SplitString( const TString& theOpt, const char separator ) const;
// variables
const TString fRegexp;
mutable MsgLogger* fLogger;
MsgLogger& Log() const { return *fLogger; }
static Tools* fgTools;
// xml tools
TString StringFromInt ( Long_t i );
TString StringFromDouble ( Double_t d );
void WriteTMatrixDToXML ( void* node, const char* name, TMatrixD* mat );
void WriteTVectorDToXML ( void* node, const char* name, TVectorD* vec );
void ReadTMatrixDFromXML( void* node, const char* name, TMatrixD* mat );
void ReadTVectorDFromXML( void* node, const char* name, TVectorD* vec );
Bool_t HistoHasEquidistantBins(const TH1& h);
Bool_t HasAttr ( void* node, const char* attrname );
template<typename T>
inline void ReadAttr ( void* node, const char* , T& value );
void ReadAttr ( void* node, const char* attrname, TString& value );
template<typename T>
void AddAttr ( void* node, const char* , const T& value, Int_t precision = 16 );
void AddAttr ( void* node, const char* attrname, const char* value );
void* AddChild ( void* parent, const char* childname, const char* content = 0, bool isRootNode = false );
Bool_t AddRawLine ( void* node, const char * raw );
Bool_t AddComment ( void* node, const char* comment );
void* GetParent( void* child);
void* GetChild ( void* parent, const char* childname=0 );
void* GetNextChild( void* prevchild, const char* childname=0 );
const char* GetContent ( void* node );
const char* GetName ( void* node );
TXMLEngine& xmlengine() { return *fXMLEngine; }
int xmlenginebuffersize() { return 10000000; }
TXMLEngine* fXMLEngine;
private:
// utilities for correlation ratio
Double_t GetYMean_binX( const TH2& , Int_t bin_x );
}; // Common tools
Tools& gTools(); // global accessor
} // namespace TMVA
//_______________________________________________________________________
template<typename T> void TMVA::Tools::ReadAttr( void* node, const char* attrname, T& value )
{
// read attribute from xml
TString val;
ReadAttr( node, attrname, val );
std::stringstream s(val.Data());
// coverity[tainted_data_argument]
s >> value;
}
//_______________________________________________________________________
template<typename T>
void TMVA::Tools::AddAttr( void* node, const char* attrname, const T& value, Int_t precision )
{
// add attribute to xml
std::stringstream s;
s.precision( precision );
s << std::scientific << value;
AddAttr( node, attrname, s.str().c_str() );
}
//_______________________________________________________________________
inline Double_t TMVA::Tools::ComputeVariance( Double_t sumx2, Double_t sumx, Int_t nx )
{
// compute variance from given sums
if (nx<2) return 0;
return (sumx2 - ((sumx*sumx)/static_cast<Double_t>(nx)))/static_cast<Double_t>(nx-1);
}
#endif
|