@@ -20,7 +20,7 @@ namespace sbnd {
2020 , fSaturated2 (false )
2121 {}
2222
23- CRTStripHit::CRTStripHit (uint32_t _channel, uint32_t _ts0, uint32_t _ts1, uint32_t _s, double _pos,
23+ CRTStripHit::CRTStripHit (uint32_t _channel, int64_t _ts0, int64_t _ts1, uint32_t _s, double _pos,
2424 double _err, uint16_t _adc1, uint16_t _adc2)
2525 : fChannel (_channel)
2626 , fTs0 (_ts0)
@@ -35,7 +35,7 @@ namespace sbnd {
3535 fSaturated2 = fADC2 == 4095 ;
3636 }
3737
38- CRTStripHit::CRTStripHit (uint32_t _channel, uint32_t _ts0, uint32_t _ts1, uint32_t _s, double _pos,
38+ CRTStripHit::CRTStripHit (uint32_t _channel, int64_t _ts0, int64_t _ts1, uint32_t _s, double _pos,
3939 double _err, uint16_t _adc1, uint16_t _adc2, bool _saturated1, bool _saturated2)
4040 : fChannel (_channel)
4141 , fTs0 (_ts0)
@@ -52,8 +52,8 @@ namespace sbnd {
5252 CRTStripHit::~CRTStripHit () {}
5353
5454 uint32_t CRTStripHit::Channel () const { return fChannel ; }
55- uint32_t CRTStripHit::Ts0 () const { return fTs0 ; }
56- uint32_t CRTStripHit::Ts1 () const { return fTs1 ; }
55+ int64_t CRTStripHit::Ts0 () const { return fTs0 ; }
56+ int64_t CRTStripHit::Ts1 () const { return fTs1 ; }
5757 uint32_t CRTStripHit::UnixS () const { return fUnixS ; }
5858 double CRTStripHit::Pos () const { return fPos ; }
5959 double CRTStripHit::Error () const { return fErr ; }
0 commit comments