Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00036 #include "TopQuarkAnalysis/TopHitFit/interface/Lepjets_Event_Lep.h"
00037
00038
00039 namespace hitfit {
00040
00041
00042 Lepjets_Event_Lep::Lepjets_Event_Lep (const Fourvec& p,
00043 int type,
00044 const Vector_Resolution& res)
00045
00046
00047
00048
00049
00050
00051
00052
00053 : _p (p),
00054 _type (type),
00055 _res (res)
00056 {
00057 }
00058
00059
00060 Fourvec& Lepjets_Event_Lep::p ()
00061
00062
00063
00064
00065
00066
00067 {
00068 return _p;
00069 }
00070
00071
00072 const Fourvec& Lepjets_Event_Lep::p () const
00073
00074
00075
00076
00077
00078
00079 {
00080 return _p;
00081 }
00082
00083
00084 int& Lepjets_Event_Lep::type ()
00085
00086
00087
00088
00089
00090
00091 {
00092 return _type;
00093 }
00094
00095
00096 int Lepjets_Event_Lep::type () const
00097
00098
00099
00100
00101
00102
00103 {
00104 return _type;
00105 }
00106
00107
00108 const Vector_Resolution& Lepjets_Event_Lep::res () const
00109
00110
00111
00112
00113
00114
00115 {
00116 return _res;
00117 }
00118
00119
00120 Vector_Resolution& Lepjets_Event_Lep::res ()
00121
00122
00123
00124
00125
00126
00127 {
00128 return _res;
00129 }
00130
00131
00132 double Lepjets_Event_Lep::p_sigma () const
00133
00134
00135
00136
00137
00138
00139 {
00140 return _res.p_sigma (_p);
00141 }
00142
00143
00144 double Lepjets_Event_Lep::eta_sigma () const
00145
00146
00147
00148
00149
00150
00151 {
00152 return _res.eta_sigma (_p);
00153 }
00154
00155
00156 double Lepjets_Event_Lep::phi_sigma () const
00157
00158
00159
00160
00161
00162
00163 {
00164 return _res.phi_sigma (_p);
00165 }
00166
00167
00168 void Lepjets_Event_Lep::smear (CLHEP::HepRandomEngine& engine,
00169 bool smear_dir )
00170
00171
00172
00173
00174
00175
00176
00177 {
00178 _res.smear (_p, engine, smear_dir);
00179 }
00180
00181
00182 std::ostream& Lepjets_Event_Lep::dump (std::ostream& s,
00183 bool full ) const
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194 {
00195 s << "[" << _type << "] " << _p << "; pt: " << _p.perp() << ", eta: " << _p.eta() << ", phi: " << _p.phi() ;
00196 if (full) {
00197 s << "\n " << _res;
00198 }
00199 return s;
00200 }
00201
00202
00211 std::ostream& operator<< (std::ostream& s, const Lepjets_Event_Lep& l)
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222 {
00223 return l.dump (s);
00224 }
00225
00226
00227 bool Lepjets_Event_Lep::operator< (const Lepjets_Event_Lep& x) const
00228
00229
00230
00231
00232
00233 {
00234 return p().perp2() < x.p().perp2();
00235 }
00236
00237
00238 }