Skip to content

Commit 71e06d8

Browse files
Merge branch 'develop' into feature/geom
2 parents 449d0ad + 1b85724 commit 71e06d8

148 files changed

Lines changed: 93642 additions & 773 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515

1616
cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
1717

18-
set(${PROJECT_NAME}_CMAKE_PROJECT_VERSION_STRING 09.93.01.01)
18+
set(${PROJECT_NAME}_CMAKE_PROJECT_VERSION_STRING 09.93.01.02.01)
1919
find_package(cetmodules REQUIRED)
2020
project(sbndcode LANGUAGES CXX)
2121

2222
# for CI:
23-
# project(sbndcode VERSION 09.93.01.01)
23+
# project(sbndcode VERSION 09.93.01.02.01)
2424

2525
message(STATUS "\n")
2626
message(STATUS "================================= ${PROJECT_NAME} =================================")

sbndcode/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ add_subdirectory(OpT0Finder)
2121
add_subdirectory(ShowerAna)
2222
add_subdirectory(Commissioning)
2323
add_subdirectory(Trigger)
24+
add_subdirectory(Timing)
25+
add_subdirectory(PTBAna)
2426

2527
# subdirectory for gallery stuff
2628
add_subdirectory(gallery)

sbndcode/CRT/CRTReco/CRTClusterCharacterisationAlg.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ namespace sbnd::crt {
7575

7676
CRTGeoAlg fCRTGeoAlg;
7777

78-
bool fUseT1;
7978
double fTimeOffset;
8079
double fOverlapBuffer;
8180
double fPEAttenuation;

sbndcode/CRT/CRTReco/CRTStripHitProducer_module.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ void sbnd::crt::CRTStripHitProducer::produce(art::Event& e)
124124
const uint64_t etrig_unix = ts->Timestamp() / static_cast<uint64_t>(1e9);
125125
const int64_t unix_diff = ref_unix - etrig_unix;
126126
if(unix_diff != 0 && unix_diff != 1)
127-
throw std::runtime_error("Unix timestamps differ by more than 1" + unix_diff);
127+
throw std::runtime_error(Form("Unix timestamps differ by more than 1 (%li)", unix_diff));
128128

129129
const bool previous_second = unix_diff == 1;
130130

@@ -177,7 +177,7 @@ std::vector<sbnd::crt::CRTStripHit> sbnd::crt::CRTStripHitProducer::CreateStripH
177177

178178
const int64_t unix_diff = ref_unix - unixs;
179179
if(unix_diff != 0 && unix_diff != 1)
180-
throw std::runtime_error("Unix timestamps differ by more than 1" + unix_diff);
180+
throw std::runtime_error(Form("Unix timestamps differ by more than 1 (%li)", unix_diff));
181181

182182
const bool previous_second = unix_diff == 1;
183183

0 commit comments

Comments
 (0)