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