CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Member Functions | Private Attributes
PhysicsTools::MVATrainerSave Class Referenceabstract

#include <MVATrainerSave.h>

Inheritance diagram for PhysicsTools::MVATrainerSave:
edm::EDAnalyzer edm::EDConsumerBase PhysicsTools::MVATrainerSaveImpl< Record_t >

Public Member Functions

virtual void analyze (const edm::Event &iEvent, const edm::EventSetup &iSetup)
 
virtual void endJob ()
 
 MVATrainerSave (const edm::ParameterSet &params)
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Protected Member Functions

virtual std::string getRecordName () const =0
 
virtual const
Calibration::MVAComputer
getToPut (const edm::EventSetup &es) const =0
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Private Attributes

std::auto_ptr
< Calibration::MVAComputer
calib
 
bool saved
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 

Detailed Description

Definition at line 16 of file MVATrainerSave.h.

Constructor & Destructor Documentation

PhysicsTools::MVATrainerSave::MVATrainerSave ( const edm::ParameterSet params)
explicit

Definition at line 26 of file MVATrainerSave.cc.

26  :
27  saved(false)
28 {
29 }

Member Function Documentation

void PhysicsTools::MVATrainerSave::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 31 of file MVATrainerSave.cc.

References calib, getToPut(), PhysicsTools::MVATrainerLooper::isUntrained(), and saved.

33 {
34  if (calib.get() || saved)
35  return;
36 
37  const Calibration::MVAComputer *toPutCalib = getToPut(es);
38  if (MVATrainerLooper::isUntrained(toPutCalib))
39  return;
40 
41  edm::LogInfo("MVATrainerSave") << "Got the trained calibration data";
42 
43  std::auto_ptr<Calibration::MVAComputer> calib(
44  new Calibration::MVAComputer);
45  *calib = *toPutCalib;
46 
47  this->calib = calib;
48 }
std::auto_ptr< Calibration::MVAComputer > calib
virtual const Calibration::MVAComputer * getToPut(const edm::EventSetup &es) const =0
static bool isUntrained(const T *ptr)
void PhysicsTools::MVATrainerSave::endJob ( void  )
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 50 of file MVATrainerSave.cc.

References cond::service::PoolDBOutputService::beginOfTime(), calib, cond::service::PoolDBOutputService::createNewIOV(), cond::service::PoolDBOutputService::endOfTime(), getRecordName(), edm::Service< T >::isAvailable(), and saved.

51 {
52  if (!calib.get() || saved)
53  return;
54 
55  edm::LogInfo("MVATrainerSave") << "Saving calibration data in CondDB.";
56 
58  if (!dbService.isAvailable())
59  throw cms::Exception("MVATrainerSave")
60  << "DBService unavailable" << std::endl;
61 
62  dbService->createNewIOV<Calibration::MVAComputer>(
63  calib.release(), dbService->beginOfTime(),
64  dbService->endOfTime(), getRecordName().c_str());
65 
66  saved = true;
67 }
std::auto_ptr< Calibration::MVAComputer > calib
bool isAvailable() const
Definition: Service.h:46
void createNewIOV(T *firstPayloadObj, cond::Time_t firstSinceTime, cond::Time_t firstTillTime, const std::string &recordName, bool withlogging=false)
virtual std::string getRecordName() const =0
virtual std::string PhysicsTools::MVATrainerSave::getRecordName ( ) const
protectedpure virtual
virtual const Calibration::MVAComputer* PhysicsTools::MVATrainerSave::getToPut ( const edm::EventSetup es) const
protectedpure virtual

Member Data Documentation

std::auto_ptr<Calibration::MVAComputer> PhysicsTools::MVATrainerSave::calib
private

Definition at line 32 of file MVATrainerSave.h.

Referenced by analyze(), and endJob().

bool PhysicsTools::MVATrainerSave::saved
private

Definition at line 33 of file MVATrainerSave.h.

Referenced by analyze(), and endJob().