@@ -188,8 +188,8 @@ class sbnd::crt::CRTAnalysis : public art::EDAnalyzer {
188188 std::vector<uint8_t > _cl_composition;
189189 std::vector<std::vector<uint32_t >> _cl_channel_set;
190190 std::vector<std::vector<uint16_t >> _cl_adc_set;
191- std::vector<std::vector<uint32_t >> _cl_sh_ts0_set; // ! To store t0 from x-y coincidences
192- std::vector<std::vector<uint32_t >> _cl_sh_ts1_set; // ! To store t1 from x-y coincidences
191+ std::vector<std::vector<int64_t >> _cl_sh_ts0_set; // ! To store t0 from x-y coincidences
192+ std::vector<std::vector<int64_t >> _cl_sh_ts1_set; // ! To store t1 from x-y coincidences
193193 std::vector<std::vector<uint16_t >> _cl_sh_feb_mac5_set; // ! MAC5 addresses of StripHit FEBs
194194 std::vector<std::vector<double >> _cl_sh_time_walk_set; // ! Time walk correction
195195 std::vector<std::vector<double >> _cl_sh_prop_delay_set; // ! Light propagation correction
@@ -462,8 +462,8 @@ sbnd::crt::CRTAnalysis::CRTAnalysis(fhicl::ParameterSet const& p)
462462 fTree ->Branch (" cl_composition" , " std::vector<uint8_t>" , &_cl_composition);
463463 fTree ->Branch (" cl_channel_set" , " std::vector<std::vector<uint32_t>>" , &_cl_channel_set);
464464 fTree ->Branch (" cl_adc_set" , " std::vector<std::vector<uint16_t>>" , &_cl_adc_set);
465- fTree ->Branch (" cl_sh_ts0_set" , " std::vector<std::vector<uint32_t >>" , &_cl_sh_ts0_set);
466- fTree ->Branch (" cl_sh_ts1_set" , " std::vector<std::vector<uint32_t >>" , &_cl_sh_ts1_set);
465+ fTree ->Branch (" cl_sh_ts0_set" , " std::vector<std::vector<int64_t >>" , &_cl_sh_ts0_set);
466+ fTree ->Branch (" cl_sh_ts1_set" , " std::vector<std::vector<int64_t >>" , &_cl_sh_ts1_set);
467467 fTree ->Branch (" cl_sh_feb_mac5_set" , " std::vector<std::vector<uint16_t>>" , &_cl_sh_feb_mac5_set);
468468 fTree ->Branch (" cl_sh_time_walk_set" , " std::vector<std::vector<double>>" , &_cl_sh_time_walk_set);
469469 fTree ->Branch (" cl_sh_prop_delay_set" , " std::vector<std::vector<double>>" , &_cl_sh_prop_delay_set);
0 commit comments