CMS 3D CMS Logo

List of all members | Public Types | Static Public Member Functions | Private Types
edm::OneToValue< CKey, Val, index > Class Template Reference

#include <OneToValue.h>

Public Types

typedef Val data_type
 insert val type More...
 
typedef index index_type
 index type More...
 
typedef Ref< CKey > key_type
 insert key type More...
 
typedef std::map< index_type, map_assocmap_type
 map type More...
 
typedef helpers::Key< KeyRefProdref_type
 reference set type More...
 
typedef std::vector< typename CKey::value_type const * > transient_key_vector
 transient key vector More...
 
typedef std::map< typename CKey::value_type const *, Val > transient_map_type
 transient map type More...
 
typedef std::vector< Val > transient_val_vector
 transient val vector More...
 
typedef Val val_type
 values reference collection type More...
 

Static Public Member Functions

static void insert (ref_type &ref, map_type &m, key_type const &k, data_type const &v)
 insert in the map More...
 
static map_type::size_type size (map_assoc const &)
 size of data_type More...
 
static void sort (map_type &)
 sort More...
 
static transient_key_vector transientKeyVector (ref_type const &ref, map_type const &map)
 fill transient key vector More...
 
static transient_map_type transientMap (ref_type const &ref, map_type const &map)
 fill transient map More...
 
static transient_val_vector transientValVector (ref_type const &ref, map_type const &map)
 fill transient val vector More...
 
static val_type val (ref_type const &, map_assoc const &v)
 return values collection More...
 

Private Types

typedef RefProd< CKey > KeyRefProd
 reference to "key" collection More...
 
typedef Val map_assoc
 internal map associated data More...
 

Detailed Description

template<typename CKey, typename Val, typename index = unsigned int>
class edm::OneToValue< CKey, Val, index >

Definition at line 12 of file OneToValue.h.

Member Typedef Documentation

template<typename CKey, typename Val, typename index = unsigned int>
typedef Val edm::OneToValue< CKey, Val, index >::data_type

insert val type

Definition at line 23 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef index edm::OneToValue< CKey, Val, index >::index_type

index type

Definition at line 25 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef Ref<CKey> edm::OneToValue< CKey, Val, index >::key_type

insert key type

Definition at line 21 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef RefProd<CKey> edm::OneToValue< CKey, Val, index >::KeyRefProd
private

reference to "key" collection

Definition at line 14 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef Val edm::OneToValue< CKey, Val, index >::map_assoc
private

internal map associated data

Definition at line 16 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef std::map<index_type, map_assoc> edm::OneToValue< CKey, Val, index >::map_type

map type

Definition at line 27 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef helpers::Key<KeyRefProd> edm::OneToValue< CKey, Val, index >::ref_type

reference set type

Definition at line 29 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef std::vector<typename CKey::value_type const*> edm::OneToValue< CKey, Val, index >::transient_key_vector

transient key vector

Definition at line 33 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef std::map<typename CKey::value_type const*, Val> edm::OneToValue< CKey, Val, index >::transient_map_type

transient map type

Definition at line 31 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef std::vector<Val> edm::OneToValue< CKey, Val, index >::transient_val_vector

transient val vector

Definition at line 35 of file OneToValue.h.

template<typename CKey, typename Val, typename index = unsigned int>
typedef Val edm::OneToValue< CKey, Val, index >::val_type

values reference collection type

Definition at line 19 of file OneToValue.h.

Member Function Documentation

template<typename CKey, typename Val, typename index = unsigned int>
static void edm::OneToValue< CKey, Val, index >::insert ( ref_type ref,
map_type m,
key_type const &  k,
data_type const &  v 
)
inlinestatic

insert in the map

Definition at line 37 of file OneToValue.h.

Referenced by BeautifulSoup.PageElement::append().

38  {
39  if(k.isNull()) {
41  "can't insert null references in AssociationMap");
42  }
43  if(ref.key.isNull()) {
44  if(k.isTransient()) {
46  "can't insert transient references in uninitialized AssociationMap");
47  }
48  //another thread might change the value of productGetter()
49  auto getter =ref.key.productGetter();
50  if(getter == nullptr) {
52  "Can't insert into AssociationMap unless it was properly initialized.\n"
53  "The most common fix for this is to add an argument to the call to the\n"
54  "AssociationMap constructor that is a valid Handle to the container.\n"
55  "If you don't have a valid handle or the template parameter to the\n"
56  "AssociationMap is a View, then see the comments in AssociationMap.h.\n"
57  "(note this was a new requirement added in the 7_5_X release series)\n");
58  }
59  ref.key = KeyRefProd(k.id(), getter);
60  }
61  helpers::checkRef(ref.key, k);
62  index_type ik = index_type(k.key());
63  m[ik] = v;
64  }
index index_type
index type
Definition: OneToValue.h:25
static void throwThis(Code category, char const *message0="", char const *message1="", char const *message2="", char const *message3="", char const *message4="")
Definition: EDMException.cc:82
int k[5][pyjets_maxn]
RefProd< CKey > KeyRefProd
reference to "key" collection
Definition: OneToValue.h:14
void checkRef(const RP &rp, const R &r)
throw if r hasn&#39;t the same id as rp
template<typename CKey, typename Val, typename index = unsigned int>
static map_type::size_type edm::OneToValue< CKey, Val, index >::size ( map_assoc const &  )
inlinestatic

size of data_type

Definition at line 70 of file OneToValue.h.

Referenced by ntupleDataFormat._Collection::__iter__(), and ntupleDataFormat._Collection::__len__().

70 { return 1; }
template<typename CKey, typename Val, typename index = unsigned int>
static void edm::OneToValue< CKey, Val, index >::sort ( map_type )
inlinestatic

sort

Definition at line 72 of file OneToValue.h.

72 { }
template<typename CKey, typename Val, typename index = unsigned int>
static transient_key_vector edm::OneToValue< CKey, Val, index >::transientKeyVector ( ref_type const &  ref,
map_type const &  map 
)
inlinestatic

fill transient key vector

Definition at line 86 of file OneToValue.h.

86  {
88  if(!map.empty()) {
89  CKey const& ckey = *ref.key;
90  for(typename map_type::const_iterator i = map.begin(); i != map.end(); ++i) {
91  m.push_back(& ckey[i->first]);
92  }
93  }
94  return m;
95  }
std::vector< typename CKey::value_type const * > transient_key_vector
transient key vector
Definition: OneToValue.h:33
template<typename CKey, typename Val, typename index = unsigned int>
static transient_map_type edm::OneToValue< CKey, Val, index >::transientMap ( ref_type const &  ref,
map_type const &  map 
)
inlinestatic

fill transient map

Definition at line 74 of file OneToValue.h.

74  {
76  if(!map.empty()) {
77  CKey const& ckey = *ref.key;
78  for(typename map_type::const_iterator i = map.begin(); i != map.end(); ++i) {
79  typename CKey::value_type const* k = &ckey[i->first];
80  m.insert(std::make_pair(k, i->second));
81  }
82  }
83  return m;
84  }
std::map< typename CKey::value_type const *, Val > transient_map_type
transient map type
Definition: OneToValue.h:31
int k[5][pyjets_maxn]
template<typename CKey, typename Val, typename index = unsigned int>
static transient_val_vector edm::OneToValue< CKey, Val, index >::transientValVector ( ref_type const &  ref,
map_type const &  map 
)
inlinestatic

fill transient val vector

Definition at line 97 of file OneToValue.h.

97  {
99  if(!map.empty()) {
100  for(typename map_type::const_iterator i = map.begin(); i != map.end(); ++i) {
101  m.push_back(i->second);
102  }
103  }
104  return m;
105  }
std::vector< Val > transient_val_vector
transient val vector
Definition: OneToValue.h:35
template<typename CKey, typename Val, typename index = unsigned int>
static val_type edm::OneToValue< CKey, Val, index >::val ( ref_type const &  ,
map_assoc const &  v 
)
inlinestatic

return values collection

Definition at line 66 of file OneToValue.h.

66  {
67  return v;
68  }