@@ -21,10 +21,10 @@ namespace sbnd::crt {
2121 class CRTTrack {
2222
2323 std::vector<geo::Point_t> fPoints ; // the fitted track points at each tagger [cm]
24- double fT0 ; // average time according to T0 clock [ns]
25- double fT0Err ; // average time error according to T0 clock [ns]
26- double fT1 ; // average time according to T1 clock [ns]
27- double fT1Err ; // average time error according to T1 clock [ns]
24+ double fTs0 ; // average time according to T0 clock [ns]
25+ double fTs0Err ; // average time error according to T0 clock [ns]
26+ double fTs1 ; // average time according to T1 clock [ns]
27+ double fTs1Err ; // average time error according to T1 clock [ns]
2828 double fPE ; // total PE
2929 double fToF ; // time from first space point to last [ns]
3030 std::set<CRTTagger> fTaggers ; // which taggers were used to create the track
@@ -33,21 +33,21 @@ namespace sbnd::crt {
3333
3434 CRTTrack ();
3535
36- CRTTrack (const geo::Point_t &_start, const geo::Point_t &_end, const double &_t0 , const double &_et0 ,
37- const double &_t1 , const double &_et1 , const double &_pe, const double &_tof,
36+ CRTTrack (const geo::Point_t &_start, const geo::Point_t &_end, const double &_ts0 , const double &_ets0 ,
37+ const double &_ts1 , const double &_ets1 , const double &_pe, const double &_tof,
3838 const std::set<CRTTagger> &_taggers);
3939
40- CRTTrack (const std::vector<geo::Point_t> &_points, const double &_t0 , const double &_et0 ,
41- const double &_t1 , const double &_et1 , const double &_pe, const double &_tof,
40+ CRTTrack (const std::vector<geo::Point_t> &_points, const double &_ts0 , const double &_ets0 ,
41+ const double &_ts1 , const double &_ets1 , const double &_pe, const double &_tof,
4242 const std::set<CRTTagger> &_taggers);
4343
4444 virtual ~CRTTrack ();
4545
4646 std::vector<geo::Point_t> Points () const ;
47- double T0 () const ;
48- double T0Err () const ;
49- double T1 () const ;
50- double T1Err () const ;
47+ double Ts0 () const ;
48+ double Ts0Err () const ;
49+ double Ts1 () const ;
50+ double Ts1Err () const ;
5151 double PE () const ;
5252 double ToF () const ;
5353 std::set<CRTTagger> Taggers () const ;
0 commit comments