Skip to content

Commit b0fb0b7

Browse files
committed
Merge tag 'v09_73_00' into develop
sbnacode v09_73_00 for larsoft v09_73_00 using sbnobj v09_16_01 sbnanaobj v09_20_07
2 parents 064eacb + 6376731 commit b0fb0b7

File tree

3 files changed

+4
-14
lines changed

3 files changed

+4
-14
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
1717

1818
find_package(cetmodules 3.20.00 REQUIRED)
19-
project(sbncode VERSION 09.72.01 LANGUAGES CXX)
19+
project(sbncode VERSION 09.73.00 LANGUAGES CXX)
2020

2121
message(STATUS "\n\n ========================== ${PROJECT_NAME} ==========================")
2222

sbncode/Metadata/MetadataSBN_service.cc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,6 @@ void util::MetadataSBN::postBeginJob()
200200
// PostOpenFile callback.
201201
void util::MetadataSBN::postOpenInputFile(std::string const& fn)
202202
{
203-
std::lock_guard lock(fMutex);
204-
205203
// save parent input files here
206204
// 08/06 DBrailsford: Only save the parent string if the string is filled. The string still exists (with 0 characters) for generation stage files. See redmine issue 20124
207205
if (fn.length() > 0) md.fParents.insert(fn);
@@ -279,8 +277,6 @@ std::string Escape(const std::string& s)
279277
//--------------------------------------------------------------------
280278
std::string util::MetadataSBN::GetParentsString() const
281279
{
282-
std::lock_guard lock(fMutex);
283-
284280
if(md.fParents.empty()) return "";
285281

286282
unsigned int c = 0;
@@ -303,8 +299,6 @@ std::string util::MetadataSBN::GetParentsString() const
303299
//--------------------------------------------------------------------
304300
std::string util::MetadataSBN::GetRunsString() const
305301
{
306-
std::lock_guard lock(fMutex);
307-
308302
unsigned int c = 0;
309303

310304
std::string ret = "[\n";
@@ -324,8 +318,6 @@ void util::MetadataSBN::GetMetadataMaps(std::map<std::string, std::string>& strs
324318
std::map<std::string, double>& doubles,
325319
std::map<std::string, std::string>& objs)
326320
{
327-
std::lock_guard lock(fMutex);
328-
329321
strs.clear(); ints.clear(); doubles.clear(); objs.clear();
330322

331323
objs["application"] = "{\"family\": \""+std::get<0>(md.fapplication)+"\", \"name\": \""+std::get<1>(md.fapplication)+"\", \"version\": \""+std::get<2>(md.fapplication)+"\"}";
@@ -373,8 +365,6 @@ void util::MetadataSBN::GetMetadataMaps(std::map<std::string, std::string>& strs
373365
// PostCloseFile callback.
374366
void util::MetadataSBN::postCloseInputFile()
375367
{
376-
std::lock_guard lock(fMutex);
377-
378368
//update end time
379369
md.fend_time = time(0);
380370

ups/product_deps

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,11 @@ libdir fq_dir lib
254254
product version qual flags <table_format=2>
255255
genie_xsec v3_04_00 -
256256
larcv2 v2_1_0 -
257-
larsoft v09_72_01 -
258-
sbnanaobj v09_20_06 -
257+
larsoft v09_73_00 -
258+
sbnanaobj v09_20_07 -
259259
sbndaq_artdaq_core v1_06_00of0 -
260260
sbndata v01_04 -
261-
sbnobj v09_16_00 -
261+
sbnobj v09_16_01 -
262262
systematicstools v01_02_00 -
263263
nusystematics v01_02_10 -
264264
cetmodules v3_20_00 - only_for_build

0 commit comments

Comments
 (0)