Class Reference for E1039 Core & Analysis Software
SQSingleMuonTruthInfo.cxx
Go to the documentation of this file.
2 
4  motherPid(0),
5  motherMom(0., 0., 0.),
6  motherVtx(0., 0., 0.),
7  decayLength(-1.),
8  muMom(0., 0., 0.),
9  muVtx(0., 0., 0.)
10 {}
11 
13 {
14 }
15 
16 void SQSingleMuonTruthInfo::identify(std::ostream& os) const
17 {
18  os << "Mother particle momentum/vertex: " << std::endl;
19  os << " PID: " << motherPid << std::endl;
20  os << " Mom: "; motherMom.Print();
21  os << " Mom: "; motherVtx.Print();
22 
23  os << "Decay particle momentum/vertex: " << std::endl;
24  os << " Mom: "; muMom.Print();
25  os << " Mom: "; muVtx.Print();
26  os << " Decay length: " << decayLength << std::endl;
27 }
28 
30 {
31  motherMom.SetXYZ(0., 0., 0.);
32  motherVtx.SetXYZ(0., 0., 0.);
33  motherPid = 0;
34  muMom.SetXYZ(0., 0., 0.);
35  muVtx.SetXYZ(0., 0., 0.);
36  decayLength = -1.;
37 }
void identify(std::ostream &os=std::cout) const