/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/Common/interface/fillPtrVector.h
112 строк
4 KB
W. David Dagenhart
From scram b code-format-all (clang-format)
10 май 2019, 17:51
10 май 2019, 17:51
82e0ab0
Код
Авторство
О чём код?
#ifndef DataFormats_Common_fillPtrVector_h #define DataFormats_Common_fillPtrVector_h // -*- C++ -*- // // Package: Common // Class : fillPtrVector // /**\class fillPtrVector fillPtrVector.h DataFormats/Common/interface/fillPtrVector.h Description: Helper function used to implement the edm::Ptr class Usage: This is an internal detail of edm::Ptr interaction with edm::Wrapper and should not be used by others */ // // Original Author: Chris Jones // Created: Sat Oct 20 11:45:38 CEST 2007 // // system include files // user include files #include "DataFormats/Common/interface/FillView.h" #include "FWCore/Utilities/interface/EDMException.h" #include "FWCore/Utilities/interface/OffsetToBase.h" #include "DataFormats/Common/interface/fwd_fillPtrVector.h" #include <typeinfo> #include <vector> // forward declarations namespace edm { namespace detail { template <typename COLLECTION> void reallyfillPtrVector(COLLECTION const& coll, std::type_info const& iToType, std::vector<unsigned long> const& iIndicies, std::vector<void const*>& oPtr) { typedef COLLECTION product_type; typedef typename GetProduct<product_type>::element_type element_type; typedef typename product_type::const_iterator iter; oPtr.reserve(iIndicies.size()); if (iToType == typeid(element_type)) { for (std::vector<unsigned long>::const_iterator itIndex = iIndicies.begin(), itEnd = iIndicies.end(); itIndex != itEnd; ++itIndex) { iter it = coll.begin(); std::advance(it, *itIndex); element_type const* address = GetProduct<product_type>::address(it); oPtr.push_back(address); } } else { for (std::vector<unsigned long>::const_iterator itIndex = iIndicies.begin(), itEnd = iIndicies.end(); itIndex != itEnd; ++itIndex) { iter it = coll.begin(); std::advance(it, *itIndex); element_type const* address = GetProduct<product_type>::address(it); void const* ptr = pointerToBase(iToType, address); if (nullptr != ptr) { oPtr.push_back(ptr); } else { Exception::throwThis(errors::LogicError, "TypeConversionError " "edm::PtrVector<> : unable to convert type ", typeid(element_type).name(), " to ", iToType.name(), "\n"); } } } } } // namespace detail template <typename T, typename A> void fillPtrVector(std::vector<T, A> const& obj, std::type_info const& iToType, std::vector<unsigned long> const& iIndicies, std::vector<void const*>& oPtr) { detail::reallyfillPtrVector(obj, iToType, iIndicies, oPtr); } template <typename T, typename A> void fillPtrVector(std::list<T, A> const& obj, std::type_info const& iToType, std::vector<unsigned long> const& iIndicies, std::vector<void const*>& oPtr) { detail::reallyfillPtrVector(obj, iToType, iIndicies, oPtr); } template <typename T, typename A> void fillPtrVector(std::deque<T, A> const& obj, std::type_info const& iToType, std::vector<unsigned long> const& iIndicies, std::vector<void const*>& oPtr) { detail::reallyfillPtrVector(obj, iToType, iIndicies, oPtr); } template <typename T, typename A, typename Comp> void fillPtrVector(std::set<T, A, Comp> const& obj, std::type_info const& iToType, std::vector<unsigned long> const& iIndicies, std::vector<void const*>& oPtr) { detail::reallyfillPtrVector(obj, iToType, iIndicies, oPtr); } } // namespace edm #endif