File indexing completed on 2025-08-06 08:17:52
0001 #include "MbdPmtHitV1.h"
0002
0003 void MbdPmtHitV1::Reset()
0004 {
0005 Clear();
0006 }
0007
0008 void MbdPmtHitV1::Clear(Option_t* )
0009 {
0010 std::cout << "clearing " << bpmt << std::endl;
0011 bpmt = -1;
0012 bq = std::numeric_limits<float>::quiet_NaN();
0013 btt = std::numeric_limits<float>::quiet_NaN();
0014 btq = std::numeric_limits<float>::quiet_NaN();
0015 }
0016
0017 void MbdPmtHitV1::identify(std::ostream& out) const
0018 {
0019 out << "identify yourself: I am a MbdPmtHitV1 object" << std::endl;
0020 out << "Pmt: " << bpmt << ", Q: " << bq << ", tt: "
0021 << btt << ", btq: " << btq << std::endl;
0022 }