CMS 3D CMS Logo

Functions
edm::impl Namespace Reference

Functions

std::unique_ptr< edm::OutputModuleCommunicatorcreateCommunicatorIfNeeded (void *)
 
std::unique_ptr< edm::OutputModuleCommunicatorcreateCommunicatorIfNeeded (::edm::OutputModule *iMod)
 
std::unique_ptr< edm::OutputModuleCommunicatorcreateCommunicatorIfNeeded (::edm::global::OutputModuleBase *iMod)
 
std::unique_ptr< edm::OutputModuleCommunicatorcreateCommunicatorIfNeeded (::edm::one::OutputModuleBase *iMod)
 
std::unique_ptr< edm::OutputModuleCommunicatorcreateCommunicatorIfNeeded (::edm::limited::OutputModuleBase *iMod)
 

Function Documentation

std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( void *  )

Definition at line 96 of file OutputModuleCommunicatorT.cc.

Referenced by edm::OutputModuleCommunicatorT< T >::createIfNeeded().

96  {
97  return std::unique_ptr<edm::OutputModuleCommunicator>{};
98  }
std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( ::edm::OutputModule iMod)

Definition at line 99 of file OutputModuleCommunicatorT.cc.

99  {
100  return std::make_unique<OutputModuleCommunicatorT<edm::OutputModule>>(iMod);
101  }
std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( ::edm::global::OutputModuleBase iMod)

Definition at line 102 of file OutputModuleCommunicatorT.cc.

102  {
103  return std::make_unique<OutputModuleCommunicatorT<edm::global::OutputModuleBase>>(iMod);
104  }
std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( ::edm::one::OutputModuleBase iMod)

Definition at line 105 of file OutputModuleCommunicatorT.cc.

105  {
106  return std::make_unique<OutputModuleCommunicatorT<edm::one::OutputModuleBase>>(iMod);
107  }
std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( ::edm::limited::OutputModuleBase iMod)

Definition at line 108 of file OutputModuleCommunicatorT.cc.

108  {
109  return std::make_unique<OutputModuleCommunicatorT<edm::limited::OutputModuleBase>>(iMod);
110  }