CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DetSetVectorNew.h
Go to the documentation of this file.
1 #ifndef DataFormats_Common_DetSetVectorNew_h
2 #define DataFormats_Common_DetSetVectorNew_h
3 
5 // #include "DataFormats/Common/interface/DetSet.h" // to get det_id_type
8 
9 #include <boost/iterator_adaptors.hpp>
10 #include <boost/iterator/transform_iterator.hpp>
11 #include <boost/iterator/counting_iterator.hpp>
12 #include <boost/any.hpp>
13 #include "boost/shared_ptr.hpp"
15 
16 
17 #include<vector>
18 #include <cassert>
19 
20 namespace edm { namespace refhelper { template<typename T> struct FindForNewDetSetVector; } }
21 
22 //FIXME remove New when ready
23 namespace edmNew {
24  typedef uint32_t det_id_type;
25 
26  namespace dslv {
27  template< typename T> class LazyGetter;
28  }
29 
30  /* transient component of DetSetVector
31  * for pure conviniency of dictioanary declaration
32  */
33  namespace dstvdetails {
36  bool filling;
38 
39 
40  void swap(DetSetVectorTrans& rh) {
43  }
44 
45  typedef unsigned int size_type; // for persistency
46  typedef unsigned int id_type;
47 
48  struct Item {
49  Item(id_type i=0, int io=-1, size_type is=0) : id(i), offset(io), size(is){}
50  bool isValid() const { return offset>=0;}
52  int offset;
54  bool operator<(Item const &rh) const { return id<rh.id;}
55  operator id_type() const { return id;}
56  };
57 
58  };
59 
60  void errorFilling();
61  void errorIdExists(det_id_type iid);
62  void throw_range(det_id_type iid);
63  }
64 
75  template<typename T>
76  class DetSetVector : private dstvdetails::DetSetVectorTrans {
77  public:
79  typedef Trans::Item Item;
80  typedef unsigned int size_type; // for persistency
81  typedef unsigned int id_type;
82  typedef T data_type;
86  // FIXME not sure make sense....
87  typedef DetSet value_type;
88  typedef id_type key_type;
89 
90 
91  typedef std::vector<Item> IdContainer;
92  typedef std::vector<data_type> DataContainer;
93  typedef typename IdContainer::iterator IdIter;
94  typedef typename std::vector<data_type>::iterator DataIter;
95  typedef std::pair<IdIter,DataIter> IterPair;
96  typedef typename IdContainer::const_iterator const_IdIter;
97  typedef typename std::vector<data_type>::const_iterator const_DataIter;
98  typedef std::pair<const_IdIter,const_DataIter> const_IterPair;
99 
101 
102  struct IterHelp {
104  // IterHelp() : v(0),update(true){}
105  IterHelp() : v(0),update(false){}
106  IterHelp(DetSetVector<T> const & iv, bool iup) : v(&iv), update(iup){}
107 
108  result_type & operator()(Item const& item) const {
109  detset.set(*v,item,update);
110  return detset;
111  }
112  private:
115  bool update;
116  };
117 
118  typedef boost::transform_iterator<IterHelp,const_IdIter> const_iterator;
119  typedef std::pair<const_iterator,const_iterator> Range;
120 
121  /* fill the lastest inserted DetSet
122  */
123  class FastFiller {
124  public:
129 
130  FastFiller(DetSetVector<T> & iv, id_type id, bool isaveEmpty=false) :
131  v(iv), item(v.push_back(id)), saveEmpty(isaveEmpty) {
132  if (v.filling) dstvdetails::errorFilling();
133  v.filling=true;
134  }
135  FastFiller(DetSetVector<T> & iv, typename DetSetVector<T>::Item & it, bool isaveEmpty=false) :
136  v(iv), item(it), saveEmpty(isaveEmpty) {
137  if (v.filling) dstvdetails::errorFilling();
138  v.filling=true;
139  }
141  if (!saveEmpty && item.size==0) {
142  v.pop_back(item.id);
143  }
144  v.filling=false;
145  }
146 
147  void abort() {
148  v.pop_back(item.id);
149  saveEmpty=true; // avoid mess in destructor
150  }
151 
153  v.m_data.reserve(item.offset+s);
154  }
155 
157  v.m_data.resize(item.offset+s);
158  item.size=s;
159  }
160 
161  id_type id() const { return item.id;}
162  size_type size() const { return item.size;}
163  bool empty() const { return item.size==0;}
164 
166  return v.m_data[item.offset+i];
167  }
168  DataIter begin() { return v.m_data.begin()+ item.offset;}
169  DataIter end() { return v.m_data.end();}
170 
171  void push_back(data_type const & d) {
172  v.m_data.push_back(d);
173  item.size++;
174  }
175 #ifndef CMS_NOCXX11
176  void push_back(data_type && d) {
177  v.m_data.push_back(std::move(d));
178  item.size++;
179  }
180 #endif
181 
182  data_type & back() { return v.m_data.back();}
183 
184  private:
187  bool saveEmpty;
188  };
189  friend class FastFiller;
190 
191  class FindForDetSetVector : public std::binary_function<const edmNew::DetSetVector<T>&, unsigned int, const T*> {
192  public:
193  typedef FindForDetSetVector self;
194  typename self::result_type operator()(typename self::first_argument_type iContainer, typename self::second_argument_type iIndex) {
195  return &(iContainer.m_data[iIndex]);
196  }
197  };
198  friend class FindForDetSetVector;
199 
200  explicit DetSetVector(int isubdet=0) :
201  m_subdetId(isubdet) {}
202 
203  DetSetVector(boost::shared_ptr<dslv::LazyGetter<T> > iGetter, const std::vector<det_id_type>& iDets,
204  int isubdet=0);
205 
206 
208  // delete content if T is pointer...
209  }
210 
211 
212  bool onDemand() const { return !getter.empty();}
213 
214  void swap(DetSetVector & rh) {
216  std::swap(m_subdetId,rh.m_subdetId);
217  std::swap(m_ids,rh.m_ids);
218  std::swap(m_data,rh.m_data);
219  }
220 
221  void swap(IdContainer & iic, DataContainer & idc) {
222  std::swap(m_ids,iic);
223  std::swap(m_data,idc);
224  }
225 
226  void reserve(size_t isize, size_t dsize) {
227  m_ids.reserve(isize);
228  m_data.reserve(dsize);
229  }
230 
231  void resize(size_t isize, size_t dsize) {
232  m_ids.resize(isize);
233  m_data.resize(dsize);
234  }
235 
236  // FIXME not sure what the best way to add one cell to cont
237  DetSet insert(id_type iid, data_type const * idata, size_type isize) {
238  Item & item = addItem(iid,isize);
239  m_data.resize(m_data.size()+isize);
240  std::copy(idata,idata+isize,m_data.begin()+item.offset);
241  return DetSet(*this,item,false);
242  }
243  //make space for it
245  Item & item = addItem(iid,isize);
246  m_data.resize(m_data.size()+isize);
247  return DetSet(*this,item,false);
248  }
249 
250  // to be used with a FastFiller
252  return addItem(iid,0);
253  }
254 
255  // remove last entry (usually only if empty...)
256  void pop_back(id_type iid) {
257  const_IdIter p = findItem(iid);
258  if (p==m_ids.end()) return; //bha!
259  // sanity checks... (shall we throw or assert?)
260  if ((*p).size>0&& (*p).offset>-1 &&
261  m_data.size()==(*p).offset+(*p).size)
262  m_data.resize((*p).offset);
263  m_ids.erase( m_ids.begin()+(p-m_ids.begin()));
264  }
265 
266  private:
267 
268  Item & addItem(id_type iid, size_type isize) {
269  Item it(iid,size_type(m_data.size()),isize);
270  IdIter p = std::lower_bound(m_ids.begin(),
271  m_ids.end(),
272  it);
273  if (p!=m_ids.end() && !(it<*p)) dstvdetails::errorIdExists(iid);
274  return *m_ids.insert(p,it);
275  }
276 
277 
278 
279  public:
280 
281 
282  //---------------------------------------------------------
283 
284  bool exists(id_type i) const {
285  return findItem(i)!=m_ids.end();
286  }
287 
288  bool isValid(id_type i) const {
289  const_IdIter p = findItem(i);
290  return p!=m_ids.end() && (*p).offset!=-1;
291  }
292 
293  /*
294  DetSet operator[](id_type i) {
295  const_IdIter p = findItem(i);
296  if (p==m_ids.end()) what???
297  return DetSet(*this,p-m_ids.begin());
298  }
299  */
300 
301 
303  const_IdIter p = findItem(i);
304  if (p==m_ids.end()) dstvdetails::throw_range(i);
305  return DetSet(*this,*p,true);
306  }
307 
308  // slow interface
309  // const_iterator find(id_type i, bool update=true) const {
310  const_iterator find(id_type i, bool update=false) const {
311  const_IdIter p = findItem(i);
312  return (p==m_ids.end()) ? end() :
313  boost::make_transform_iterator(p,
314  IterHelp(*this,update));
315  }
316 
317  // slow interface
319  std::pair<const_IdIter,const_IdIter> p =
320  std::equal_range(m_ids.begin(),m_ids.end(),Item(i));
321  return (p.first!=p.second) ? p.first : m_ids.end();
322  }
323 
324  // const_iterator begin(bool update=true) const {
325  const_iterator begin(bool update=false) const {
326  return boost::make_transform_iterator(m_ids.begin(),
327  IterHelp(*this,update));
328  }
329 
330  // const_iterator end(bool update=true) const {
331  const_iterator end(bool update=false) const {
332  return boost::make_transform_iterator(m_ids.end(),
333  IterHelp(*this,update));
334  }
335 
336 
337  // return an iterator range (implemented here to avoid dereference of detset)
338  template<typename CMP>
339  // Range equal_range(id_type i, CMP cmp, bool update=true) const {
340  Range equal_range(id_type i, CMP cmp, bool update=false) const {
341  std::pair<const_IdIter,const_IdIter> p =
342  std::equal_range(m_ids.begin(),m_ids.end(),i,cmp);
343  return Range(boost::make_transform_iterator(p.first,IterHelp(*this,update)),
344  boost::make_transform_iterator(p.second,IterHelp(*this,update))
345  );
346  }
347 
348  int subdetId() const { return m_subdetId; }
349 
350  bool empty() const { return m_ids.empty();}
351 
352 
353  size_type dataSize() const { return m_data.size(); }
354 
355  size_type size() const { return m_ids.size();}
356 
357  //FIXME fast interfaces, not consistent with associative nature of container....
358 
359  data_type operator()(size_t cell, size_t frame) const {
360  return m_data[m_ids[cell].offset+frame];
361  }
362 
363  data_type const * data(size_t cell) const {
364  return &m_data[m_ids[cell].offset];
365  }
366 
367  size_type detsetSize(size_t cell) const { return m_ids[cell].size; }
368 
369  id_type id(size_t cell) const {
370  return m_ids[cell].id;
371  }
372 
373  Item const & item(size_t cell) const {
374  return m_ids[cell];
375  }
376 
377  //------------------------------
378 
379  IdContainer const & ids() const { return m_ids;}
380  DataContainer const & data() const { return m_data;}
381 
382 
383  void update(Item const & item) const {
384  const_cast<self*>(this)->updateImpl(const_cast<Item&>(item));
385  }
386 
387  //Used by ROOT storage
389 
390  private:
391 
392  void updateImpl(Item & item);
393 
394  private:
395  // subdetector id (as returned by DetId::subdetId())
397 
398 
401 
402  };
403 
404  namespace dslv {
405  template< typename T>
406  class LazyGetter {
407  public:
408  virtual ~LazyGetter() {}
409  virtual void fill(typename DetSetVector<T>::FastFiller&) = 0;
410  };
411  }
412 
413 
414 
415  template<typename T>
416  inline DetSetVector<T>::DetSetVector(boost::shared_ptr<Getter> iGetter,
417  const std::vector<det_id_type>& iDets,
418  int isubdet):
419  m_subdetId(isubdet) {
420  getter=iGetter;
421 
422  m_ids.reserve(iDets.size());
423  det_id_type sanityCheck = 0;
424  for(std::vector<det_id_type>::const_iterator itDetId = iDets.begin(), itDetIdEnd = iDets.end();
425  itDetId != itDetIdEnd;
426  ++itDetId) {
427  assert(sanityCheck < *itDetId && "vector of det_id_type was not ordered");
428  sanityCheck = *itDetId;
429  m_ids.push_back(*itDetId);
430  }
431  }
432 
433  template<typename T>
434  inline void DetSetVector<T>::updateImpl(Item & item) {
435  // no getter or already updated
436  if (getter.empty()) assert(item.offset>=0);
437  if (item.offset!=-1 || getter.empty() ) return;
438  item.offset = int(m_data.size());
439  FastFiller ff(*this,item,true);
440  (*boost::any_cast<boost::shared_ptr<Getter> >(&getter))->fill(ff);
441  }
442 
443 
444 
445 
446  template<typename T>
447  inline void DetSet<T>::set(DetSetVector<T> const & icont,
448  typename Container::Item const & item, bool update) {
449  if (update) {
450  icont.update(item);
451  assert(item.offset>=0);
452  }
453  m_id=item.id;
454  m_data=&icont.data();
455  m_offset = item.offset;
456  m_size=item.size;
457  }
458 
459 }
460 
462 #include <boost/mpl/assert.hpp>
463 #include <boost/type_traits/is_same.hpp>
464 
465 //specialize behavior of edm::Ref to get access to the 'Det'
466 namespace edm {
467  /* Reference to an item inside a new DetSetVector ... */
468  namespace refhelper {
469  template<typename T>
470  struct FindTrait<typename edmNew::DetSetVector<T>,T> {
472  };
473  }
474  /* ... as there was one for the original DetSetVector*/
475 
476  /* Probably this one is not that useful .... */
477  namespace refhelper {
478  template<typename T>
479  struct FindSetForNewDetSetVector : public std::binary_function<const edmNew::DetSetVector<T>&, unsigned int, edmNew::DetSet<T> > {
481  typename self::result_type operator()(typename self::first_argument_type iContainer, typename self::second_argument_type iIndex) {
482  return &(iContainer[iIndex]);
483  }
484  };
485 
486  template<typename T>
487  struct FindTrait<edmNew::DetSetVector<T>, edmNew::DetSet<T> > {
489  };
490  }
491  /* ... implementation is provided, just in case it's needed */
492 }
493 
494 namespace edmNew {
495  //helper function to make it easier to create a edm::Ref to a new DSV
496  template<class HandleT>
498  makeRefTo(const HandleT& iHandle,
499  typename HandleT::element_type::value_type::const_iterator itIter) {
500  BOOST_MPL_ASSERT((boost::is_same<typename HandleT::element_type, DetSetVector<typename HandleT::element_type::value_type::value_type> >));
501  typename HandleT::element_type::size_type index = (itIter - &*iHandle->data().begin());
502  return edm::Ref<typename HandleT::element_type,
504  (iHandle,index);
505  }
506 }
507 
509 
510 namespace edm {
511  template<typename T>
512  class ContainerMaskTraits<edmNew::DetSetVector<T> > {
513  public:
514  typedef T value_type;
515 
516  static size_t size(const edmNew::DetSetVector<T>* iContainer) { return iContainer->dataSize();}
517  static unsigned int indexFor(const value_type* iElement, const edmNew::DetSetVector<T>* iContainer) {
518  return iElement-&(iContainer->data().front());
519  }
520  };
521 }
522 
523 #endif
524 
void swap(ora::Record &rh, ora::Record &lh)
Definition: Record.h:70
bool isValid(id_type i) const
DataContainer const & data() const
edm::Ref< typename HandleT::element_type, typename HandleT::element_type::value_type::value_type > makeRefTo(const HandleT &iHandle, typename HandleT::element_type::value_type::const_iterator itIter)
static unsigned int indexFor(const value_type *iElement, const edmNew::DetSetVector< T > *iContainer)
int i
Definition: DBlmapReader.cc:9
void swap(DetSetVectorTrans &rh)
void push_back(data_type const &d)
void update(Item const &item) const
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
const_iterator end(bool update=false) const
size_type dataSize() const
string fill
Definition: lumiContext.py:319
DetSetVector< T >::id_type id_type
Range equal_range(id_type i, CMP cmp, bool update=false) const
std::vector< data_type > DataContainer
Item & push_back(id_type iid)
const_IdIter findItem(id_type i) const
bool any(const std::vector< T > &v, const T &what)
Definition: ECalSD.cc:34
IdContainer::iterator IdIter
unsigned int det_id_type
Definition: DetSetNew.h:10
void set(Container const &icont, typename Container::Item const &item, bool update=true)
edmNew::DetSetVector< T >::FindForDetSetVector value
std::vector< data_type >::const_iterator const_DataIter
void swap(DetSetVector &rh)
void throw_range(det_id_type iid)
list namespace
Definition: asciidump.py:379
std::pair< const_IdIter, const_DataIter > const_IterPair
DetSetVector(int isubdet=0)
std::pair< const_iterator, const_iterator > Range
void pop_back(id_type iid)
#define CMS_CLASS_VERSION(_version_)
id_type id(size_t cell) const
uint16_t size_type
dstvdetails::DetSetVectorTrans Trans
self::result_type operator()(typename self::first_argument_type iContainer, typename self::second_argument_type iIndex)
Item const & item(size_t cell) const
DetSetVector< T > const * v
bool onDemand() const
IterHelp(DetSetVector< T > const &iv, bool iup)
Item & addItem(id_type iid, size_type isize)
DetSetVector< T >::data_type value_type
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
bool exists(id_type i) const
IdContainer const & ids() const
data_type const * data(size_t cell) const
FastFiller(DetSetVector< T > &iv, id_type id, bool isaveEmpty=false)
Item(id_type i=0, int io=-1, size_type is=0)
DetSetVector< T >::Item & item
void swap(IdContainer &iic, DataContainer &idc)
Container::value_type value_type
DetSetVector< T >::id_type key_type
static size_t size(const edmNew::DetSetVector< T > *iContainer)
void resize(size_t isize, size_t dsize)
size_type detsetSize(size_t cell) const
DetSet insert(id_type iid, data_type const *idata, size_type isize)
std::vector< Item > IdContainer
friend class FindForDetSetVector
dslv::LazyGetter< T > Getter
void errorIdExists(det_id_type iid)
void reserve(size_t isize, size_t dsize)
std::vector< data_type >::iterator DataIter
result_type & operator()(Item const &item) const
const_iterator find(id_type i, bool update=false) const
#define private
Definition: FWFileEntry.h:17
DetSet insert(id_type iid, size_type isize)
size_type size() const
#define update(a, b)
std::pair< IdIter, DataIter > IterPair
void updateImpl(Item &item)
IdContainer::const_iterator const_IdIter
data_type operator()(size_t cell, size_t frame) const
self::result_type operator()(typename self::first_argument_type iContainer, typename self::second_argument_type iIndex)
edmNew::DetSet< T > DetSet
volatile std::atomic< bool > shutdown_flag false
FastFiller(DetSetVector< T > &iv, typename DetSetVector< T >::Item &it, bool isaveEmpty=false)
data_type & operator[](size_type i)
edm::refhelper::FindForNewDetSetVector< data_type > RefFinder
long double T
DetSetVector< T >::size_type size_type
DetSet operator[](id_type i) const
const_iterator begin(bool update=false) const
unsigned int size_type