![]() |
![]() |
#include <PhysicsTools/MVAComputer/interface/MVAComputerESSourceImpl.h>
Public Member Functions | |
MVAComputerESSourceImpl (const edm::ParameterSet ¶ms) | |
ReturnType | produce (const RecordType &record) |
virtual | ~MVAComputerESSourceImpl () |
Private Member Functions | |
void | setIntervalFor (const edm::eventsetup::EventSetupRecordKey &key, const edm::IOVSyncValue &syncValue, edm::ValidityInterval &oValidity) |
Definition at line 13 of file MVAComputerESSourceImpl.h.
PhysicsTools::MVAComputerESSourceImpl< RecordType >::MVAComputerESSourceImpl | ( | const edm::ParameterSet & | params | ) | [inline] |
Definition at line 16 of file MVAComputerESSourceImpl.h.
References edm::ESProducer::setWhatProduced().
00016 : 00017 MVAComputerESSourceBase(params) 00018 { 00019 setWhatProduced(this); 00020 findingRecord<RecordType>(); 00021 }
virtual PhysicsTools::MVAComputerESSourceImpl< RecordType >::~MVAComputerESSourceImpl | ( | ) | [inline, virtual] |
ReturnType PhysicsTools::MVAComputerESSourceImpl< RecordType >::produce | ( | const RecordType & | record | ) | [inline] |
Definition at line 25 of file MVAComputerESSourceImpl.h.
References PhysicsTools::MVAComputerESSourceBase::produce().
00026 { return this->produce(); }
void PhysicsTools::MVAComputerESSourceImpl< RecordType >::setIntervalFor | ( | const edm::eventsetup::EventSetupRecordKey & | key, | |
const edm::IOVSyncValue & | syncValue, | |||
edm::ValidityInterval & | oValidity | |||
) | [inline, private, virtual] |
Implements edm::EventSetupRecordIntervalFinder.
Definition at line 32 of file MVAComputerESSourceImpl.h.
References edm::IOVSyncValue::beginOfTime(), and edm::IOVSyncValue::endOfTime().
00035 { 00036 oValidity = edm::ValidityInterval( 00037 edm::IOVSyncValue::beginOfTime(), 00038 edm::IOVSyncValue::endOfTime()); 00039 }