CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
GBRForestGetterFromDB Class Reference
Inheritance diagram for GBRForestGetterFromDB:
edm::one::EDAnalyzer<> edm::one::EDAnalyzerBase edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
 GBRForestGetterFromDB (const edm::ParameterSet &)
 
 ~GBRForestGetterFromDB () override
 
- Public Member Functions inherited from edm::one::EDAnalyzer<>
 EDAnalyzer ()=default
 
SerialTaskQueueglobalLuminosityBlocksQueue () final
 
SerialTaskQueueglobalRunsQueue () final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
- Public Member Functions inherited from edm::one::EDAnalyzerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzerBase ()
 
ModuleDescription const & moduleDescription () const
 
bool wantsStreamLuminosityBlocks () const
 
bool wantsStreamRuns () const
 
 ~EDAnalyzerBase () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

edm::ESHandle< GBRForesttheGBRForestHandle
 
std::string theGBRForestName
 
std::string theOutputFileName
 
std::string theOutputObjectName
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- 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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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)
 

Detailed Description

Definition at line 19 of file GBRForestGetterFromDB.cc.

Constructor & Destructor Documentation

GBRForestGetterFromDB::GBRForestGetterFromDB ( const edm::ParameterSet conf)
explicit

Definition at line 33 of file GBRForestGetterFromDB.cc.

33  :
34  theGBRForestName(conf.getParameter<std::string>("grbForestName")),
35  theOutputFileName(conf.getUntrackedParameter<std::string>("outputFileName")),
36  theOutputObjectName(conf.getUntrackedParameter<std::string>("outputObjectName", theGBRForestName.empty() ? "GBRForest" : theGBRForestName))
37 {
38 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
GBRForestGetterFromDB::~GBRForestGetterFromDB ( )
override

Definition at line 40 of file GBRForestGetterFromDB.cc.

41 {
42 }

Member Function Documentation

void GBRForestGetterFromDB::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 45 of file GBRForestGetterFromDB.cc.

References gather_cfg::cout, DEFINE_FWK_MODULE, edm::EventSetup::get(), edm::ESHandle< T >::product(), theGBRForestHandle, theGBRForestName, theOutputFileName, and theOutputObjectName.

46 {
48  TFile *fOut = TFile::Open(theOutputFileName.c_str(), "RECREATE");
49  fOut->WriteObject(theGBRForestHandle.product(), theOutputObjectName.c_str());
50  fOut->Close();
51  std::cout << "Wrote output to " << theOutputFileName << std::endl;
52 }
edm::ESHandle< GBRForest > theGBRForestHandle
T get() const
Definition: EventSetup.h:71
T const * product() const
Definition: ESHandle.h:86

Member Data Documentation

edm::ESHandle<GBRForest> GBRForestGetterFromDB::theGBRForestHandle
private

Definition at line 30 of file GBRForestGetterFromDB.cc.

Referenced by analyze().

std::string GBRForestGetterFromDB::theGBRForestName
private

Definition at line 27 of file GBRForestGetterFromDB.cc.

Referenced by analyze().

std::string GBRForestGetterFromDB::theOutputFileName
private

Definition at line 28 of file GBRForestGetterFromDB.cc.

Referenced by analyze().

std::string GBRForestGetterFromDB::theOutputObjectName
private

Definition at line 29 of file GBRForestGetterFromDB.cc.

Referenced by analyze().