CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PixelDigiCollection.cc
Go to the documentation of this file.
2 #include <iostream>
3 #include <algorithm>
4 
5 void PixelDigiCollection::put(Range input, unsigned int detID) {
6  // put in Digis of detID
7 
8  // store size of vector before put
10 
11  // put in PixelDigis from input
12  bool first = true;
13 
14  // fill input in temporary vector for sorting
15  std::vector<PixelDigi> temporary;
16  PixelDigiCollection::ContainerIterator sort_begin = input.first;
17  PixelDigiCollection::ContainerIterator sort_end = input.second;
18  for ( ;sort_begin != sort_end; ++sort_begin ) {
19  temporary.push_back(*sort_begin);
20  }
21  std::sort(temporary.begin(),temporary.end());
22 
23  // iterators over input
26  for ( ;begin != end; ++begin ) {
27  container_.push_back(*begin);
28  if ( first ) {
29  inputRange.first = container_.size()-1;
30  first = false;
31  }
32  }
33  inputRange.second = container_.size()-1;
34 
35  // fill map
36  map_[detID] = inputRange;
37 
38 }
39 
40 const PixelDigiCollection::Range PixelDigiCollection::get(unsigned int detID) const {
41  // get Digis of detID
42 
43  auto found = map_.find(detID);
44  PixelDigiCollection::IndexRange returnIndexRange{};
45  if(found != map_.end()) {
46  returnIndexRange = found->second;
47  }
48 
49  PixelDigiCollection::Range returnRange;
50  returnRange.first = container_.begin()+returnIndexRange.first;
51  returnRange.second = container_.begin()+returnIndexRange.second+1;
52 
53  return returnRange;
54 }
55 
56 const std::vector<unsigned int> PixelDigiCollection::detIDs() const {
57  // returns vector of detIDs in map
58 
61 
62  std::vector<unsigned int> output;
63 
64  for (; begin != end; ++begin) {
65  output.push_back(begin->first);
66  }
67 
68  return output;
69 
70 }
inputRange
Get input source.
static std::string const input
Definition: EdmProvDump.cc:43
const Range get(unsigned int detID) const
std::map< unsigned int, IndexRange >::const_iterator RegistryIterator
std::vector< PixelDigi > container_
#define end
Definition: vmac.h:37
std::pair< ContainerIterator, ContainerIterator > Range
void put(Range input, unsigned int detID)
std::vector< PixelDigi >::const_iterator ContainerIterator
const std::vector< unsigned int > detIDs() const
#define begin
Definition: vmac.h:30
std::pair< unsigned int, unsigned int > IndexRange