CMS 3D CMS Logo

Functions
GBRForestTools.h File Reference
#include "CondFormats/EgammaObjects/interface/GBRForest.h"
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include <memory>

Go to the source code of this file.

Functions

std::unique_ptr< const GBRForestcreateGBRForest (const std::string &weightsFile)
 
std::unique_ptr< const GBRForestcreateGBRForest (const edm::FileInPath &weightsFile)
 
std::unique_ptr< const GBRForestcreateGBRForest (const std::string &weightsFile, std::vector< std::string > &varNames)
 
std::unique_ptr< const GBRForestcreateGBRForest (const edm::FileInPath &weightsFile, std::vector< std::string > &varNames)
 

Function Documentation

std::unique_ptr<const GBRForest> createGBRForest ( const std::string &  weightsFile)
std::unique_ptr<const GBRForest> createGBRForest ( const edm::FileInPath weightsFile)

Definition at line 261 of file GBRForestTools.cc.

References createGBRForest(), edm::FileInPath::fullPath(), and varNames.

261  {
262  std::vector<std::string> varNames;
263  return createGBRForest(weightsFile.fullPath(), varNames);
264 }
std::unique_ptr< const GBRForest > createGBRForest(const std::string &weightsFile)
char const * varNames[]
std::string fullPath() const
Definition: FileInPath.cc:163
std::unique_ptr<const GBRForest> createGBRForest ( const std::string &  weightsFile,
std::vector< std::string > &  varNames 
)

Definition at line 267 of file GBRForestTools.cc.

References edm::FileInPath::fullPath(), init, and varNames.

267  {
268  std::unique_ptr<GBRForest> gbrForest;
269 
270  if (weightsFile[0] == '/') {
271  gbrForest = init(weightsFile, varNames);
272  } else {
273  edm::FileInPath weightsFileEdm(weightsFile);
274  gbrForest = init(weightsFileEdm.fullPath(), varNames);
275  }
276  return gbrForest;
277 }
int init
Definition: HydjetWrapper.h:67
char const * varNames[]
std::unique_ptr<const GBRForest> createGBRForest ( const edm::FileInPath weightsFile,
std::vector< std::string > &  varNames 
)

Definition at line 279 of file GBRForestTools.cc.

References createGBRForest(), edm::FileInPath::fullPath(), and varNames.

280  {
281  return createGBRForest(weightsFile.fullPath(), varNames);
282 }
std::unique_ptr< const GBRForest > createGBRForest(const std::string &weightsFile)
char const * varNames[]
std::string fullPath() const
Definition: FileInPath.cc:163