CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
BoostIODBReader< DataType, RecordType > Class Template Reference

#include <CondTools/Hcal/interface/BoostIODBReader.h>

Inheritance diagram for BoostIODBReader< DataType, RecordType >:
edm::EDAnalyzer edm::EDConsumerBase

Public Types

typedef DataType data_type
 
typedef RecordType record_type
 
- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 

Public Member Functions

 BoostIODBReader (const edm::ParameterSet &)
 
 ~BoostIODBReader () override
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () 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 Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::string outputFile_
 

Additional Inherited Members

- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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

template<class DataType, class RecordType>
class BoostIODBReader< DataType, RecordType >

Description: reads an object from a database and puts it into a file using boost I/O

Implementation: [Notes on implementation]

Definition at line 43 of file BoostIODBReader.h.

Member Typedef Documentation

template<class DataType , class RecordType >
typedef DataType BoostIODBReader< DataType, RecordType >::data_type

Definition at line 46 of file BoostIODBReader.h.

template<class DataType , class RecordType >
typedef RecordType BoostIODBReader< DataType, RecordType >::record_type

Definition at line 47 of file BoostIODBReader.h.

Constructor & Destructor Documentation

template<class DataType , class RecordType >
BoostIODBReader< DataType, RecordType >::BoostIODBReader ( const edm::ParameterSet ps)
explicit

Definition at line 59 of file BoostIODBReader.h.

60  : outputFile_(ps.getParameter<std::string>("outputFile"))
61 {
62 }
T getParameter(std::string const &) const
std::string outputFile_
template<class DataType , class RecordType >
BoostIODBReader< DataType, RecordType >::~BoostIODBReader ( )
inlineoverride

Definition at line 50 of file BoostIODBReader.h.

References BoostIODBReader< DataType, RecordType >::analyze().

50 {}

Member Function Documentation

template<class DataType , class RecordType >
void BoostIODBReader< DataType, RecordType >::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 65 of file BoostIODBReader.h.

References edm::EventSetup::get(), haddnano::of, BoostIODBReader< DataType, RecordType >::outputFile_, and AlCaHLTBitMon_ParallelJobs::p.

Referenced by BoostIODBReader< DataType, RecordType >::~BoostIODBReader().

67 {
69  iSetup.get<RecordType>().get(p);
70 
71  std::ofstream of(outputFile_.c_str(), std::ios_base::binary);
72  if (!of.is_open())
73  throw cms::Exception("InvalidArgument")
74  << "Failed to open file \"" << outputFile_ << '"' << std::endl;
75 
76  eos::portable_oarchive ar(of);
77  ar & *p;
78 }
std::string outputFile_
T get() const
Definition: EventSetup.h:71

Member Data Documentation

template<class DataType , class RecordType >
std::string BoostIODBReader< DataType, RecordType >::outputFile_
private

Definition at line 55 of file BoostIODBReader.h.

Referenced by BoostIODBReader< DataType, RecordType >::analyze().