Skip to content

Commit 9fe95ba

Browse files
committed
Merge branch 'release/v09_17_09'
2 parents 8daee9b + 9822754 commit 9fe95ba

7 files changed

Lines changed: 13 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
cmake_minimum_required(VERSION 3.19 FATAL_ERROR)
1515

1616
find_package(cetmodules 3.20.00 REQUIRED)
17-
project(sbnobj VERSION 09.17.08 LANGUAGES CXX)
17+
project(sbnobj VERSION 09.17.09 LANGUAGES CXX)
1818

1919
message(STATUS
2020
"\n-- ============================================================================="

sbnobj/Common/Calibration/TrackCaloSkimmerObj.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#define SBN_TrackCaloSkimmerObj
33

44
#include <climits>
5+
#include <limits> // for std::numeric_limits
56

67
#include <vector>
78

sbnobj/Common/PMT/Data/V1730channelConfiguration.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define SBNOBJ_COMMON_PMT_DATA_V1730CHANNELCONFIGURATION_H
1111

1212
// LArSoft libraries
13+
#include <cstdint> // uint16_t in OpDetWaveform.h
1314
#include "lardataobj/RawData/OpDetWaveform.h" // raw::Channel_t
1415

1516
// C/C++ standard libraries

sbnobj/Common/Reco/MVAPID.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include "messagefacility/MessageLogger/MessageLogger.h"
55

66
#include <algorithm>
7+
#include <limits> // for std::numeric_limits
78

89
void sbn::MVAPID::AddScore(int pdg, float score)
910
{

sbnobj/ICARUS/PMT/Trigger/Data/TriggerGateData.tcc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,8 @@ auto icarus::trigger::TriggerGateData<TK, TI>::SymmetricCombination(
428428
struct GateStatus_t {
429429
// protecting against Clang bug 33298 (at least until Clang 8)
430430
// (https://bugs.llvm.org/show_bug.cgi?id=33298)
431-
#if defined(__clang__) && (__clang_major__ < 9)
431+
// both c7 and c14 complain
432+
#if defined(__clang__)
432433
# pragma clang diagnostic push
433434
# pragma clang diagnostic ignored "-Wunused-local-typedef"
434435
#endif // __clang_major__ < 9

sbnobj/SBND/Timing/DAQTimestamp.hh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include <stdint.h>
1212
#include <string>
1313
#include <array>
14+
#include <limits> // for std::numeric_limits
1415

1516
namespace sbnd::timing {
1617

ups/product_deps

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
#> define_pythonpath
8888
####################################
8989
parent sbnobj
90-
defaultqual e20
90+
defaultqual e26
9191
####################################
9292

9393
####################################
@@ -246,7 +246,7 @@ defaultqual e20
246246
#
247247
####################################
248248
product version qual flags <table_format=2>
249-
lardataobj v09_16_02 -
249+
lardataobj v09_16_03 -
250250
cetmodules v3_21_01 - only_for_build
251251
end_product_list
252252
####################################
@@ -303,8 +303,12 @@ end_product_list
303303
#
304304
####################################
305305
qualifier lardataobj notes
306+
c14:debug c14:debug
307+
c14:prof c14:prof
306308
c7:debug c7:debug
307309
c7:prof c7:prof
310+
e26:debug e26:debug
311+
e26:prof e26:prof
308312
e20:debug e20:debug
309313
e20:prof e20:prof
310314
end_qualifier_list

0 commit comments

Comments
 (0)