Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-04-02 08:12:56

0001 #include "MbdRawHitV2.h"
0002 
0003 void MbdRawHitV2::Reset()
0004 {
0005   Clear();
0006 }
0007 
0008 void MbdRawHitV2::Clear(Option_t* /*unused*/)
0009 {
0010   //std::cout << "clearing " << bpmt << std::endl;
0011   bpmt = -1;
0012   fitstat = 0;
0013   badc = std::numeric_limits<float>::quiet_NaN();
0014   bttdc = std::numeric_limits<float>::quiet_NaN();
0015   bqtdc = std::numeric_limits<float>::quiet_NaN();
0016 }
0017 
0018 void MbdRawHitV2::identify(std::ostream& out) const
0019 {
0020   out << "identify yourself: I am a MbdRawHitV2 object" << std::endl;
0021   out << "Pmt: " << bpmt << ", adc: " << badc << ", ttdc: "
0022       << bttdc << ", bqtdc: " << bqtdc << std::endl;
0023 }