Skip to content

Commit 8b49baa

Browse files
Merge pull request #690 from SBNSoftware/bugfix/crt_timing_set_signedness
Fix signedness of cluster timing sets
2 parents 3f45009 + 49fdb30 commit 8b49baa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sbndcode/CRT/CRTAna/CRTAnalysis_module.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)