CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
edm::test::Run Class Reference

#include <Run.h>

Public Member Functions

template<typename T >
TestHandle< Tget () const
 
template<typename T >
TestHandle< Tget (std::string const &iInstanceLabel) const
 
 Run (std::shared_ptr< RunPrincipal const > iPrincipal, std::string iModuleLabel, std::string iProcessName)
 

Private Attributes

std::string label_
 
std::shared_ptr< RunPrincipal const > principal_
 
std::string processName_
 

Detailed Description

Definition at line 35 of file Run.h.

Constructor & Destructor Documentation

Run::Run ( std::shared_ptr< RunPrincipal const >  iPrincipal,
std::string  iModuleLabel,
std::string  iProcessName 
)

Definition at line 32 of file Run.cc.

References label_, eostools::move(), and processName_.

33  : principal_{std::move(iPrincipal)}, label_{std::move(iModuleLabel)}, processName_{std::move(iProcessName)} {}
std::string label_
Definition: Run.h:66
std::shared_ptr< RunPrincipal const > principal_
Definition: Run.h:65
std::string processName_
Definition: Run.h:67
def move(src, dest)
Definition: eostools.py:511

Member Function Documentation

template<typename T >
TestHandle<T> edm::test::Run::get ( ) const
inline
template<typename T >
TestHandle<T> edm::test::Run::get ( std::string const &  iInstanceLabel) const
inline

Definition at line 47 of file Run.h.

References h, label_, eostools::move(), principal_, processName_, edm::Wrapper< T >::product(), edm::PRODUCT_TYPE, and wrapper.

Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), rrapi.RRApi::columns(), rrapi.RRApi::count(), rrapi.RRApi::data(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), betterConfigParser.BetterConfigParser::getResultingSection(), rrapi.RRApi::report(), rrapi.RRApi::reports(), rrapi.RRApi::tables(), rrapi.RRApi::tags(), rrapi.RRApi::templates(), and rrapi.RRApi::workspaces().

47  {
48  auto h = principal_->getByLabel(
49  edm::PRODUCT_TYPE, edm::TypeID(typeid(T)), label_, iInstanceLabel, processName_, nullptr, nullptr, nullptr);
50  if (h.failedToGet()) {
51  return TestHandle<T>(std::move(h.whyFailedFactory()));
52  }
53  void const* basicWrapper = h.wrapper();
54  assert(basicWrapper);
55  Wrapper<T> const* wrapper = static_cast<Wrapper<T> const*>(basicWrapper);
56  return TestHandle<T>(wrapper->product());
57  }
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
std::string label_
Definition: Run.h:66
std::shared_ptr< RunPrincipal const > principal_
Definition: Run.h:65
std::string processName_
Definition: Run.h:67
long double T
def move(src, dest)
Definition: eostools.py:511
static HepMC::HEPEVT_Wrapper wrapper

Member Data Documentation

std::string edm::test::Run::label_
private
std::shared_ptr<RunPrincipal const> edm::test::Run::principal_
private

Definition at line 65 of file Run.h.

Referenced by get().

std::string edm::test::Run::processName_
private

Definition at line 67 of file Run.h.

Referenced by get(), and Run().