#include <Truth.h>
Public Member Functions | |
| Truth () | |
| ~Truth () | |
| void | Clear () |
| bool | Add (const Data &value) |
| bool | Add (short key, float data) |
| void | SetWeight (double value) |
| void | SetFiducial (bool value) |
| TruthRecoIterator | RecoBegIterator () |
| TruthRecoIterator | RecoEndIterator () |
| TruthRecoIterator | Erase (TruthRecoIterator it) |
| const FluxInfo & | Flux () const |
| const Vertex | GetVtx () const |
| Particle::Particle_t | Particle () const |
| Particle::Particle_t | ParticleNoOscl () const |
| float | Energy () const |
| float | ENeu () const |
| float | ELep () const |
| float | EHad () const |
| float | Px () const |
| float | Py () const |
| float | Pz () const |
| float | TrueY () const |
| float | TrueX () const |
| float | TrueQ2 () const |
| float | TrueW2 () const |
| float | VtxX () const |
| float | VtxY () const |
| float | VtxZ () const |
| float | TgtE () const |
| float | TgtP () const |
| float | TgtPx () const |
| float | TgtPy () const |
| float | TgtPz () const |
| float | Sigma () const |
| float | SigmaDiff () const |
| int | INu () const |
| int | Resonance () const |
| int | Interaction () const |
| int | Flags () const |
| int | InitState () const |
| int | Nucleus () const |
| int | HadFS () const |
| short | TruthIndex () const |
| int | ChildBeg () const |
| int | ChildEnd () const |
| bool | IsChild (int stdhep) const |
| double | Weight () const |
| bool | IsCC () const |
| bool | IsNC () const |
| bool | IsDIS () const |
| bool | IsQES () const |
| bool | IsRES () const |
| TruthRecoIter | Find (const Event &event) const |
| TruthRecoIter | Find (const Track &track) const |
| TruthRecoIter | Find (const RecoNu &recon) const |
| TruthRecoIter | Find (const Shower &shower) const |
| bool | Match (const Event &event) const |
| bool | Match (const Track &track) const |
| bool | Match (const RecoNu &recon) const |
| bool | Match (const Shower &shower) const |
| bool | Match (const StdHep &stdhep) const |
| TruthRecoIter | RecoBeg () const |
| TruthRecoIter | RecoEnd () const |
| DataIter | DataBeg () const |
| DataIter | DataEnd () const |
| bool | KeyExists (short key) const |
| float | operator[] (short key) const |
| float | DataAt (short key) const |
| void | Print (std::ostream &o=std::cout) const |
Private Attributes | |
| Short_t | index |
| Int_t | stdhep [2] |
| Int_t | inu |
| Int_t | inunoosc |
| Int_t | itg |
| Int_t | iboson |
| Int_t | iresonance |
| Int_t | iaction |
| Int_t | istruckq |
| Int_t | iflags |
| Int_t | ndigu |
| Int_t | ndigv |
| Float_t | tphu |
| Float_t | tphv |
| Float_t | a |
| Float_t | z |
| Float_t | sigma |
| Float_t | sigmadiff |
| Float_t | x |
| Float_t | y |
| Float_t | q2 |
| Float_t | w2 |
| Float_t | emfrac |
| Float_t | vtxx |
| Float_t | vtxy |
| Float_t | vtxz |
| Float_t | p4neu [4] |
| Float_t | p4neunoosc [4] |
| Float_t | p4shw [4] |
| Float_t | p4tgt [4] |
| Bool_t | isfid |
| Int_t | init_state |
| Int_t | nucleus |
| Int_t | had_fs |
| Double_t | weight |
| FluxInfo | flux |
| DataVec | fData |
| std::vector< Anp::TruthReco > | fReco |
Friends | |
| class | FillTruth |
|
|
Definition at line 18 of file Truth.cxx. References p4neu, p4neunoosc, p4shw, p4tgt, and stdhep. 00019 :index (-1), 00020 inu (-1), 00021 inunoosc (-1), 00022 itg (-1), 00023 iboson (-1), 00024 iresonance (-1), 00025 iaction (-1), 00026 istruckq (-1), 00027 iflags (-1), 00028 ndigu (-1), 00029 ndigv (-1), 00030 tphu (-1.0e6), 00031 tphv (-1.0e6), 00032 a (-1.0e6), 00033 z (-1.0e6), 00034 sigma (-1.0e6), 00035 sigmadiff (-1.0e6), 00036 x (-1.0e6), 00037 y (-1.0e6), 00038 q2 (-1.0e6), 00039 w2 (-1.0e6), 00040 emfrac (-1.0e6), 00041 vtxx (-1.0e6), 00042 vtxy (-1.0e6), 00043 vtxz (-1.0e6), 00044 isfid(false), 00045 init_state(0), 00046 nucleus(0), 00047 had_fs(0), 00048 weight(1.0), 00049 flux(), 00050 fData(), 00051 fReco() 00052 { 00053 stdhep[0] = -1; 00054 stdhep[1] = -1; 00055 00056 for(unsigned short i = 0; i < 4; ++i) 00057 { 00058 p4neu[i] = -1.0e6; 00059 p4neunoosc[i] = -1.0e6; 00060 p4shw[i] = -1.0e6; 00061 p4tgt[i] = -1.0e6; 00062 } 00063 }
|
|
|
Definition at line 66 of file Truth.cxx. 00067 {
00068 }
|
|
||||||||||||
|
Definition at line 196 of file Truth.h. References Add(), and Anp::Data.
|
|
|
Definition at line 127 of file Truth.cxx. References Anp::Data, fData, Anp::DataItem< K, D >::Key(), and KeyExists(). Referenced by Add(). 00128 {
00129 if(KeyExists(value.Key()))
00130 {
00131 std::cerr << "Truth::Add - key " << value.Key() << " already exists " << std::endl;
00132 return false;
00133 }
00134
00135 fData.push_back(value);
00136 return true;
00137 }
|
|
|
Definition at line 241 of file Truth.h. References stdhep. Referenced by IsChild(), and Anp::TrueNu::TrueNu(). 00241 { return stdhep[0]; }
|
|
|
Definition at line 242 of file Truth.h. References stdhep. Referenced by IsChild(), and Anp::TrueNu::TrueNu(). 00242 { return stdhep[1]; }
|
|
|
Definition at line 71 of file Truth.cxx. References a, Anp::FluxInfo::Clear(), emfrac, fData, flux, fReco, had_fs, iaction, iboson, iflags, index, inu, inunoosc, iresonance, isfid, istruckq, itg, ndigu, ndigv, p4neu, p4neunoosc, p4shw, p4tgt, q2, sigma, sigmadiff, stdhep, tphu, tphv, vtxx, vtxy, vtxz, w2, weight, x, y, and z. 00072 {
00073 index = -1;
00074 stdhep[0] = -1;
00075 stdhep[1] = -1;
00076 inu = -1;
00077 inunoosc = -1;
00078 itg = -1;
00079 iboson = -1;
00080 iresonance = -1;
00081 iaction = -1;
00082 istruckq = -1;
00083 iflags = -1;
00084 ndigu = -1;
00085 ndigv = -1;
00086 tphu = -1.0e6;
00087 tphv = -1.0e6;
00088 a = -1.0e6;
00089 z = -1.0e6;
00090 sigma = -1.0e6;
00091 sigmadiff = -1.0e6;
00092 x = -1.0e6;
00093 y = -1.0e6;
00094 q2 = -1.0e6;
00095 w2 = -1.0e6;
00096 emfrac = -1.0e6;
00097 vtxx = -1.0e6;
00098 vtxy = -1.0e6;
00099 vtxz = -1.0e6;
00100
00101 for(unsigned short i = 0; i < 4; ++i)
00102 {
00103 p4neu[i] = -1.0e6;
00104 p4neunoosc[i] = -1.0e6;
00105 p4shw[i] = -1.0e6;
00106 p4tgt[i] = -1.0e6;
00107 }
00108
00109 flux.Clear();
00110 fReco.clear();
00111 fData.clear();
00112
00113 isfid = false;
00114 init_state = 0;
00115 nucleus = 0;
00116 had_fs = 0;
00117 weight = 1.0;
00118 }
|
|
|
Definition at line 205 of file Truth.cxx. References Anp::Data, Anp::DataIter, fData, and find(). Referenced by operator[](). 00206 {
00207 DataIter it = find(fData.begin(), fData.end(), key);
00208 if(it == fData.end())
00209 {
00210 std::cerr << "Truth: key " << key << " does not exist" << std::endl;
00211 return 0.0;
00212 }
00213
00214 return it -> Data();
00215 }
|
|
|
Definition at line 279 of file Truth.h. References Anp::DataIter, and fData. 00279 { return fData.begin(); }
|
|
|
Definition at line 280 of file Truth.h. References Anp::DataIter, and fData. 00280 { return fData.end(); }
|
|
|
Definition at line 213 of file Truth.h. Referenced by Anp::PlotReson::Plot(), and Anp::PlotResol::Plot().
|
|
|
Definition at line 212 of file Truth.h. References p4neu. Referenced by Anp::PlotReson::Plot(), and Anp::PlotResol::Plot(). 00212 { return (1.0-y)*p4neu[3]; }
|
|
|
Definition at line 207 of file Truth.h. References p4neu. Referenced by Anp::StdHepTab::CreateArrows(), and Anp::PlotReson::Plot(). 00207 { return p4neu[3]; }
|
|
|
Definition at line 208 of file Truth.h. References p4neu. Referenced by Anp::FillFlux::Fill(), Anp::PlotReson::Plot(), and Anp::PlotResol::Plot(). 00208 { return p4neu[3]; }
|
|
|
Definition at line 203 of file Truth.h. References fReco, and Anp::TruthRecoIterator. 00203 { return fReco.erase(it); }
|
|
|
Definition at line 264 of file Truth.h. References find(), fReco, and Anp::TruthRecoIter.
|
|
|
Definition at line 260 of file Truth.h. References find(), fReco, and Anp::TruthRecoIter.
|
|
|
Definition at line 256 of file Truth.h. References find(), fReco, and Anp::TruthRecoIter.
|
|
|
Definition at line 252 of file Truth.h. References find(), fReco, and Anp::TruthRecoIter. Referenced by Anp::operator==().
|
|
|
Definition at line 236 of file Truth.h. Referenced by Anp::PlotTruth::Plot(), and Anp::TrueNu::TrueNu(). 00236 { return iflags; }
|
|
|
Definition at line 205 of file Truth.h. Referenced by Anp::FillFlux::Fill(), and Anp::TrueNu::TrueNu(). 00205 { return flux; }
|
|
|
Definition at line 140 of file Truth.cxx. References isfid, vtxx, vtxy, vtxz, Anp::xy2u(), and Anp::xy2v(). Referenced by Anp::PlotReson::Plot(). 00141 {
00142 const float px_ = Truth::Px();
00143 const float py_ = Truth::Py();
00144 const float pz_ = Truth::Pz();
00145 const float pt_ = std::sqrt(px_*px_ + py_*py_ + pz_*pz_);
00146
00147 const float vtxu_ = Anp::xy2u(vtxx, vtxy);
00148 const float vtxv_ = Anp::xy2v(vtxx, vtxy);
00149
00150 if(!(pt_ > 0.0))
00151 {
00152 return Anp::Vertex(vtxu_, vtxv_, vtxz, 0.0, 0.0, 0.0, isfid);
00153 }
00154
00155 const float cosx_ = px_/pt_;
00156 const float cosy_ = py_/pt_;
00157 const float cosz_ = pz_/pt_;
00158
00159 const float cosu_ = Anp::xy2u(cosx_, cosy_);
00160 const float cosv_ = Anp::xy2v(cosx_, cosy_);
00161
00162 return Anp::Vertex(vtxu_, vtxv_, vtxz, cosu_, cosv_, cosz_, isfid);
00163 }
|
|
|
Definition at line 239 of file Truth.h. Referenced by Anp::TrueNu::TrueNu(). 00239 { return had_fs; }
|
|
|
Definition at line 237 of file Truth.h. Referenced by Anp::TrueNu::TrueNu(). 00237 { return init_state; }
|
|
|
Definition at line 235 of file Truth.h. Referenced by Anp::PlotPur::IsMatch(), Anp::PlotEff::IsMatch(), Anp::PlotTruth::Plot(), and Anp::TrueNu::TrueNu(). 00235 { return iaction; }
|
|
|
Definition at line 233 of file Truth.h. Referenced by Anp::FillFlux::Fill(), and Anp::TrueNu::TrueNu(). 00233 { return inu; }
|
|
|
Definition at line 246 of file Truth.h. References iaction. 00246 { return iaction == 1; }
|
|
|
Definition at line 194 of file Truth.cxx. References ChildBeg(), and ChildEnd(). Referenced by Anp::FillTruth::Fill(). 00195 {
00196 if(stdhep >= ChildBeg() && stdhep <= ChildEnd())
00197 {
00198 return true;
00199 }
00200
00201 return false;
00202 }
|
|
|
Definition at line 248 of file Truth.h. References iresonance. 00248 { return iresonance == 1003; }
|
|
|
Definition at line 247 of file Truth.h. References iaction. 00247 { return iaction == 0; }
|
|
|
Definition at line 249 of file Truth.h. References iresonance. 00249 { return iresonance == 1001; }
|
|
|
Definition at line 250 of file Truth.h. References iresonance. 00250 { return iresonance == 1002; }
|
|
|
Definition at line 282 of file Truth.h. Referenced by Add().
|
|
|
Definition at line 121 of file Truth.cxx. References TruthIndex(), and Anp::StdHep::TruthIndex(). 00122 {
00123 return (stdhep.TruthIndex() == TruthIndex());
00124 }
|
|
|
Definition at line 272 of file Truth.h. References Lit::Find(), and RecoEnd(). 00272 { return (Truth::Find(shower) != RecoEnd()); }
|
|
|
Definition at line 271 of file Truth.h. References Lit::Find(), and RecoEnd(). 00271 { return (Truth::Find(recon) != RecoEnd()); }
|
|
|
Definition at line 270 of file Truth.h. References Lit::Find(), and RecoEnd(). 00270 { return (Truth::Find(track) != RecoEnd()); }
|
|
|
Definition at line 269 of file Truth.h. References Lit::Find(), and RecoEnd(). 00269 { return (Truth::Find(event) != RecoEnd()); }
|
|
|
Definition at line 238 of file Truth.h. Referenced by Anp::TrueNu::TrueNu(). 00238 { return nucleus; }
|
|
|
Definition at line 287 of file Truth.h. References DataAt(). 00287 { return DataAt(key); }
|
|
|
Definition at line 166 of file Truth.cxx. References inu, Particle::IsNeutrino(), and Particle::PDGParticle(). Referenced by Anp::PlotPur::IsMatch(), and Anp::PlotEff::IsMatch(). 00167 {
00168 const Particle::Particle_t particle = Particle::PDGParticle(inu);
00169
00170 if(!Particle::IsNeutrino(particle))
00171 {
00172 std::cerr << "Truth::Particle - primary particle is not neutrino" << std::endl;
00173 return Particle::kUnknown;
00174 }
00175
00176 return particle;
00177 }
|
|
|
Definition at line 180 of file Truth.cxx. References inunoosc, Particle::IsNeutrino(), and Particle::PDGParticle(). 00181 {
00182 const Particle::Particle_t particle = Particle::PDGParticle(inunoosc);
00183
00184 if(!Particle::IsNeutrino(particle))
00185 {
00186 std::cerr << "Truth::ParticleNoOscl - primary particle is not neutrino" << std::endl;
00187 return Particle::kUnknown;
00188 }
00189
00190 return particle;
00191 }
|
|
|
Definition at line 218 of file Truth.cxx. References a, emfrac, had_fs, iaction, iboson, iflags, index, inu, inunoosc, iresonance, istruckq, itg, ndigu, ndigv, p4neu, p4neunoosc, p4shw, p4tgt, q2, sigma, sigmadiff, stdhep, tphu, tphv, vtxx, vtxy, vtxz, w2, weight, x, y, and z. Referenced by Anp::TrueNu::TrueNu(). 00219 {
00220
00221 o << "Truth: index = " << index << endl
00222 << " stdhep = (" << stdhep[0] << ", " << stdhep[1] << ")" << endl
00223 << " inu = " << inu << endl
00224 << " inunoosc = " << inunoosc << endl
00225 << " itg = " << itg << endl
00226 << " iboson = " << iboson << endl
00227 << " iresonance = " << iresonance << endl
00228 << " iaction = " << iaction << endl
00229 << " istruckq = " << istruckq << endl
00230 << " iflags = " << iflags << endl
00231 << " ndigu = " << ndigu << endl
00232 << " ndigv = " << ndigv << endl
00233 << " tphu = " << tphu << endl
00234 << " tphv = " << tphv << endl
00235 << " a = " << a << endl
00236 << " z = " << z << endl
00237 << " sigma = " << sigma << endl
00238 << " sigmadiff = " << sigmadiff << endl
00239 << " x = " << x << endl
00240 << " y = " << y << endl
00241 << " q2 = " << q2 << endl
00242 << " w2 = " << w2 <<endl
00243 << " emfrac = " << emfrac << endl
00244 << " vtxx = " << vtxx << endl
00245 << " vtxy = " << vtxy << endl
00246 << " vtxz = " << vtxz << endl
00247 << " p4neu = ("
00248 << p4neu[0] << ", "
00249 << p4neu[1] << ", "
00250 << p4neu[2] << ", "
00251 << p4neu[3] << ")" << endl
00252 << " p4neunoosc = ("
00253 << p4neunoosc[0] << ", "
00254 << p4neunoosc[1] << ", "
00255 << p4neunoosc[2] << ", "
00256 << p4neunoosc[3] << ")" << endl
00257 << " p4shw = ("
00258 << p4shw[0] << ", "
00259 << p4shw[1] << ", "
00260 << p4shw[2] << ", "
00261 << p4shw[3] << ")" << endl
00262 << " p4tgt = ("
00263 << p4tgt[0] << ", "
00264 << p4tgt[1] << ", "
00265 << p4tgt[2] << ", "
00266 << p4tgt[3] << ")" << endl
00267 << " init_state = " << init_state << endl
00268 << " nucleus = " << nucleus << endl
00269 << " had_fs = " << had_fs << endl
00270 << " weight = " << weight << endl;
00271 }
|
|
|
Definition at line 209 of file Truth.h. References p4neu. Referenced by Anp::TrueNu::TrueNu(). 00209 { return p4neu[0]; }
|
|
|
Definition at line 210 of file Truth.h. References p4neu. Referenced by Anp::TrueNu::TrueNu(). 00210 { return p4neu[1]; }
|
|
|
Definition at line 211 of file Truth.h. References p4neu. Referenced by Anp::TrueNu::TrueNu(). 00211 { return p4neu[2]; }
|
|
|
Definition at line 274 of file Truth.h. References fReco, and Anp::TruthRecoIter. Referenced by Anp::PlotTruth::Plot(), and Anp::TrueNu::TrueNu(). 00274 { return fReco.begin(); }
|
|
|
Definition at line 201 of file Truth.h. References fReco, and Anp::TruthRecoIterator. 00201 { return fReco.begin(); }
|
|
|
Definition at line 275 of file Truth.h. References fReco, and Anp::TruthRecoIter. Referenced by Match(), Anp::operator==(), Anp::PlotTruth::Plot(), and Anp::TrueNu::TrueNu(). 00275 { return fReco.end(); }
|
|
|
Definition at line 202 of file Truth.h. References fReco, and Anp::TruthRecoIterator. 00202 { return fReco.end(); }
|
|
|
Definition at line 234 of file Truth.h. Referenced by Anp::PlotPur::IsMatch(), Anp::PlotEff::IsMatch(), Anp::PlotTruth::Plot(), and Anp::TrueNu::TrueNu(). 00234 { return iresonance; }
|
|
|
Definition at line 199 of file Truth.h. References isfid. 00199 { isfid = value; }
|
|
|
Definition at line 198 of file Truth.h. References weight. Referenced by Anp::FillFlux::Fill(). 00198 { weight = value; }
|
|
|
Definition at line 230 of file Truth.h. 00230 { return sigma; }
|
|
|
Definition at line 231 of file Truth.h. 00231 { return sigmadiff; }
|
|
|
Definition at line 221 of file Truth.h. References p4tgt. Referenced by Anp::PlotTruth::Plot(). 00221 { return p4tgt[3]; }
|
|
|
Definition at line 225 of file Truth.h. References p4tgt. Referenced by Anp::PlotTruth::Plot(). 00226 {
00227 return std::sqrt(p4tgt[0]*p4tgt[0] + p4tgt[1]*p4tgt[1] + p4tgt[2]*p4tgt[2]);
00228 }
|
|
|
Definition at line 222 of file Truth.h. References p4tgt. 00222 { return p4tgt[0]; }
|
|
|
Definition at line 223 of file Truth.h. References p4tgt. 00223 { return p4tgt[1]; }
|
|
|
Definition at line 224 of file Truth.h. References p4tgt. 00224 { return p4tgt[2]; }
|
|
|
Definition at line 216 of file Truth.h. Referenced by Anp::PlotReson::Plot(), and Anp::PlotResol::Plot(). 00216 { return q2; }
|
|
|
Definition at line 217 of file Truth.h. Referenced by Anp::PlotReson::Plot(), and Anp::PlotResol::Plot(). 00217 { return w2; }
|
|
|
Definition at line 215 of file Truth.h. Referenced by Anp::PlotReson::Plot(), and Anp::PlotResol::Plot(). 00215 { return x; }
|
|
|
Definition at line 214 of file Truth.h. Referenced by Anp::PlotReson::Plot(), and Anp::PlotResol::Plot(). 00214 { return y; }
|
|
|
Definition at line 277 of file Truth.h. Referenced by Anp::FillTruth::Fill(), Match(), Anp::operator==(), Anp::FillTruth::Run(), and Anp::TrueNu::TrueNu(). 00277 { return index; }
|
|
|
Definition at line 218 of file Truth.h. Referenced by Anp::FillTruth::Run(). 00218 { return vtxx; }
|
|
|
Definition at line 219 of file Truth.h. Referenced by Anp::FillTruth::Run(). 00219 { return vtxy; }
|
|
|
Definition at line 220 of file Truth.h. Referenced by Anp::FillTruth::Run(). 00220 { return vtxz; }
|
|
|
Definition at line 244 of file Truth.h. Referenced by Anp::FillFlux::Fill(). 00244 { return weight; }
|
|
|
|
|
|
Definition at line 145 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 153 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 172 of file Truth.h. Referenced by Add(), Clear(), DataAt(), DataBeg(), DataEnd(), and KeyExists(). |
|
|
Definition at line 170 of file Truth.h. Referenced by Clear(), and Anp::FillTruth::Fill(). |
|
|
Definition at line 174 of file Truth.h. Referenced by Clear(), Erase(), Anp::FillTruth::Fill(), Find(), RecoBeg(), RecoBegIterator(), RecoEnd(), and RecoEndIterator(). |
|
|
Definition at line 165 of file Truth.h. Referenced by Clear(), Print(), and Anp::FillTruth::Run(). |
|
|
Definition at line 138 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), IsCC(), IsNC(), and Print(). |
|
|
Definition at line 136 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 140 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 131 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 163 of file Truth.h. Referenced by Anp::FillTruth::Run(). |
|
|
Definition at line 133 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), Particle(), and Print(). |
|
|
Definition at line 134 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), ParticleNoOscl(), and Print(). |
|
|
Definition at line 137 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), IsDIS(), IsQES(), IsRES(), and Print(). |
|
|
Definition at line 162 of file Truth.h. Referenced by Clear(), GetVtx(), Anp::FillTruth::Run(), and SetFiducial(). |
|
|
Definition at line 139 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 135 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 141 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 142 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 164 of file Truth.h. Referenced by Anp::FillTruth::Run(). |
|
|
Definition at line 157 of file Truth.h. Referenced by Clear(), EHad(), ELep(), Energy(), ENeu(), Anp::FillTruth::Fill(), Print(), Px(), Py(), Pz(), and Truth(). |
|
|
Definition at line 158 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), Print(), and Truth(). |
|
|
Definition at line 159 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), Print(), and Truth(). |
|
|
Definition at line 160 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), Print(), TgtE(), TgtP(), TgtPx(), TgtPy(), TgtPz(), and Truth(). |
|
|
Definition at line 151 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 147 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 148 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 132 of file Truth.h. Referenced by ChildBeg(), ChildEnd(), Clear(), Anp::FillTruth::Fill(), Print(), and Truth(). |
|
|
Definition at line 143 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 144 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 154 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), GetVtx(), and Print(). |
|
|
Definition at line 155 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), GetVtx(), and Print(). |
|
|
Definition at line 156 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), GetVtx(), and Print(). |
|
|
Definition at line 152 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 166 of file Truth.h. Referenced by Clear(), Print(), and SetWeight(). |
|
|
Definition at line 149 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 150 of file Truth.h. Referenced by Clear(), EHad(), Anp::FillTruth::Fill(), and Print(). |
|
|
Definition at line 146 of file Truth.h. Referenced by Clear(), Anp::FillTruth::Fill(), and Print(). |
1.3.9.1