CMS 3D CMS Logo

cscPackerCompare.h
Go to the documentation of this file.
1 #include <iostream>
2 #include <typeinfo>
4 
8 template <class T>
9 bool cscPackerCompare(const T &t1, const T &t2) {
10  bool result = true;
11  if (t1 != t2) {
12  std::cerr << "Mismatch:\n" << t1 << "\n" << t2 << std::endl;
13  result = false;
14  }
15  return result;
16 }
17 
18 template <class T>
20  boost::dynamic_bitset<> firstPack = t.pack();
21  unsigned char data[10000];
23  return T((unsigned short int *)data);
24 }
25 
26 // packs a class, then unpacks, packs again, and compares
27 template <class T>
29  boost::dynamic_bitset<> firstPack = t.pack();
30  unsigned char data[1000];
32  T newObject((unsigned short int *)data);
33  boost::dynamic_bitset<> secondPack = newObject.pack();
34  if (firstPack != secondPack) {
35  std::cerr << "Mismatch in " << typeid(t).name() << "\n";
37  bitset_utilities::printWords(secondPack);
38  return false;
39  }
40  return true;
41 }
RandomServiceHelper.t2
t2
Definition: RandomServiceHelper.py:257
bitset_utilities::bitsetToChar
void bitsetToChar(const boost::dynamic_bitset<> &bs, unsigned char *result)
this method takes bitset obj and returns char * array
Definition: bitset_append.cc:32
RandomServiceHelper.t1
t1
Definition: RandomServiceHelper.py:256
cscPackerCompare
bool cscPackerCompare(const T &t1, const T &t2)
Definition: cscPackerCompare.h:9
OrderedSet.t
t
Definition: OrderedSet.py:90
cscPackAndUnpack
T cscPackAndUnpack(T &t)
Definition: cscPackerCompare.h:19
beam_dqm_sourceclient-live_cfg.cerr
cerr
Definition: beam_dqm_sourceclient-live_cfg.py:17
T
long double T
Definition: Basic3DVectorLD.h:48
cscClassPackerCompare
bool cscClassPackerCompare(T &t)
Definition: cscPackerCompare.h:28
bitset_append.h
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
data
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
mps_fire.result
result
Definition: mps_fire.py:303
bitset_utilities::printWords
void printWords(const boost::dynamic_bitset<> &bs)
Definition: bitset_append.cc:40