Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-07-16 08:14:34

0001 #include "TrkrHitv3.h"
0002 
0003 void TrkrHitv3::CopyFrom(const TrkrHit& source)
0004 {
0005   // do nothing if copying onto oneself
0006   if (this == &source)
0007   {
0008     return;
0009   }
0010 
0011   // parent class method
0012   TrkrHitv2::CopyFrom(source);
0013 
0014   // copy timing information
0015   setFPHXBCO(source.getFPHXBCO());
0016   setBCO(source.getBCO());
0017 }