CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackCollectionFP420.cc
Go to the documentation of this file.
1 // File: TrackCollectionFP420.cc
3 // Date: 12.2006
4 // Description: TrackCollectionFP420 for FP420
5 // Modifications:
8 #include <iostream>
9 #include <algorithm>
10 using namespace std;
11 //#define mydigidebug
12 
14  // put in RecHits of stationID
15 
16  // store size of vector before put
18 
19  // put in TrackFP420s from input
20  bool first = true;
21 
22  // fill input in temporary vector for sorting
23  std::vector<TrackFP420> temporary;
24  TrackCollectionFP420::ContainerIterator sort_begin = input.first;
25  TrackCollectionFP420::ContainerIterator sort_end = input.second;
26 #ifdef mydigidebug
27  std::cout <<" !!!!!!!!!!!!!!!! TrackCollectionFP420:: !!!! put !!!! start " << std::endl;
28 #endif
29  for ( ;sort_begin != sort_end; ++sort_begin ) {
30 #ifdef mydigidebug
31  std::cout <<"put: temporary.push_back " << std::endl;
32 #endif
33  temporary.push_back(*sort_begin);
34  }
35  std::sort(temporary.begin(),temporary.end());
36 
37  // iterators over input
40  for ( ;begin != end; ++begin ) {
41  container_.push_back(*begin);
42  if ( first ) {
43  inputRange.first = container_.size()-1;
44  // inputRange.first = container_.size();
45  first = false;
46  }
47  }
48 
49  // since we start from 0, then the last element will be size-1
50  if(container_.size() != 0) {
51  inputRange.second = container_.size()-1;
52  }
53  else {
54  inputRange.first = container_.size();
55  inputRange.second = container_.size();
56  }
57  //inputRange.second = container_.size()-1;
59 
60 #ifdef mydigidebug
61  std::cout <<"put: container_.size() = " << container_.size() << std::endl;
62  std::cout <<"put: inputRange.first = " << inputRange.first << std::endl;
63  std::cout <<"put: inputRange.second = " << inputRange.second << std::endl;
64 #endif
65 
66  // fill map
67  map_[stationID] = inputRange;
68 
69 }
70 
71 const TrackCollectionFP420::Range TrackCollectionFP420::get(unsigned int stationID) const {
72  // get RecHits of stationID
73 
74 #ifdef mydigidebug
75 std::cout <<"TrackCollectionFP420::get:stationID= " << stationID << std::endl;
76 #endif
77  TrackCollectionFP420::RegistryIterator returnIndex = map_.find(stationID);
78  TrackCollectionFP420::IndexRange returnIndexRange = returnIndex->second;
79 #ifdef mydigidebug
80  std::cout <<"TrackCollectionFP420::get1: returnIndexRange.first= " << returnIndexRange.first << std::endl;
81  std::cout <<"TrackCollectionFP420::get1: returnIndexRange.second= " << returnIndexRange.second << std::endl;
82 #endif
83 
84  TrackCollectionFP420::Range returnRange;
85  returnRange.first = container_.begin()+returnIndexRange.first;
86  if(returnIndexRange.second != 0 ) {
87  returnRange.second = container_.begin()+returnIndexRange.second+1;
88  }else{
89  returnRange.second = container_.begin()+returnIndexRange.second;
90  }
91 #ifdef mydigidebug
92  std::cout <<"TrackCollectionFP420::get2: container_.size() = " << container_.size() << std::endl;
93  std::cout <<"TrackCollectionFP420::get2: returnIndexRange.first= " << returnIndexRange.first << std::endl;
94  std::cout <<"TrackCollectionFP420::get2: returnIndexRange.second= " << returnIndexRange.second << std::endl;
95 #endif
96  return returnRange;
97 }
98 
99 
100 
102 container_.clear();
103 }
105 
107 
108  std::vector<TrackFP420> temporary;
109  TrackCollectionFP420::ContainerIterator sort_begin = input.first;
110  TrackCollectionFP420::ContainerIterator sort_end = input.second;
111  for ( ;sort_begin != sort_end; ++sort_begin ) {
112  temporary.push_back(*sort_begin);
113  }
114  std::sort(temporary.begin(),temporary.end());
115 
116  // temporary.clear();
119  for ( ;begin != end; ++begin ) {
120  container_.push_back(*begin);
121  }
122  //container_.clear();
123  inputRange.first = container_.size()-container_.size();
124  inputRange.second = container_.size()-container_.size();
125 
126 #ifdef mydigidebug
127  std::cout <<"putclear: container_.size() = " << container_.size() << std::endl;
128  std::cout <<"putclear: inputRange.first = " << inputRange.first << std::endl;
129  std::cout <<"putclear: inputRange.second = " << inputRange.second << std::endl;
130 #endif
131 
132 
133  map_[stationID] = inputRange;
134 }
135 
136 
137 
138 
139 
140 
141 const std::vector<unsigned int> TrackCollectionFP420::stationIDs() const {
142  // returns vector of stationIDs in map
143 
144 #ifdef mydigidebug
145 std::cout <<"TrackCollectionFP420::stationIDs:start " << std::endl;
146 #endif
149 
150  std::vector<unsigned int> output;
151 
152  for (; begin != end; ++begin) {
153  output.push_back(begin->first);
154  }
155 
156  return output;
157 
158 }
void putclear(Range input, unsigned int stationID)
std::pair< unsigned int, unsigned int > IndexRange
inputRange
Get input source.
const std::vector< unsigned int > stationIDs() const
std::pair< ContainerIterator, ContainerIterator > Range
std::map< unsigned int, IndexRange >::const_iterator RegistryIterator
std::vector< TrackFP420 >::const_iterator ContainerIterator
const Range get(unsigned int stationID) const
#define end
Definition: vmac.h:38
bool first
Definition: L1TdeRCT.cc:94
void put(Range input, unsigned int stationID)
#define begin
Definition: vmac.h:31
tuple cout
Definition: gather_cfg.py:121
Set * container_