From c7161a95d828ca196d7d371dc33bd9c1d4687b6b Mon Sep 17 00:00:00 2001 From: Maximiliano Puccio Date: Fri, 18 Oct 2024 10:06:22 +0200 Subject: [PATCH] Upload chunks for the chunked processing --- EventFiltering/macros/uploadOTSobjects.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EventFiltering/macros/uploadOTSobjects.C b/EventFiltering/macros/uploadOTSobjects.C index 039840d34a5..77b6ac97f34 100644 --- a/EventFiltering/macros/uploadOTSobjects.C +++ b/EventFiltering/macros/uploadOTSobjects.C @@ -126,7 +126,7 @@ void uploadOTSobjects(std::string inputList, std::string passName, bool useAlien endIndex++; } std::cout << ">>> Chunk " << helperIndex << " - " << helperIndex + chunk.size() << " : " << startTS << " - " << endTS << " \t" << (endTS - startTS) * 1.e-3 << std::endl; - api.storeAsTFileAny(&zorroHelpers, baseCCDBpath + "ZorroHelpers", metadata, startTS, endTS); + api.storeAsTFileAny(&chunk, baseCCDBpath + "ZorroHelpers", metadata, startTS, endTS); startTS = endTS + 1; helperIndex += chunk.size(); }