LDMX Software
TrackDeDxMassEstimate.cxx
2
4
5namespace ldmx {
7
9 theIh_ = -1.0;
10 momentum_ = 9999.0;
11 mass_ = 0.;
12 track_index_ = -1;
13 track_type_ = -1;
14}
15
17 std::cout << "TrackDeDxMassEstimate { "
18 << "Momentum: " << momentum_ << ", "
19 << "Ih: " << theIh_ << ", "
20 << "Mass: " << mass_ << ", "
21 << "Track Index: " << track_index_ << ", "
22 << "Track Type: " << track_type_ << " }" << std::endl;
23}
24
25} // namespace ldmx
Class that represents the estimated mass of a particle using tracker dE/dx information.
Represents the estimated mass of a particle using tracker dE/dx information.
void Clear()
Clear the data in the object.
TrackDeDxMassEstimate()
Class constructor.
void Print() const
Print out the object.