CMS 3D CMS Logo

DEcompare.h
Go to the documentation of this file.
1 #ifndef DEcompare_H
2 #define DEcompare_H
3 
4 /*\class template DEcompare
5  *\description data|emulation comparison base
6  *\author Nuno Leonardo (CERN)
7  *\date 07.03
8  */
9 
10 /*\note specialization free*/
11 
12 #include <ostream>
13 
16 
17 template <typename T>
18 struct de_rank;
19 template <typename T>
20 struct DEutils;
21 template <typename T>
22 struct DEtrait;
23 
24 template <typename T>
25 class DEcompare {
26  typedef typename T::size_type col_sz;
27  typedef typename T::const_iterator col_cit;
28  typedef typename T::iterator col_it;
30  typedef typename de_trait::coll_type coll_type;
31  typedef typename de_trait::cand_type cand_type;
32  typedef typename std::vector<cand_type> cand_vec;
33  typedef typename std::pair<cand_type, cand_type> cand_pair;
34  typedef typename de_trait::coll_type const* typeT;
35 
36 public:
37  DEcompare(){};
39 
41  ncand_[0] = get_ncand(dt);
42  ncand_[1] = get_ncand(em);
43  deDigiColl_.clear();
44  if (debug_)
45  LogDebug("DEcompare") << "DEcompare"
46  << ": creating instance of type: " << GetName(0) << ", data size:" << data_->size()
47  << " ncand:" << ncand_[0] << ", emul size:" << emul_->size() << " ncand:" << ncand_[1]
48  << ".\n"
49  << std::flush;
50  };
51 
52  //handles constructor (deprecated)
53  /*
54  DEcompare(edm::Handle<T> dt, edm::Handle<T> em) :
55  data_(dt.product()), emul_(em.product()), t_match(false) {
56  ncand_[0]=get_ncand(dt.product());
57  ncand_[1]=get_ncand(em.product());
58  deDigiColl_.clear();
59  }
60  */
61 
62  bool do_compare(std::ostream&, int dump = 0);
63  bool CompareCollections(std::ostream&, int dump = 0);
64  bool SortCollections(cand_vec& dg, cand_vec& eg, cand_vec& db, cand_vec& eb);
65  bool DumpCandidate(col_cit itd, col_cit itm, std::ostream&, int mode = 0);
66  int get_ncand(typeT) const;
67  int get_ncand(int i) const {
68  if (debug_ && (i < 0 || i > 2))
69  LogDebug("DEcompare") << "DEcompare illegal number of candidates request flag:" << i << "\n";
70  return ncand_[i];
71  }
72 
73  std::string GetName(int i = 0) const { return de_utils.GetName(i); }
74  std::string print(col_cit it) const { return de_utils.print(it); }
75  bool is_empty(col_cit it) const { return de_utils.is_empty(it); }
76  inline int de_type() const { return de_trait::de_type(); }
77  bool get_match() const { return t_match; }
78 
80 
81  std::string print() const {
82  std::stringstream ss("");
83  for (col_cit itd = data_->begin(); itd != data_->end(); itd++)
84  if (!is_empty(itd))
85  ss << " data: " << print(itd);
86  for (col_cit itm = emul_->begin(); itm != emul_->end(); itm++)
87  if (!is_empty(itm))
88  ss << " emul: " << print(itm);
89  return ss.str();
90  }
91 
92 public:
93  static const int debug_ = 0;
94 
95 private:
99  bool t_match;
100  int ncand_[2];
102 };
103 
104 template <typename T>
105 bool DEcompare<T>::do_compare(std::ostream& os, int dump) {
106  if (debug_)
107  std::cout << " DEcompare::do_compare... " << GetName() << "\n" << std::flush;
108  t_match = CompareCollections(os, dump);
109  std::string ok;
110  if (t_match)
111  ok = "successful";
112  else
113  ok = "failed";
114  if (dump == -1 || (dump == 1 && !t_match))
115  os << " ..." << GetName() << " data and emulator comparison: " << ok.c_str() << std::endl;
116  return t_match;
117 }
118 
119 template <typename T>
121  int ncand = 0;
122  for (col_cit it = col->begin(); it != col->end(); it++) {
123  if (!is_empty(it)) {
124  ncand++;
125  }
126  }
127  return ncand;
128 }
129 
130 template <typename T>
131 bool DEcompare<T>::CompareCollections(std::ostream& os, int dump) {
132  if (debug_)
133  std::cout << " DEcompare::CompareCollections...\n" << std::flush;
134  bool match = true;
135  int ndata = get_ncand(0);
136  int nemul = get_ncand(1);
137  assert(ndata || nemul);
138 
139  cand_vec data_good, emul_good, data_bad, emul_bad;
140  data_good.reserve(data_->size());
141  emul_good.reserve(emul_->size());
142  data_bad.reserve(data_->size());
143  emul_bad.reserve(emul_->size());
144 
145  // find matching candidates -- tbd report order match
146  match &= SortCollections(data_good, emul_good, data_bad, emul_bad);
147 
148  if (debug_)
149  std::cout << "\tDEcompare stats2:"
150  << " data_bad:" << data_bad.size() << " emul_bad:" << emul_bad.size() << " data_good:" << data_good.size()
151  << " emul_good:" << emul_good.size() << " data_:" << data_->size() << " emul_:" << emul_->size() << ".\n"
152  << std::flush;
153 
154  if (dump == -1 || (dump == 1 && !match)) {
155  os << " number of candidates: " << ndata;
156  if (ndata != nemul) {
157  match &= false;
158  os << " (data) " << nemul << " (emul) disagree";
159  }
160  os << std::endl;
161  }
162 
163  col_cit itd, itm;
164  int prtmode = 0;
165  col_sz ndt = 0, nem = 0, nde = 0;
166  deDigiColl_.clear();
167 
169 
170  ndt = data_bad.size();
171  nem = emul_bad.size();
172  nde = (ndt > nem) ? ndt : nem;
173 
174  itd = data_bad.begin();
175  itm = emul_bad.begin();
176 
177  if (dump == -1)
178  os << " un-matched (" << nde << ")\n";
179 
180  for (col_sz i = 0; i < nde; i++) {
181  if (i < ndt && i < nem)
182  prtmode = 0; //dt+em
183  else if (i < ndt && i >= nem)
184  prtmode = 1; //dt
185  else if (i >= ndt && i < nem)
186  prtmode = 2; //em
187  else
188  assert(0);
189 
190  if (abs(dump) == 1)
191  DumpCandidate(itd, itm, os, prtmode);
192  else if (prtmode == 0) {
193  if ((dump == 2 && !de_utils.de_equal_loc(*itd, *itm)) || (dump == 3 && de_utils.de_equal_loc(*itd, *itm)))
194  DumpCandidate(itd, itm, os, prtmode);
195  }
196 
197  // Fill in DEdigi collection
198  if (prtmode == 0) {
199  if (de_utils.de_equal_loc(*itd, *itm)) {
200  deDigiColl_.push_back(de_utils.DEDigi(itd, itm, 1));
201  } else {
202  deDigiColl_.push_back(de_utils.DEDigi(itd, itm, 2));
203  }
204  } else if (prtmode == 1) {
205  deDigiColl_.push_back(de_utils.DEDigi(itd, itd, 3));
206  } else if (prtmode == 2) {
207  deDigiColl_.push_back(de_utils.DEDigi(itm, itm, 4));
208  }
209 
210  itd++;
211  itm++;
212  }
213 
215 
216  itd = data_good.begin();
217  itm = emul_good.begin();
218 
219  assert(data_good.size() == emul_good.size());
220  if (dump == -1)
221  os << " matched (" << data_good.size() << ")\n";
222 
223  for (col_sz i = 0; i < data_good.size(); i++) {
224  assert(de_utils.de_equal(*itd, *itm));
225  if (dump == -1)
226  DumpCandidate(itd, itm, os, prtmode);
227  deDigiColl_.push_back(de_utils.DEDigi(itd, itm, 0));
228  itd++;
229  itm++;
230  }
231 
232  if (debug_)
233  std::cout << "DEcompare<T>::CompareCollections end.\n" << std::flush;
234 
235  return match;
236 }
237 
238 template <typename T>
239 bool DEcompare<T>::SortCollections(cand_vec& data_good, cand_vec& emul_good, cand_vec& data_bad, cand_vec& emul_bad) {
240  if (debug_)
241  std::cout << " DEcompare::SortCollections...\n" << std::flush;
242 
243  bool match = true;
244  cand_vec data_tmp, emul_tmp;
245 
246  data_good.clear();
247  emul_good.clear();
248  data_bad.clear();
249  emul_bad.clear();
250  data_tmp.clear();
251  emul_tmp.clear();
252 
253  for (col_cit ite = emul_->begin(); ite != emul_->end(); ite++) {
254  if (!is_empty(ite)) {
255  emul_tmp.push_back(*ite);
256  }
257  }
258 
259  for (col_cit itd = data_->begin(); itd != data_->end(); itd++) {
260  if (is_empty(itd))
261  continue;
262  col_it ite = emul_tmp.end();
263  ite = de_utils.de_find(emul_tmp.begin(), emul_tmp.end(), *itd);
264  if (ite != emul_tmp.end()) {
265  data_good.push_back(*itd);
266  emul_good.push_back(*ite);
267  ite = emul_tmp.erase(ite);
268  } else {
269  data_tmp.push_back(*itd);
270  match &= false;
271  }
272  }
273 
274  for (col_it itd = data_tmp.begin(); itd != data_tmp.end(); itd++) {
275  for (col_it ite = emul_tmp.begin(); ite != emul_tmp.end(); ite++) {
276  if (de_utils.de_equal_loc(*itd, *ite)) {
277  data_bad.push_back(*itd);
278  emul_bad.push_back(*ite);
279  itd = data_tmp.erase(itd) - 1;
280  ite = emul_tmp.erase(ite) - 1;
281  break;
282  }
283  }
284  }
285 
286  sort(data_tmp.begin(), data_tmp.end(), de_rank<coll_type>());
287  sort(emul_tmp.begin(), emul_tmp.end(), de_rank<coll_type>());
288 
289  data_bad.insert(data_bad.end(), data_tmp.begin(), data_tmp.end());
290  emul_bad.insert(emul_bad.end(), emul_tmp.begin(), emul_tmp.end());
291 
292  if (debug_)
293  std::cout << "\tDEcompare stats1:"
294  << " data_bad:" << data_bad.size() << " emul_bad:" << emul_bad.size() << " data_good:" << data_good.size()
295  << " emul_good:" << emul_good.size() << " data: " << get_ncand(data_) << " emul: " << get_ncand(emul_)
296  << "\n"
297  << std::flush;
298  if (debug_)
299  std::cout << "DEcompare<T>::SortCollections end.\n" << std::flush;
300  return match;
301 }
302 
303 template <typename T>
304 bool DEcompare<T>::DumpCandidate(col_cit itd, col_cit itm, std::ostream& os, int mode) {
305  if (mode != 2)
306  os << " data: " << print(itd);
307  if (mode != 1)
308  os << " emul: " << print(itm) << std::endl;
309  if (mode == 0)
310  if (!de_utils.de_equal(*itd, *itm))
311  return false;
312  return true;
313 }
314 
315 #endif
bool DumpCandidate(col_cit itd, col_cit itm, std::ostream &, int mode=0)
Definition: DEcompare.h:304
float dt
Definition: AMPTWrapper.h:136
~DEcompare()
Definition: DEcompare.h:38
bool get_match() const
Definition: DEcompare.h:77
bool is_empty(col_cit it) const
Definition: DEcompare.h:75
bool CompareCollections(std::ostream &, int dump=0)
Definition: DEcompare.h:131
— order candidates —
Definition: DEcompare.h:18
static const int debug_
Definition: DEcompare.h:93
de_trait::coll_type const * typeT
Definition: DEcompare.h:34
typeT data_
Definition: DEcompare.h:96
de_trait::cand_type cand_type
Definition: DEcompare.h:31
bool SortCollections(cand_vec &dg, cand_vec &eg, cand_vec &db, cand_vec &eb)
Definition: DEcompare.h:239
std::vector< L1DataEmulDigi > L1DEDigiCollection
Definition: DEtrait.h:101
assert(be >=bs)
std::string print() const
Definition: DEcompare.h:81
uint16_t size_type
int de_type() const
Definition: DEcompare.h:76
bool do_compare(std::ostream &, int dump=0)
Definition: DEcompare.h:105
L1DEDigiCollection getDEDigis() const
Definition: DEcompare.h:79
DEtrait< T > de_trait
Definition: DEcompare.h:29
int get_ncand(int i) const
Definition: DEcompare.h:67
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::vector< cand_type > cand_vec
Definition: DEcompare.h:32
int get_ncand(typeT) const
Definition: DEcompare.h:120
std::string print(col_cit it) const
Definition: DEcompare.h:74
T::size_type col_sz
Definition: DEcompare.h:26
def is_empty(h)
Definition: utils.py:179
int ncand_[2]
Definition: DEcompare.h:100
std::string GetName(int i=0) const
Definition: DEcompare.h:73
T::const_iterator col_cit
Definition: DEcompare.h:27
col
Definition: cuy.py:1009
std::pair< cand_type, cand_type > cand_pair
Definition: DEcompare.h:33
bool t_match
Definition: DEcompare.h:99
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
DEcompare()
Definition: DEcompare.h:37
DEutils< T > de_utils
Definition: DEcompare.h:98
T::iterator col_it
Definition: DEcompare.h:28
de_trait::coll_type coll_type
Definition: DEcompare.h:30
typeT emul_
Definition: DEcompare.h:97
DEcompare(typeT dt, typeT em)
Definition: DEcompare.h:40
#define LogDebug(id)
L1DEDigiCollection deDigiColl_
Definition: DEcompare.h:101