Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00037 #include "TopQuarkAnalysis/TopHitFit/interface/Objpair.h"
00038 #include <ostream>
00039 #include <cassert>
00040
00041
00042 using std::ostream;
00043
00044
00045 namespace hitfit {
00046
00047
00048 Objpair::Objpair (int i, int j, int nconstraints)
00049
00050
00051
00052
00053
00054
00055
00056
00057 : _i (i),
00058 _j (j),
00059 _for_constraint (nconstraints)
00060 {
00061 }
00062
00063
00064 void Objpair::has_constraint (std::vector<signed char>::size_type k, int val)
00065
00066
00067
00068
00069
00070
00071
00072 {
00073 assert (k < _for_constraint.size());
00074 _for_constraint[k] = static_cast<signed char> (val);
00075 }
00076
00077
00086 std::ostream& operator<< (std::ostream& s, const Objpair& o)
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097 {
00098 s << o._i << " " << o._j;
00099 for (unsigned k = 0; k < o._for_constraint.size(); ++k)
00100 s << " " << static_cast<int> (o._for_constraint[k]);
00101 return s;
00102 }
00103
00104
00105 }