File indexing completed on 2023-03-17 11:17:54
0001 #include "RecoEgamma/EgammaTools/interface/AnyMVAEstimatorRun2Base.h"
0002 #include "RecoEgamma/EgammaTools/interface/AnyMVAEstimatorRun2Factory.h"
0003 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0004
0005 AnyMVAEstimatorRun2Base::AnyMVAEstimatorRun2Base(const edm::ParameterSet& conf)
0006 : tag_(conf.getParameter<std::string>("mvaTag")),
0007 nCategories_(conf.getParameter<int>("nCategories")),
0008 debug_(conf.getUntrackedParameter<bool>("debug", false)) {}
0009
0010 EDM_REGISTER_PLUGINFACTORY(AnyMVAEstimatorRun2Factory, "AnyMVAEstimatorRun2Factory");