CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
fwlite::RunFactory Class Reference

#include <RunFactory.h>

Public Member Functions

std::shared_ptr< fwlite::RunmakeRun (std::shared_ptr< BranchMapReader > branchMap) const
 
const RunFactoryoperator= (const RunFactory &)=delete
 
 RunFactory ()
 
 RunFactory (const RunFactory &)=delete
 
virtual ~RunFactory ()
 

Private Attributes

std::shared_ptr< fwlite::Runrun_
 

Detailed Description

Definition at line 27 of file RunFactory.h.

Constructor & Destructor Documentation

RunFactory::RunFactory ( )

Definition at line 23 of file RunFactory.cc.

23 {}
RunFactory::~RunFactory ( )
virtual

Definition at line 24 of file RunFactory.cc.

24 {}
fwlite::RunFactory::RunFactory ( const RunFactory )
delete

Member Function Documentation

std::shared_ptr< fwlite::Run > RunFactory::makeRun ( std::shared_ptr< BranchMapReader branchMap) const

Definition at line 26 of file RunFactory.cc.

References run_.

26  {
27  if (not run_) {
28  run_ = std::make_shared<fwlite::Run>(branchMap);
29  }
30  return run_;
31  }
std::shared_ptr< fwlite::Run > run_
Definition: RunFactory.h:41
const RunFactory& fwlite::RunFactory::operator= ( const RunFactory )
delete

Member Data Documentation

std::shared_ptr<fwlite::Run> fwlite::RunFactory::run_
mutableprivate

Definition at line 41 of file RunFactory.h.

Referenced by makeRun().