Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:13

0001 #include "Gl1RawHitv1.h"
0002 
0003 Gl1RawHitv1::Gl1RawHitv1(Gl1RawHit *gl1hit)
0004 {
0005   set_bco(gl1hit->get_bco());
0006 }
0007 
0008 void Gl1RawHitv1::Reset()
0009 {
0010   bco = std::numeric_limits<uint64_t>::max();
0011 }
0012 
0013 void Gl1RawHitv1::identify(std::ostream &os) const
0014 {
0015   os << "BCO: 0x" << std::hex << bco << std::dec << std::endl;
0016 }