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 169 of file OutputModuleCommunicatorT.cc.

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

169  {
170  return std::unique_ptr<edm::OutputModuleCommunicator>{};
171  }
std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( ::edm::OutputModule iMod)

Definition at line 172 of file OutputModuleCommunicatorT.cc.

172  {
173  return std::make_unique<OutputModuleCommunicatorT<edm::OutputModule>>(iMod);
174  }
std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( ::edm::global::OutputModuleBase iMod)

Definition at line 175 of file OutputModuleCommunicatorT.cc.

175  {
176  return std::make_unique<OutputModuleCommunicatorT<edm::global::OutputModuleBase>>(iMod);
177  }
std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( ::edm::one::OutputModuleBase iMod)

Definition at line 178 of file OutputModuleCommunicatorT.cc.

178  {
179  return std::make_unique<OutputModuleCommunicatorT<edm::one::OutputModuleBase>>(iMod);
180  }
std::unique_ptr< edm::OutputModuleCommunicator > edm::impl::createCommunicatorIfNeeded ( ::edm::limited::OutputModuleBase iMod)

Definition at line 181 of file OutputModuleCommunicatorT.cc.

181  {
182  return std::make_unique<OutputModuleCommunicatorT<edm::limited::OutputModuleBase>>(iMod);
183  }