From 232ee1aa10bd2814cbd826d4a5581139fe42f4d8 Mon Sep 17 00:00:00 2001 From: moneta Date: Mon, 26 Jan 2026 08:05:16 +0100 Subject: [PATCH 01/14] [tmva][test] Increase tolerance for gnn test from 5 to 4 decimals --- bindings/pyroot/pythonizations/test/sofie_gnn.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/pyroot/pythonizations/test/sofie_gnn.py b/bindings/pyroot/pythonizations/test/sofie_gnn.py index 915ea04ac1b93..5f06fbaa6098f 100644 --- a/bindings/pyroot/pythonizations/test/sofie_gnn.py +++ b/bindings/pyroot/pythonizations/test/sofie_gnn.py @@ -337,11 +337,11 @@ def test_c_lhcb_toy_inference(self): output_edge_data = output_gn[i].edges.numpy() output_global_data = output_gn[i].globals.numpy().flatten() - assert_almost_equal(output_node_data, np.asarray(output_ops[i].node_data), 5) + assert_almost_equal(output_node_data, np.asarray(output_ops[i].node_data), 4) - assert_almost_equal(output_edge_data, np.asarray(output_ops[i].edge_data), 5) + assert_almost_equal(output_edge_data, np.asarray(output_ops[i].edge_data), 4) - assert_almost_equal(output_global_data, np.asarray(output_ops[i].global_data), 5) + assert_almost_equal(output_global_data, np.asarray(output_ops[i].global_data), 4) @classmethod def tearDownClass(self): From 6be09ebdd9fc19e269f3fe57638fb051fb578e03 Mon Sep 17 00:00:00 2001 From: silverweed Date: Tue, 16 Sep 2025 17:02:14 +0200 Subject: [PATCH 02/14] [ntuple] clang-format some files --- tree/ntuple/inc/ROOT/RPageStorageDaos.hxx | 3 ++- tree/ntuple/src/RPageStorageFile.cxx | 23 +++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/tree/ntuple/inc/ROOT/RPageStorageDaos.hxx b/tree/ntuple/inc/ROOT/RPageStorageDaos.hxx index c6dac79c4206e..4d6200fb5f590 100644 --- a/tree/ntuple/inc/ROOT/RPageStorageDaos.hxx +++ b/tree/ntuple/inc/ROOT/RPageStorageDaos.hxx @@ -77,7 +77,8 @@ struct RDaosNTupleAnchor { /// The object class for user data OIDs, e.g. `SX` std::string fObjClass{}; - bool operator ==(const RDaosNTupleAnchor &other) const { + bool operator==(const RDaosNTupleAnchor &other) const + { return fVersionAnchor == other.fVersionAnchor && fVersionEpoch == other.fVersionEpoch && fVersionMajor == other.fVersionMajor && fVersionMinor == other.fVersionMinor && fVersionPatch == other.fVersionPatch && fNBytesHeader == other.fNBytesHeader && diff --git a/tree/ntuple/src/RPageStorageFile.cxx b/tree/ntuple/src/RPageStorageFile.cxx index 5bd280d55f787..dd60247c1658a 100644 --- a/tree/ntuple/src/RPageStorageFile.cxx +++ b/tree/ntuple/src/RPageStorageFile.cxx @@ -552,18 +552,17 @@ ROOT::Internal::RPageSourceFile::PrepareSingleCluster(const RCluster::RKey &clus std::vector onDiskPages; auto activeSize = 0; auto pageZeroMap = std::make_unique(); - PrepareLoadCluster(clusterKey, *pageZeroMap, - [&](ROOT::DescriptorId_t physicalColumnId, ROOT::NTupleSize_t pageNo, - const ROOT::RClusterDescriptor::RPageInfo &pageInfo) { - const auto &pageLocator = pageInfo.GetLocator(); - if (pageLocator.GetType() == RNTupleLocator::kTypeUnknown) - throw RException(R__FAIL("tried to read a page with an unknown locator")); - const auto nBytes = - pageLocator.GetNBytesOnStorage() + pageInfo.HasChecksum() * kNBytesPageChecksum; - activeSize += nBytes; - onDiskPages.push_back( - {physicalColumnId, pageNo, pageLocator.GetPosition(), nBytes, 0}); - }); + PrepareLoadCluster( + clusterKey, *pageZeroMap, + [&](ROOT::DescriptorId_t physicalColumnId, ROOT::NTupleSize_t pageNo, + const ROOT::RClusterDescriptor::RPageInfo &pageInfo) { + const auto &pageLocator = pageInfo.GetLocator(); + if (pageLocator.GetType() == RNTupleLocator::kTypeUnknown) + throw RException(R__FAIL("tried to read a page with an unknown locator")); + const auto nBytes = pageLocator.GetNBytesOnStorage() + pageInfo.HasChecksum() * kNBytesPageChecksum; + activeSize += nBytes; + onDiskPages.push_back({physicalColumnId, pageNo, pageLocator.GetPosition(), nBytes, 0}); + }); // Linearize the page requests by file offset std::sort(onDiskPages.begin(), onDiskPages.end(), From 749468cb40cafe5575ab52f31b3776e6bbffda3a Mon Sep 17 00:00:00 2001 From: silverweed Date: Wed, 14 Jan 2026 09:31:51 +0100 Subject: [PATCH 03/14] [ntuple] Remove mention of GetNEntries() from GetSharedDescriptorGuard --- tree/ntuple/inc/ROOT/RPageStorage.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tree/ntuple/inc/ROOT/RPageStorage.hxx b/tree/ntuple/inc/ROOT/RPageStorage.hxx index 0d3c7e6299d2f..c396a3f6ae551 100644 --- a/tree/ntuple/inc/ROOT/RPageStorage.hxx +++ b/tree/ntuple/inc/ROOT/RPageStorage.hxx @@ -757,7 +757,7 @@ public: /// The underlying `std::shared_mutex`, however, is neither read nor write recursive: /// within one thread, only one lock (shared or exclusive) must be acquired at the same time. This requires special /// care in sections protected by `GetSharedDescriptorGuard()` and `GetExclDescriptorGuard()` especially to avoid - /// that the locks are acquired indirectly (e.g. by a call to `GetNEntries()`). As a general guideline, no other + /// that the locks are acquired indirectly. As a general guideline, no other /// method of the page source should be called (directly or indirectly) in a guarded section. const RSharedDescriptorGuard GetSharedDescriptorGuard() const { From 9c5b154bb2543a322f04f939611672afbd4eaeb5 Mon Sep 17 00:00:00 2001 From: silverweed Date: Fri, 23 Jan 2026 15:22:07 +0100 Subject: [PATCH 04/14] [ntuple] Move RRawFile fwd decl inside the other Internal block --- tree/ntuple/inc/ROOT/RMiniFile.hxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tree/ntuple/inc/ROOT/RMiniFile.hxx b/tree/ntuple/inc/ROOT/RMiniFile.hxx index 45e6ec305572a..2345716f6e626 100644 --- a/tree/ntuple/inc/ROOT/RMiniFile.hxx +++ b/tree/ntuple/inc/ROOT/RMiniFile.hxx @@ -32,13 +32,12 @@ class TVirtualStreamerInfo; namespace ROOT { -namespace Internal { -class RRawFile; -} - class RNTupleWriteOptions; namespace Internal { + +class RRawFile; + /// Holds status information of an open ROOT file during writing struct RTFileControlBlock; From 8a8f621cba92fb7f4a189eee30b3df56c5812c04 Mon Sep 17 00:00:00 2001 From: Jonas Rembser Date: Sun, 25 Jan 2026 22:01:13 +0100 Subject: [PATCH 05/14] [df] Mark initialization method of DistRDF Base as `staticmethod` This is necessary with Python 3.14 so the function returned by `partial` doesn't won't be passed the `self` when called as a member of the DistRDF base class. Fixes failures like these: ```txt =================================== FAILURES =================================== _________________ TestInitialization.test_initialization[dask] _________________ self = payload = (, 'dask') def test_initialization(self, payload): """ Check that the user initialization method is assigned to the current backend. """ connection, _ = payload def returnNumber(n): return n DistRDF.initialize(returnNumber, 123) df = ROOT.RDataFrame(10, executor=connection) # Dummy df just to retrieve the initialization function f = df._headnode.backend.initialization > assert f() == 123 ^^^ E TypeError: TestInitialization.test_initialization..returnNumber() takes 1 positional argument but 2 were given ../../../../../src/roottest/python/distrdf/backends/check_backend.py:81: TypeError ``` --- bindings/distrdf/python/DistRDF/Backends/Base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/distrdf/python/DistRDF/Backends/Base.py b/bindings/distrdf/python/DistRDF/Backends/Base.py index d4bc1da00de9d..85ea051f727dd 100644 --- a/bindings/distrdf/python/DistRDF/Backends/Base.py +++ b/bindings/distrdf/python/DistRDF/Backends/Base.py @@ -201,7 +201,7 @@ def register_initialization(cls, fun, *args, **kwargs): **kwargs (dict): Keyword arguments used to execute the function. """ - cls.initialization = partial(fun, *args, **kwargs) + cls.initialization = staticmethod(partial(fun, *args, **kwargs)) fun(*args, **kwargs) @classmethod From d298f0c8f13139e5c91e2247a4ff28d6327e1a79 Mon Sep 17 00:00:00 2001 From: Jonas Rembser Date: Sun, 25 Jan 2026 20:34:52 +0100 Subject: [PATCH 06/14] [ci] Enable distributed RDataFrame dast tests in Fedora 44 This is to test distributed RDataFrame also on a platform with Python 3.14. Also remove some unneeded configuration flags, because they don't deviate from `global.txt`. --- .github/workflows/root-ci-config/buildconfig/fedora44.txt | 1 - .github/workflows/root-ci-config/buildconfig/mac-beta.txt | 2 -- .github/workflows/root-ci-config/buildconfig/mac15.txt | 2 -- .github/workflows/root-ci-config/buildconfig/mac26.txt | 2 -- 4 files changed, 7 deletions(-) diff --git a/.github/workflows/root-ci-config/buildconfig/fedora44.txt b/.github/workflows/root-ci-config/buildconfig/fedora44.txt index c7f501921d106..25ef52a9b8226 100644 --- a/.github/workflows/root-ci-config/buildconfig/fedora44.txt +++ b/.github/workflows/root-ci-config/buildconfig/fedora44.txt @@ -3,6 +3,5 @@ builtin_zlib=ON builtin_zstd=ON experimental_adaptivecpp=ON pythia8=ON -test_distrdf_dask=OFF test_distrdf_pyspark=OFF vdt=OFF diff --git a/.github/workflows/root-ci-config/buildconfig/mac-beta.txt b/.github/workflows/root-ci-config/buildconfig/mac-beta.txt index 40282e1d60a3c..63fce456ab22c 100644 --- a/.github/workflows/root-ci-config/buildconfig/mac-beta.txt +++ b/.github/workflows/root-ci-config/buildconfig/mac-beta.txt @@ -25,6 +25,4 @@ check_connection=ON cocoa=ON minuit2_omp=OFF r=OFF -test_distrdf_dask=ON -test_distrdf_pyspark=ON x11=OFF diff --git a/.github/workflows/root-ci-config/buildconfig/mac15.txt b/.github/workflows/root-ci-config/buildconfig/mac15.txt index 8f60c0781132e..e3909456f9928 100644 --- a/.github/workflows/root-ci-config/buildconfig/mac15.txt +++ b/.github/workflows/root-ci-config/buildconfig/mac15.txt @@ -23,7 +23,5 @@ builtin_zstd=ON cocoa=ON minuit2_omp=OFF r=OFF -test_distrdf_dask=ON -test_distrdf_pyspark=ON tmva-sofie=ON x11=OFF diff --git a/.github/workflows/root-ci-config/buildconfig/mac26.txt b/.github/workflows/root-ci-config/buildconfig/mac26.txt index 40282e1d60a3c..63fce456ab22c 100644 --- a/.github/workflows/root-ci-config/buildconfig/mac26.txt +++ b/.github/workflows/root-ci-config/buildconfig/mac26.txt @@ -25,6 +25,4 @@ check_connection=ON cocoa=ON minuit2_omp=OFF r=OFF -test_distrdf_dask=ON -test_distrdf_pyspark=ON x11=OFF From 1ba8730dcffbb1ed2e1419f0796188a7daf4947c Mon Sep 17 00:00:00 2001 From: Jonas Hahnfeld Date: Fri, 23 Jan 2026 13:04:44 +0100 Subject: [PATCH 07/14] [ntuple] Move RRawPtrWriteEntry out of Experimental --- README/ReleaseNotes/v640/index.md | 2 ++ tree/ntuple/inc/ROOT/RFieldBase.hxx | 9 +-------- tree/ntuple/inc/ROOT/RFieldToken.hxx | 4 +--- tree/ntuple/inc/ROOT/RNTupleFillContext.hxx | 6 +++--- tree/ntuple/inc/ROOT/RNTupleModel.hxx | 4 +--- tree/ntuple/inc/ROOT/RNTupleWriter.hxx | 6 +++--- tree/ntuple/inc/ROOT/RRawPtrWriteEntry.hxx | 4 +--- tree/ntuple/src/RNTupleModel.cxx | 5 ++--- tutorials/io/ntuple/ntpl014_framework.C | 10 ++-------- 9 files changed, 16 insertions(+), 34 deletions(-) diff --git a/README/ReleaseNotes/v640/index.md b/README/ReleaseNotes/v640/index.md index 6a7890c227d20..be775efee3a8f 100644 --- a/README/ReleaseNotes/v640/index.md +++ b/README/ReleaseNotes/v640/index.md @@ -87,6 +87,8 @@ This change affects the following classes: `TFile`, `TMapFile`, `TMemFile`, `TD ### RNTuple +* `RRawPtrWriteEntry` is now part of the stable API, in the `ROOT::Detail` namespace. It is useful for frameworks passing data to RNTuple as `const` raw pointers. + ## Math ### Migration from VecCore/Vc to `std::experimental::simd` for Vectorization diff --git a/tree/ntuple/inc/ROOT/RFieldBase.hxx b/tree/ntuple/inc/ROOT/RFieldBase.hxx index cf9c5f1a09332..3c27e0d7628a8 100644 --- a/tree/ntuple/inc/ROOT/RFieldBase.hxx +++ b/tree/ntuple/inc/ROOT/RFieldBase.hxx @@ -41,16 +41,9 @@ class RClassField; namespace Detail { class RFieldVisitor; -} // namespace Detail - -namespace Experimental { - -namespace Detail { class RRawPtrWriteEntry; } // namespace Detail -} // namespace Experimental - namespace Internal { class RPageSink; @@ -86,7 +79,7 @@ This is and can only be partially enforced through C++. // clang-format on class RFieldBase { friend class RFieldZero; // to reset fParent pointer in ReleaseSubfields() - friend class ROOT::Experimental::Detail::RRawPtrWriteEntry; // to call Append() + friend class ROOT::Detail::RRawPtrWriteEntry; // to call Append() friend struct ROOT::Internal::RFieldCallbackInjector; // used for unit tests friend struct ROOT::Internal::RFieldRepresentationModifier; // used for unit tests friend void Internal::CallFlushColumnsOnField(RFieldBase &); diff --git a/tree/ntuple/inc/ROOT/RFieldToken.hxx b/tree/ntuple/inc/ROOT/RFieldToken.hxx index b5caec9daeb06..2b232c03979ba 100644 --- a/tree/ntuple/inc/ROOT/RFieldToken.hxx +++ b/tree/ntuple/inc/ROOT/RFieldToken.hxx @@ -22,11 +22,9 @@ namespace ROOT { class REntry; class RNTupleModel; -namespace Experimental { namespace Detail { class RRawPtrWriteEntry; } // namespace Detail -} // namespace Experimental // clang-format off /** @@ -40,7 +38,7 @@ It can be used for fast indexing in REntry's methods, e.g. REntry::BindValue(). class RFieldToken { friend class REntry; friend class RNTupleModel; - friend class Experimental::Detail::RRawPtrWriteEntry; + friend class Detail::RRawPtrWriteEntry; std::size_t fIndex = 0; ///< The index of the field (top-level or registered subfield) std::uint64_t fSchemaId = std::uint64_t(-1); ///< Safety check to prevent tokens from other models being used diff --git a/tree/ntuple/inc/ROOT/RNTupleFillContext.hxx b/tree/ntuple/inc/ROOT/RNTupleFillContext.hxx index 0737cfd827cd8..9f84633a368ac 100644 --- a/tree/ntuple/inc/ROOT/RNTupleFillContext.hxx +++ b/tree/ntuple/inc/ROOT/RNTupleFillContext.hxx @@ -129,14 +129,14 @@ public: /// /// This method will check the entry's model ID to ensure it comes from the context's own model or throw an exception /// otherwise. - void FillNoFlush(Experimental::Detail::RRawPtrWriteEntry &entry, ROOT::RNTupleFillStatus &status) + void FillNoFlush(ROOT::Detail::RRawPtrWriteEntry &entry, ROOT::RNTupleFillStatus &status) { FillNoFlushImpl(entry, status); } /// Fill an RRawPtrWriteEntry into this context. This method will check the entry's model ID to ensure it comes /// from the context's own model or throw an exception otherwise. /// \return The number of uncompressed bytes written. - std::size_t Fill(Experimental::Detail::RRawPtrWriteEntry &entry) { return FillImpl(entry); } + std::size_t Fill(ROOT::Detail::RRawPtrWriteEntry &entry) { return FillImpl(entry); } /// Flush column data, preparing for CommitCluster or to reduce memory usage. This will trigger compression of pages, /// but not actually write to storage. @@ -148,7 +148,7 @@ public: const ROOT::RNTupleModel &GetModel() const { return *fModel; } std::unique_ptr CreateEntry() const { return fModel->CreateEntry(); } - std::unique_ptr CreateRawPtrWriteEntry() const + std::unique_ptr CreateRawPtrWriteEntry() const { return fModel->CreateRawPtrWriteEntry(); } diff --git a/tree/ntuple/inc/ROOT/RNTupleModel.hxx b/tree/ntuple/inc/ROOT/RNTupleModel.hxx index 32a23ce9d4dcb..13bc157fc3489 100644 --- a/tree/ntuple/inc/ROOT/RNTupleModel.hxx +++ b/tree/ntuple/inc/ROOT/RNTupleModel.hxx @@ -35,11 +35,9 @@ class RNTupleWriteOptions; class RNTupleModel; class RNTupleWriter; -namespace Experimental { namespace Detail { class RRawPtrWriteEntry; } // namespace Detail -} // namespace Experimental namespace Internal { class RProjectedFields; @@ -343,7 +341,7 @@ public: /// Creates a "bare entry", i.e. a entry with all null values. The user needs to explicitly call BindValue() or /// BindRawPtr() to set memory addresses before serializing / deserializing the entry. std::unique_ptr CreateBareEntry() const; - std::unique_ptr CreateRawPtrWriteEntry() const; + std::unique_ptr CreateRawPtrWriteEntry() const; /// Creates a token to be used in REntry methods to address a field present in the entry ROOT::RFieldToken GetToken(std::string_view fieldName) const; /// Calls the given field's CreateBulk() method. Throws an RException if no field with the given name exists. diff --git a/tree/ntuple/inc/ROOT/RNTupleWriter.hxx b/tree/ntuple/inc/ROOT/RNTupleWriter.hxx index 7662a922d1b1e..e16b89f2d9651 100644 --- a/tree/ntuple/inc/ROOT/RNTupleWriter.hxx +++ b/tree/ntuple/inc/ROOT/RNTupleWriter.hxx @@ -170,10 +170,10 @@ public: /// Fill an RRawPtrWriteEntry into this ntuple. This method will check the entry's model ID to ensure it comes from /// the writer's own model or throw an exception otherwise. /// \return The number of uncompressed bytes written. - std::size_t Fill(Experimental::Detail::RRawPtrWriteEntry &entry) { return fFillContext.Fill(entry); } + std::size_t Fill(ROOT::Detail::RRawPtrWriteEntry &entry) { return fFillContext.Fill(entry); } /// Fill an RRawPtrWriteEntry into this ntuple, but don't commit the cluster. The calling code must pass an /// RNTupleFillStatus and check RNTupleFillStatus::ShouldFlushCluster. - void FillNoFlush(Experimental::Detail::RRawPtrWriteEntry &entry, RNTupleFillStatus &status) + void FillNoFlush(ROOT::Detail::RRawPtrWriteEntry &entry, RNTupleFillStatus &status) { fFillContext.FillNoFlush(entry, status); } @@ -196,7 +196,7 @@ public: void CommitDataset(); std::unique_ptr CreateEntry() const { return fFillContext.CreateEntry(); } - std::unique_ptr CreateRawPtrWriteEntry() const + std::unique_ptr CreateRawPtrWriteEntry() const { return fFillContext.CreateRawPtrWriteEntry(); } diff --git a/tree/ntuple/inc/ROOT/RRawPtrWriteEntry.hxx b/tree/ntuple/inc/ROOT/RRawPtrWriteEntry.hxx index ea941f7bbcdb4..d8d8dce7fa037 100644 --- a/tree/ntuple/inc/ROOT/RRawPtrWriteEntry.hxx +++ b/tree/ntuple/inc/ROOT/RRawPtrWriteEntry.hxx @@ -30,12 +30,11 @@ class RNTupleModel; class RNTupleFillContext; -namespace Experimental { namespace Detail { // clang-format off /** -\class ROOT::Experimental::Detail::RRawPtrWriteEntry +\class ROOT::Detail::RRawPtrWriteEntry \ingroup NTuple \brief A container of const raw pointers, corresponding to a row in the data set @@ -120,7 +119,6 @@ public: }; } // namespace Detail -} // namespace Experimental } // namespace ROOT #endif diff --git a/tree/ntuple/src/RNTupleModel.cxx b/tree/ntuple/src/RNTupleModel.cxx index 83038c72acef3..d2d80b2576882 100644 --- a/tree/ntuple/src/RNTupleModel.cxx +++ b/tree/ntuple/src/RNTupleModel.cxx @@ -505,7 +505,7 @@ std::unique_ptr ROOT::RNTupleModel::CreateBareEntry() const return entry; } -std::unique_ptr ROOT::RNTupleModel::CreateRawPtrWriteEntry() const +std::unique_ptr ROOT::RNTupleModel::CreateRawPtrWriteEntry() const { switch (fModelState) { case EState::kBuilding: throw RException(R__FAIL("invalid attempt to create entry of unfrozen model")); @@ -513,8 +513,7 @@ std::unique_ptr ROOT::RNTupleMode case EState::kFrozen: break; } - auto entry = std::unique_ptr( - new Experimental::Detail::RRawPtrWriteEntry(fModelId, fSchemaId)); + auto entry = std::unique_ptr(new Detail::RRawPtrWriteEntry(fModelId, fSchemaId)); for (const auto &f : fFieldZero->GetMutableSubfields()) { entry->AddField(*f); } diff --git a/tutorials/io/ntuple/ntpl014_framework.C b/tutorials/io/ntuple/ntpl014_framework.C index 26e320fa354a4..a17c5465f5294 100644 --- a/tutorials/io/ntuple/ntpl014_framework.C +++ b/tutorials/io/ntuple/ntpl014_framework.C @@ -24,9 +24,6 @@ /// \date September 2024 /// \author The ROOT Team -// NOTE: The RRawPtrWriteEntry is experimental at this point. -// Functionality and interface are still subject to changes. - #include #include #include @@ -49,9 +46,6 @@ #include // for std::pair #include -// Import classes from Experimental namespace for the time being -using ROOT::Experimental::Detail::RRawPtrWriteEntry; - using ModelTokensPair = std::pair, std::vector>; // A DataProduct associates an arbitrary address to an index in the model. @@ -95,7 +89,7 @@ class ParallelOutputter final : public Outputter { struct SlotData { std::shared_ptr fillContext; - std::unique_ptr entry; + std::unique_ptr entry; }; std::vector fSlots; @@ -161,7 +155,7 @@ class SerializingOutputter final : public Outputter { std::vector fTokens; struct SlotData { - std::unique_ptr entry; + std::unique_ptr entry; }; std::vector fSlots; From 50c9227e3b9efd45ee3ee4afe2edfda7e96b873f Mon Sep 17 00:00:00 2001 From: Jonas Rembser Date: Sun, 25 Jan 2026 18:41:58 +0100 Subject: [PATCH 08/14] [tutorials] Remove `main()` function with no return statement This is to avoid a warning when running the tutorials: ```txt Processing /github/home/ROOT-CI/src/tutorials/machine_learning/TMVA_SOFIE_GNN_Application.C... In file included from input_line_10:1: ##[error]/github/home/ROOT-CI/src/tutorials/machine_learning/TMVA_SOFIE_GNN_Application.C:14:10: fatal error: 'encoder.hxx' file not found #include "encoder.hxx" ^~~~~~~~~~~~~ ##[error]/github/home/ROOT-CI/src/tutorials/machine_learning/TMVA_SOFIE_GNN_Application.C:138:1: error: non-void function does not return a value [-Werror,-Wreturn-type] } ^ ``` --- tutorials/machine_learning/TMVA_SOFIE_GNN_Application.C | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tutorials/machine_learning/TMVA_SOFIE_GNN_Application.C b/tutorials/machine_learning/TMVA_SOFIE_GNN_Application.C index dcf03fb14c3e6..31255ec63d548 100644 --- a/tutorials/machine_learning/TMVA_SOFIE_GNN_Application.C +++ b/tutorials/machine_learning/TMVA_SOFIE_GNN_Application.C @@ -234,10 +234,3 @@ void TMVA_SOFIE_GNN_Application (bool verbose = false) c2->cd(3); o3->Draw(); } - -int main () { - - TMVA_SOFIE_GNN_Application(); -} - - From ec993a74c101f72451659bc3255ce207a1041654 Mon Sep 17 00:00:00 2001 From: Jonas Rembser Date: Sun, 25 Jan 2026 13:22:04 +0100 Subject: [PATCH 09/14] [roottest] Use `sed` and not `grep -v` to filter lines from test output The problem with `grep -v` is that it returns an non-zero error status code if nothing was found, which is a prolem if the output has no lines other than the filtered one. The test would fail because the test driver thinks something went wrong because of the non-zero status code. --- roottest/cling/typedef/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roottest/cling/typedef/CMakeLists.txt b/roottest/cling/typedef/CMakeLists.txt index 2e2df18b54887..06bc4b118801c 100644 --- a/roottest/cling/typedef/CMakeLists.txt +++ b/roottest/cling/typedef/CMakeLists.txt @@ -9,7 +9,7 @@ ROOTTEST_ADD_TEST(runptrptr ROOTTEST_ADD_TEST(testclass MACRO -e "gSystem->Load(\"testclass_h\")" OUTREF typedefAndScope.ref - OUTCNVCMD grep -v \(int\)\ 0 + OUTCNVCMD sed -e "/(int) 0/d" DEPENDS testclass.h LABELS roottest regression cling) From 0a2410ac89ba1b7b3b33dddcc6c415b86496a612 Mon Sep 17 00:00:00 2001 From: Jonas Rembser Date: Sat, 24 Jan 2026 12:58:18 +0100 Subject: [PATCH 10/14] Remove stray line break when running `root -q` with input files ROOT first prints a newline before going over the inputs to separate printouts from the initial "root [0]" prompt. But if root is run with "-q", there is no prompt and we don't need the newline. Removing this spurious newline completely avoids all output when building ROOT, where the newline used to happen when running `hsimple.C`. This is commit is similar to 8e8b6bbe79594f0, which removed another stray linebreak in the opposite case of running `root` with no input files. --- README/ReleaseNotes/v640/index.md | 6 ++++++ core/rint/src/TRint.cxx | 5 ++++- roottest/cling/array/array1test.ref | 1 - roottest/cling/bytecode/arrayhist.ref | 1 - roottest/cling/bytecode/complex.ref | 1 - roottest/cling/bytecode/henry.ref | 1 - roottest/cling/const/good1.output | 1 - roottest/cling/const/good2.output | 1 - roottest/cling/controls/Loopbreak.ref | 1 - roottest/cling/dict/ROOT-8096/load.ref | 1 - roottest/cling/dict/ROOT-8739/NextTest.ref | 1 - roottest/cling/dict/algebra.ref | 1 - roottest/cling/dict/defaultargs_compiled.ref | 1 - roottest/cling/dict/defaultargs_interpreted.ref | 1 - roottest/cling/dict/exectemplatetemplateTest.ref | 1 - roottest/cling/dict/operators.ref | 1 - roottest/cling/dict/templateAutodict.ref | 1 - roottest/cling/function/defaultParams.ref | 1 - roottest/cling/function/execrefDefaultParams.ref | 1 - roottest/cling/function/longArgTest.ref | 1 - roottest/cling/function/overloadResolution.ref | 1 - roottest/cling/function/privateConstructor.ref | 1 - roottest/cling/function/staticfunc.ref | 1 - roottest/cling/function/staticfunc.ref-cling | 1 - roottest/cling/function/trybody.ref | 1 - roottest/cling/functionTemplate/cintrun.ref | 1 - roottest/cling/functionTemplate/cintrun.ref-cling | 1 - roottest/cling/functionTemplate/referenceUse.ref | 1 - roottest/cling/functionTemplate/reflexrun.ref | 1 - roottest/cling/offset/vbase-c.out.ref | 1 - roottest/cling/offset/vbase-i.out.ref | 1 - roottest/cling/operator/EqualTest.ref | 1 - roottest/cling/operator/EqualTest.ref-cling | 1 - roottest/cling/operator/t01.ref | 1 - roottest/cling/other/checkMissingSymbolExitCode.oref | 1 - roottest/cling/other/execValuePrint.ref | 1 - roottest/cling/other/fileClose.ref | 1 - roottest/cling/other/missingXFunc.ref | 1 - roottest/cling/other/savannah54662.ref | 1 - roottest/cling/other/snprintfselect.ref | 1 - roottest/cling/other/staticConstTest.ref | 1 - roottest/cling/parsing/Readbool.ref | 1 - roottest/cling/parsing/TTestClass.ref | 1 - roottest/cling/parsing/execROOT6625.ref | 1 - roottest/cling/parsing/lessThan.ref | 1 - roottest/cling/parsing/operatorLessThanTemplate.ref | 1 - roottest/cling/parsing/ptrconst.ref | 1 - roottest/cling/parsing/semicolon.ref | 1 - roottest/cling/preproc/AutoParsePragma.ref | 1 - roottest/cling/preproc/CPPComments.ref | 1 - roottest/cling/printf/star.ref | 1 - roottest/cling/reflex/classVersion_rflx.ref | 1 - roottest/cling/reflex/iotype_rflx.ref | 1 - roottest/cling/reflex/properties_rflx.ref | 1 - roottest/cling/reload/reloadvector.ref | 1 - roottest/cling/return/barna.ref | 1 - roottest/cling/return/exitcode.ref | 1 - roottest/cling/specialobj/f02.ref | 1 - roottest/cling/specialobj/stlProxies.ref | 1 - roottest/cling/stack/tbox.ref | 1 - roottest/cling/staticinit/ROOT-10426/execROOT10426.ref | 1 - roottest/cling/staticinit/execROOT-7775.ref | 1 - roottest/cling/stl/default/VectorSort.ref | 1 - roottest/cling/stl/map/badOperatorTest.ref | 1 - roottest/cling/stl/map/badstringMapTest.ref | 1 - roottest/cling/stl/map/simpleTest.ref | 1 - roottest/cling/stl/map/stringMapTest.ref | 1 - roottest/cling/stl/string/passing.ref | 1 - roottest/cling/stl/string/passingcint.ref | 1 - roottest/cling/template/execdefaultTemplateParam.ref | 1 - roottest/cling/template/longlong.ref | 1 - roottest/cling/template/separateDict/sepDictLibs.ref | 1 - .../cling/template/separateDictNamespace/sepDictLibs.ref | 1 - roottest/cling/template/templateSingleton.ref | 1 - roottest/cling/template/templatefriend.ref | 1 - roottest/cling/template/usingtemplate.ref | 1 - roottest/cling/templateMembers/duplicate.ref | 1 - roottest/cling/templateMembers/operatorEqual.ref | 1 - roottest/cling/templateMembers/templateConstructorTest.ref | 1 - roottest/cling/typedef/typedefAndScope.ref | 1 - roottest/cling/typedef_global/output.ref-cling | 1 - roottest/main/ROOT_8197.ref | 1 - roottest/python/cling/PyAPITest.ref | 1 - roottest/python/cling/PyClassTest.ref | 1 - roottest/root/aclic/load/execautoload.ref | 1 - roottest/root/aclic/load/execautoloadNamespace.ref | 1 - roottest/root/aclic/load/execlinktest.ref | 1 - roottest/root/aclic/misc/relpath.ref | 1 - roottest/root/aclic/nolinkdep/twoscript.ref | 1 - roottest/root/aclic/offset/offset.ref | 1 - roottest/root/aclic/offset/offsetwin.ref | 1 - roottest/root/aclic/offset/offsetwin.ref32 | 1 - roottest/root/aclic/with space/thetest.ref | 1 - roottest/root/collection/CATTreeClear.ref | 1 - roottest/root/collection/DeleteWarning.ref | 1 - roottest/root/collection/TExMap.ref | 1 - roottest/root/collection/TMap.ref | 1 - roottest/root/collection/execHistArray.ref | 1 - roottest/root/collection/execMissing.oref | 1 - roottest/root/collection/execMissing.ref | 1 - roottest/root/collection/execRangeExpression.ref | 1 - roottest/root/collection/execTClonesArrayAbsorb.ref | 1 - roottest/root/collection/runTExMap.oref | 1 - roottest/root/collection/runTExMap32.oref | 1 - roottest/root/collection/tbits.ref | 1 - roottest/root/core/base64.ref | 1 - roottest/root/core/lifetime.ref | 1 - roottest/root/core/stringView.ref | 1 - roottest/root/core/testTEnv.ref | 1 - roottest/root/dataframe/regression_snapshot.ref | 1 - roottest/root/dataframe/test_ctors.ref | 1 - roottest/root/dataframe/test_glob.ref | 1 - roottest/root/dataframe/test_readTotemNtuple.ref | 1 - roottest/root/dataframe/test_reduce.ref | 1 - roottest/root/dataframe/test_snapshotMT_dir.ref | 1 - roottest/root/dataframe/test_snapshotMT_subdir.ref | 1 - roottest/root/dataframe/test_snapshot_dir.ref | 1 - roottest/root/dataframe/test_snapshot_subdir.ref | 1 - roottest/root/dataframe/test_stringfiltercolumn.ref | 1 - roottest/root/dataframe/test_trainCache.ref | 1 - roottest/root/fit/linear/storing.ref | 1 - roottest/root/graf/textcopy.ref | 1 - roottest/root/hist/division/testTEfficiency.ref | 1 - roottest/root/hist/formula/execGetExp.ref | 1 - roottest/root/hist/formula/formio.ref | 1 - roottest/root/hist/formula/recurse.ref | 1 - roottest/root/hist/formula/string.ref | 1 - roottest/root/hist/misc/testSparse.ref | 1 - roottest/root/hist/operator/Projections.ref | 1 - roottest/root/hist/operator/copy.ref | 1 - roottest/root/hist/operator/sparse.ref | 1 - roottest/root/hist/profile/copy.ref | 1 - roottest/root/io/TFile/execFlipOver.ref | 1 - roottest/root/io/TFile/execNestedCollectionStreamerInfo.ref | 1 - roottest/root/io/TFile/execRelativePath.ref | 1 - roottest/root/io/TFile/execStreamerInfoHash.ref | 1 - roottest/root/io/TFile/execStreamerInfoList.ref | 1 - roottest/root/io/abstractclass/read_test.ref | 1 - roottest/root/io/alloc/customConstructor.ref-notemplateCtor | 1 - roottest/root/io/alloc/customConstructorACLiC.ref | 1 - roottest/root/io/arrayobject/ReadBar.ref | 1 - roottest/root/io/arrayobject/ReadBarOld.ref | 1 - roottest/root/io/arrayobject/RealArraySave.ref | 1 - roottest/root/io/bill01/checksize.ref | 1 - roottest/root/io/bill02/checksize.ref | 1 - roottest/root/io/buffer/ownership.ref | 1 - roottest/root/io/clones/execV5Formula.ref | 1 - roottest/root/io/complex/execreadClassWithComplex.ref | 1 - roottest/root/io/complex/execreadcomplex.ref | 1 - roottest/root/io/complex/execwriteClassWithComplex.ref | 1 - roottest/root/io/complex/execwritecomplex.ref | 1 - roottest/root/io/const/constTest.ref | 1 - roottest/root/io/cpp11Containers/execForwardList.ref | 1 - roottest/root/io/cpp11Containers/execUnorderedMap.ref | 1 - roottest/root/io/cpp11Containers/execUnorderedSet.ref | 1 - .../root/io/cpp11Containers/execcpp11ContainersNames.ref | 1 - roottest/root/io/customCollection/customCollection.ref | 1 - .../root/io/customCollection/execWriteCustomCollection.ref | 1 - roottest/root/io/customStreamer/StreamerThrow.ref | 1 - roottest/root/io/customStreamer/customStreamerTest.ref | 1 - roottest/root/io/datamodelevolution/00/test1.ref | 1 - roottest/root/io/datamodelevolution/00/test2.ref | 1 - roottest/root/io/datamodelevolution/00/test3.ref | 1 - roottest/root/io/datamodelevolution/01/rtest1.ref | 1 - roottest/root/io/datamodelevolution/01/rtest2.ref | 1 - roottest/root/io/datamodelevolution/01/rtest3.ref | 1 - roottest/root/io/datamodelevolution/01/test1.ref | 1 - roottest/root/io/datamodelevolution/01/test2.ref | 1 - roottest/root/io/datamodelevolution/01/test3.ref | 1 - .../root/io/datamodelevolution/cms-00/execReadRename1.ref | 1 - .../root/io/datamodelevolution/cms-00/execReadRename2.ref | 1 - .../root/io/datamodelevolution/cms-00/execWriteRename.ref | 1 - .../root/io/datamodelevolution/cms-00/read_reflex_test1.ref | 1 - roottest/root/io/datamodelevolution/cms-00/read_test1.ref | 1 - roottest/root/io/datamodelevolution/cms-00/reflex_test1.ref | 1 - roottest/root/io/datamodelevolution/cms-00/test1.ref | 1 - .../root/io/datamodelevolution/misc/execConversions.ref | 1 - .../root/io/datamodelevolution/misc/execReadOrderClass.ref | 1 - .../root/io/datamodelevolution/misc/execWriteOrderClass.ref | 1 - roottest/root/io/datamodelevolution/misc/postobj.ref | 1 - roottest/root/io/datamodelevolution/misc/writeTree.ref | 1 - roottest/root/io/datamodelevolution/stl/execMapContent.ref | 1 - roottest/root/io/datamodelevolution/stl/execReadFile.ref | 1 - roottest/root/io/datamodelevolution/stl/execWriteFile.ref | 1 - roottest/root/io/dirdelete/dirdelete.fail.ref | 1 - roottest/root/io/dirdelete/dirdelete.ref | 1 - roottest/root/io/directory/cd.ref | 1 - roottest/root/io/directory/execKeyOrder.ref | 1 - roottest/root/io/directory/execOverWriteDir.ref | 1 - roottest/root/io/directory/execRecursiveGet.ref | 1 - roottest/root/io/directory/execmanydirs.ref | 1 - roottest/root/io/directory/getobj.ref | 1 - roottest/root/io/directory/testFindObjectAny.ref | 1 - roottest/root/io/directory/withautoadd.ref | 1 - roottest/root/io/double32/template32.ref | 1 - roottest/root/io/emulated/execROOT8804.ref | 1 - roottest/root/io/emulated/execROOT8804.ref32 | 1 - roottest/root/io/emulated/read.ref | 1 - roottest/root/io/emulated/readAbstract.ref | 1 - roottest/root/io/emulated/rewrite.ref | 1 - roottest/root/io/evolution/ClassConvReadNew.ref | 1 - roottest/root/io/evolution/ClassConvReadOther.ref | 1 - roottest/root/io/evolution/ClonesArrayEvo.ref | 1 - roottest/root/io/evolution/Missing.ref | 1 - roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref | 1 - roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref64 | 1 - roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref | 1 - roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref64 | 1 - roottest/root/io/evolution/WriteFixedArrayNew.ref | 1 - roottest/root/io/evolution/WriteFixedArrayOld.ref | 1 - roottest/root/io/evolution/array/fixed2var.ref | 1 - roottest/root/io/evolution/boolUpdate.ref | 1 - .../evolution/equivalent/execioReadRuleEquivalentCode.ref | 1 - roottest/root/io/evolution/execSkipbaseclass.ref | 1 - roottest/root/io/evolution/execStlInheritNew.ref | 1 - roottest/root/io/evolution/execStlInheritOld.ref | 1 - roottest/root/io/evolution/fixarr1.ref | 1 - roottest/root/io/evolution/fixarr2.ref | 1 - roottest/root/io/evolution/fixarr3.ref | 1 - roottest/root/io/evolution/foreign310.ref | 1 - roottest/root/io/evolution/issue-8083/execWriteAfterOld.ref | 1 - roottest/root/io/evolution/issue-8083/execreadfile.ref | 1 - roottest/root/io/evolution/numerical_conversions/read.ref | 1 - roottest/root/io/evolution/pragma_read/execTestv1.ref | 1 - roottest/root/io/evolution/pragma_read/execTestv2.ref | 1 - .../root/io/evolution/rules/execAddRemoveStreamerInfo.ref | 1 - .../root/io/evolution/rules/execCheckRuleRegistration.ref | 1 - roottest/root/io/evolution/rules/execSourceTypes.ref | 1 - roottest/root/io/evolution/skip.ref | 1 - roottest/root/io/evolution/stl_conversions/check.stl.ref | 1 - roottest/root/io/evolution/typedef.ref | 1 - roottest/root/io/evolution/v5names/execQualifiedNames.ref | 1 - roottest/root/io/evolution/versions/AddVersion-1-1.ref | 1 - roottest/root/io/evolution/versions/AddVersion-1-2.ref | 1 - roottest/root/io/evolution/versions/AddVersion-1-3.ref | 1 - roottest/root/io/evolution/versions/AddVersion-1-4.ref | 1 - roottest/root/io/evolution/versions/AddVersion-1-5.ref | 1 - roottest/root/io/evolution/versions/AddVersion-1-6.ref | 1 - roottest/root/io/evolution/versions/AddVersion-2-1.ref | 1 - roottest/root/io/evolution/versions/AddVersion-2-2.ref | 1 - roottest/root/io/evolution/versions/AddVersion-2-3.ref | 1 - roottest/root/io/evolution/versions/AddVersion-2-4.ref | 1 - roottest/root/io/evolution/versions/AddVersion-2-5.ref | 1 - roottest/root/io/evolution/versions/AddVersion-2-6.ref | 1 - roottest/root/io/evolution/versions/AddVersion-3-6.ref | 1 - roottest/root/io/evolution/versions/AddVersion-3-7.ref | 1 - roottest/root/io/evolution/versions/VecLong-1.ref64 | 1 - roottest/root/io/evolution/versions/VecLong-2.ref64 | 1 - roottest/root/io/evolution/versions/execROOT7500.ref | 1 - roottest/root/io/evolution/versions/lhcb/LHCb.ref | 1 - roottest/root/io/fakeClass/checkLittle.ref | 1 - roottest/root/io/fakeClass/checkLittle0.ref | 1 - roottest/root/io/fakeClass/checkLittle1.ref | 1 - roottest/root/io/fakeClass/forwardDeclAndFake.ref | 1 - roottest/root/io/fakeClass/printLittle.ref | 1 - roottest/root/io/filemerger/execKeyOrder.ref | 1 - .../root/io/filemerger/references/execCreateAndMerge.ref | 1 - roottest/root/io/filemerger/references/execFileMerger.ref | 1 - roottest/root/io/filemerger/references/execMergeMulti.ref | 1 - roottest/root/io/float16/float16.ref | 1 - roottest/root/io/geo/execParse.ref | 1 - roottest/root/io/geo/readGeo.ref | 1 - roottest/root/io/hadd/hadd_check_nested_same_name.ref | 1 - roottest/root/io/heritstl/baseString.ref | 1 - roottest/root/io/heritstl/minostest.ref | 1 - roottest/root/io/ignoretobject/IgnoreTObject.ref | 1 - roottest/root/io/interface/Toplevel.ref | 1 - roottest/root/io/interface/currentFileKey.ref | 1 - roottest/root/io/issue-7754/mwe/read_mwe_0.ref | 1 - roottest/root/io/issue-7754/mwe/read_mwe_1.ref | 1 - roottest/root/io/issue-7754/read_cmssw_class_v3.ref | 1 - roottest/root/io/issue-7754/write_cmssw_class_v2.ref | 1 - roottest/root/io/issue-9899/read_cmssw_class_v3.ref | 1 - roottest/root/io/issue-9899/write_cmssw_class_v2.ref | 1 - roottest/root/io/json/ArrayCompress.ref | 1 - roottest/root/io/json/BasicTypes.ref | 1 - roottest/root/io/json/Map.ref | 1 - roottest/root/io/json/Objects.ref | 1 - roottest/root/io/json/PolyMarker.ref | 1 - roottest/root/io/json/RootClasses.ref | 1 - roottest/root/io/json/STL.ref | 1 - roottest/root/io/json/STL0.ref | 1 - roottest/root/io/json/STL1.ref | 1 - roottest/root/io/json/StreamerLoop.ref | 1 - roottest/root/io/json/String.ref | 1 - roottest/root/io/multipleInherit/run.ref | 1 - roottest/root/io/multipleInherit/write.ref | 1 - roottest/root/io/multizip/primary.ref | 1 - roottest/root/io/newClassDef/current/current_test.ref | 1 - roottest/root/io/newClassDef/featuretest/run.ref | 1 - roottest/root/io/newClassDef/new/newTest.ref | 1 - roottest/root/io/newdelete/good.output | 1 - roottest/root/io/newstl/ComplexTest.ref | 1 - roottest/root/io/newstl/Emulvector.ref | 1 - roottest/root/io/newstl/base.ref | 1 - roottest/root/io/newstl/emptyCollection.ref | 1 - roottest/root/io/newstl/emulvector.root.ref | 1 - roottest/root/io/newstl/execBitset.ref | 1 - roottest/root/io/newstl/execMemberWise.ref | 1 - roottest/root/io/newstl/execPospelovPrintFile.ref | 1 - roottest/root/io/newstl/execStlPtrLeak.ref | 1 - roottest/root/io/newstl/stlIoTest.ref | 1 - roottest/root/io/newstl/stlIoTestMac.ref | 1 - roottest/root/io/perf/slowreading/Read.ref | 1 - roottest/root/io/pointers/Canvases.ref | 1 - roottest/root/io/pointers/restoreCanvas.ref | 1 - roottest/root/io/prefetching/PrefetchReading.ref | 1 - roottest/root/io/recover/empty.ref | 1 - roottest/root/io/references/actions/test.ref | 1 - roottest/root/io/references/actions/test1.ref | 1 - roottest/root/io/references/actions/test2.ref | 1 - roottest/root/io/references/actions/test3.ref | 1 - roottest/root/io/references/execRefArrayCompress.ref | 1 - roottest/root/io/references/execWriteRefArrayCompress.ref | 1 - roottest/root/io/references/lotsRef.ref | 1 - roottest/root/io/references/lotsRef1.ref | 1 - roottest/root/io/references/refarray.ref | 1 - roottest/root/io/rootcint/cltest.ref | 1 - roottest/root/io/rootcint/execTemplateExpr.ref | 1 - roottest/root/io/rootcint/nestedtemplate.ref | 1 - roottest/root/io/rootcint/templateKeyword.ref | 1 - roottest/root/io/rootcint/virtualbase.ref | 1 - roottest/root/io/set/setLong64Test.ref | 1 - roottest/root/io/simple/cstring.ref | 1 - roottest/root/io/stdarray/aclic00.ref | 1 - roottest/root/io/stdarray/aclic01.ref | 1 - roottest/root/io/stdarray/aclic03.ref | 1 - roottest/root/io/stdarray/checkRealData.ref | 1 - roottest/root/io/stdarray/checkRealData.ref32 | 1 - roottest/root/io/stdarray/modelReadDict.ref | 1 - roottest/root/io/stdarray/modelReadDict2.ref | 1 - roottest/root/io/stdarray/modelReadNoDict.ref | 1 - roottest/root/io/stdarray/namesAnalysis.ref | 1 - roottest/root/io/stdarray/testArrOfTemplateInst.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_0_0_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_0_0_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_0_0_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_0_0_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_0_1_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_0_1_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_0_1_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_0_1_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_1_0_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_1_0_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_1_0_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_1_0_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_1_1_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_1_1_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_1_1_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_1_1_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_0_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_0_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_2_1_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_1_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_3_0_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_3_0_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_3_0_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_3_0_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_3_1_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_3_1_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_3_1_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_3_1_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref32 | 1 - roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref | 1 - roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref32 | 1 - roottest/root/io/tclass/TestTClassGlobalIsA.ref | 1 - roottest/root/io/tclass/execInterpActualClass.ref | 1 - roottest/root/io/tmpifile/references/split.ref | 1 - roottest/root/io/transient/base/execWriteFile.ref | 1 - roottest/root/io/transient/base/execWriteFile_win32.ref | 1 - roottest/root/io/transient/base/execWriteFile_win64.ref | 1 - roottest/root/io/transient/execAtomTransient.ref | 1 - roottest/root/io/transient/execDoxygenTransient.ref | 1 - roottest/root/io/transient/execDoxygenTransientInterp.ref | 1 - roottest/root/io/transient/execNew.ref | 1 - roottest/root/io/transient/execOld.ref | 1 - roottest/root/io/transient/execTransientNoctor.ref | 1 - roottest/root/io/transient/missingdict.ref | 1 - roottest/root/io/transient/transientTest.ref | 1 - roottest/root/io/tree/missingClass.ref | 1 - roottest/root/io/tree/reftest.ref | 1 - roottest/root/io/tree/test-r.ref | 1 - roottest/root/io/tree/test-rc.ref | 1 - roottest/root/io/tree/test-rcr.ref | 1 - roottest/root/io/tree/test-rcr2.ref | 1 - roottest/root/io/tree/test-rcrr.ref | 1 - roottest/root/io/tree/test-rcrr123.ref | 1 - roottest/root/io/tree/test-rcrr2.ref | 1 - roottest/root/io/tree/test-rcrr3.ref | 1 - roottest/root/io/treeForeign/fulloutput.ref | 1 - roottest/root/io/treeForeign/testForeignDrawLZ4.ref | 1 - roottest/root/io/treeForeign/testForeignDrawZLIB.ref | 1 - .../root/io/treeForeign/testForeignDrawZLIB_builtinzlib.ref | 1 - roottest/root/io/treeproblem/reader.ref | 1 - roottest/root/io/treeproblem/writer.ref | 1 - roottest/root/io/tuple/execTuple.ref | 1 - roottest/root/io/uniquePointer/aclic01.ref | 1 - roottest/root/io/uniquePointer/checkDictionaries.ref | 1 - roottest/root/io/uniquePointer/simpleRead.ref | 1 - roottest/root/io/uniquePointer/simpleReadconst.ref | 1 - roottest/root/io/uniquePointer/simpleWriteRead.ref | 1 - roottest/root/io/uniquePointer/simpleWriteReadconst.ref | 1 - roottest/root/io/uniquePointer/streamerInfoError.eref | 1 - roottest/root/io/unordered_set/setLong64Test.ref | 1 - roottest/root/io/vararyobj/readvararypolyp.good | 1 - roottest/root/io/vararyobj/varyingArrayRead_51508.good | 1 - roottest/root/io/webfile/CloseTWebFile.ref | 1 - .../io/withoutDictionaries/execIOWithoutDictionaries.oref | 1 - .../io/withoutDictionaries/execIOWithoutDictionaries.ref | 1 - .../io/withoutDictionaries/execRowWiseNoProxyWarning.ref | 1 - .../execVectorDMWriteWithoutDictionary.ref | 1 - roottest/root/io/xml/PolyMarker.ref | 1 - roottest/root/io/xml/XmlDir.ref | 1 - roottest/root/io/xml/basicxml.ref | 1 - roottest/root/io/xml/enginexml.ref | 1 - roottest/root/io/xml/execSaxParserSimple.ref | 1 - roottest/root/io/xml/filexml.ref | 1 - roottest/root/math/mathmore/testLoadLibMathMore.ref | 1 - roottest/root/meta/GetMissingDictionaries.ref | 1 - roottest/root/meta/InterpClassDef.ref | 1 - roottest/root/meta/InterpreterValue.ref | 1 - roottest/root/meta/MakeProject/aliceesd.ref | 1 - roottest/root/meta/MakeProject/atlasaod.ref | 1 - roottest/root/meta/MakeProject/cms310.ref | 1 - .../root/meta/MakeProject/create_makeproject_examples.ref | 1 - roottest/root/meta/MakeProject/foreign.ref | 1 - roottest/root/meta/MakeProject/foreign_win32.ref | 1 - roottest/root/meta/MakeProject/foreign_win64.ref | 1 - roottest/root/meta/MakeProject/stl_example.ref | 1 - roottest/root/meta/MakeProject/stltest2.ref | 1 - roottest/root/meta/MakeProject/teststlCTEST.ref | 1 - roottest/root/meta/MakeProject/teststlCTEST_win32.ref | 1 - roottest/root/meta/MakeProject/teststlCTEST_win64.ref | 1 - roottest/root/meta/MemberComments.ref | 1 - roottest/root/meta/MemberComments_win32.ref | 1 - roottest/root/meta/MemberComments_win64.ref | 1 - roottest/root/meta/PublicDataMembers.ref | 1 - roottest/root/meta/ROOT-10804/execROOT10804.oref | 1 - roottest/root/meta/ROOT-5694/execLoadLibs.oref | 1 - roottest/root/meta/ROOT-5694/execLoadLibs.ref | 1 - roottest/root/meta/ROOT-7462/execInvalidDeclRecoveryCI.ref | 1 - roottest/root/meta/ROOT-7462/execTest.ref | 1 - roottest/root/meta/ROOT-7462/execWriteFile.ref | 1 - roottest/root/meta/SignalSlots.ref | 1 - roottest/root/meta/TEnum.ref | 1 - roottest/root/meta/autoload.ref | 1 - roottest/root/meta/autoload_win32.ref | 1 - roottest/root/meta/autoload_win64.ref | 1 - roottest/root/meta/autoloading/MissingEntriesROOT-5759.ref | 1 - .../meta/autoloading/NestedClasses/execNestedClasses.ref | 1 - .../autoloading/NestedClasses/execNestedClasses_win32.ref | 1 - .../autoloading/NestedClasses/execNestedClasses_win64.ref | 1 - .../root/meta/autoloading/NestedClasses/nestedTemplate.ref | 1 - .../root/meta/autoloading/avoidAutoParsing/avoidParsing.ref | 1 - .../autoloading/classInNamespace/execClassInNamespace.ref | 1 - .../root/meta/autoloading/execAutoLoadEntriesAsSelected.ref | 1 - roottest/root/meta/autoloading/execAutoloadOnInclusion.ref | 1 - roottest/root/meta/autoloading/execTriggerTypedefs.ref | 1 - roottest/root/meta/autoloading/execTypeinfo.ref | 1 - roottest/root/meta/autoloading/exectypeDefAutoloading.ref | 1 - .../headerParsingOnDemand/execCheckComplexTypedefs.ref | 1 - .../autoloading/headerParsingOnDemand/execLDAPAttribute.ref | 1 - .../headerParsingOnDemand/headerParsingOnDemand.ref | 1 - .../meta/autoloading/headerParsingOnDemand/scopedEnums.ref | 1 - .../meta/autoloading/templates/execTemplateAutoloading.ref | 1 - roottest/root/meta/callfunc/execResolveAt.ref | 1 - roottest/root/meta/callfunc/memberFunc.ref | 1 - roottest/root/meta/callfunc/simpleFunc.ref | 1 - roottest/root/meta/clingTErrorDiagnostics.ref | 1 - roottest/root/meta/cmsUnload/case1.ref | 1 - roottest/root/meta/cmsUnload/case2.ref | 1 - roottest/root/meta/cmsUnload/case3.ref | 1 - roottest/root/meta/cmsUnload/rmap-case1.ref | 1 - roottest/root/meta/cmsUnload/rmap-case2.ref | 1 - roottest/root/meta/cmsUnload/rmap-case3.ref | 1 - roottest/root/meta/dictSelection/execAtlasTest.ref | 1 - roottest/root/meta/dictSelection/execAtlasTest2.ref | 1 - roottest/root/meta/dictSelection/execDictSelection.ref | 1 - roottest/root/meta/enums/execEnumsTest.ref | 1 - roottest/root/meta/enums/execQualifiedNames.ref | 1 - roottest/root/meta/enums/execTEnumGetEnum.ref | 1 - roottest/root/meta/enums/execduplicateEnums.ref | 1 - roottest/root/meta/enums/execenumSize.ref | 1 - roottest/root/meta/enums/execenumsInNamespaces.ref | 1 - roottest/root/meta/enums/execenumsInNamespaces2.ref | 1 - roottest/root/meta/enums/execfclassVal.ref | 1 - roottest/root/meta/enums/test_usingenum.ref | 1 - roottest/root/meta/evolution/baseClass_53410_v1.ref | 1 - roottest/root/meta/evolution/baseClass_53410_v2.ref | 1 - roottest/root/meta/evolution/baseClass_merge1.ref | 1 - roottest/root/meta/evolution/baseClass_merge2.ref | 1 - roottest/root/meta/evolution/execBaseClass_v1.ref | 1 - roottest/root/meta/evolution/execBaseClass_v2.ref | 1 - roottest/root/meta/evolution/execCheckSum.ref | 1 - roottest/root/meta/evolution/execForeignVec.ref | 1 - roottest/root/meta/evolution/execMissingCheckSum.ref | 1 - roottest/root/meta/evolution/execMixedBaseClass_v1.ref | 1 - roottest/root/meta/evolution/execMixedBaseClass_v2.ref | 1 - roottest/root/meta/evolution/execReadOldCSC.ref | 1 - roottest/root/meta/evolution/foreign.ref32 | 1 - roottest/root/meta/evolution/foreign.ref64 | 1 - roottest/root/meta/evolution/mixedBase_53410_v1.ref | 1 - roottest/root/meta/evolution/mixedBase_53410_v2.ref | 1 - roottest/root/meta/evolution/mixedBase_merge1.ref | 1 - roottest/root/meta/evolution/mixedBase_merge2.ref | 1 - roottest/root/meta/evolution/version5/execNestedColl.ref | 1 - roottest/root/meta/evolution/warning.ref | 1 - roottest/root/meta/evolution/warning0.oref | 1 - roottest/root/meta/evolution/warning1.oref | 1 - roottest/root/meta/evolution/warning10.oref | 1 - roottest/root/meta/evolution/warning11.oref | 1 - roottest/root/meta/evolution/warning12.oref | 1 - roottest/root/meta/evolution/warning13.oref | 1 - roottest/root/meta/evolution/warning14.oref | 1 - roottest/root/meta/evolution/warning15.oref | 1 - roottest/root/meta/evolution/warning16.oref | 1 - roottest/root/meta/evolution/warning17.oref | 1 - roottest/root/meta/evolution/warning18.oref | 1 - roottest/root/meta/evolution/warning2.oref | 1 - roottest/root/meta/evolution/warning3.oref | 1 - roottest/root/meta/evolution/warning4.oref | 1 - roottest/root/meta/execExecuteObjArray.ref | 1 - roottest/root/meta/execString.ref | 1 - roottest/root/meta/execTypedefList.ref | 1 - roottest/root/meta/execUnloading.ref | 1 - roottest/root/meta/execpragmasTest.ref | 1 - roottest/root/meta/expressiveErrorMessages.ref | 1 - roottest/root/meta/fwdDecls/execfwdDeclarations.ref | 1 - roottest/root/meta/genreflex/ROOT-5594/execdummy.ref | 1 - roottest/root/meta/genreflex/ROOT-5626/execdummy.ref | 1 - roottest/root/meta/genreflex/ROOT-5627/exec5627.ref | 1 - roottest/root/meta/genreflex/ROOT-5657/execloadLib.ref | 1 - roottest/root/meta/genreflex/ROOT-5690/execdummy.ref | 1 - roottest/root/meta/genreflex/ROOT-5696/exec5596.ref | 1 - roottest/root/meta/genreflex/ROOT-5709/execLibLoad.ref | 1 - roottest/root/meta/genreflex/ROOT-5756/execLibLoad.ref | 1 - roottest/root/meta/genreflex/ROOT-5764/execLibLoad.ref | 1 - roottest/root/meta/genreflex/ROOT-5881/execstringI.ref | 1 - .../meta/genreflex/ROOT-6796/execattributesFromTypedef.ref | 1 - roottest/root/meta/genreflex/TClass/execbasic.ref | 1 - roottest/root/meta/genreflex/execAttributesCheck.ref | 1 - .../root/meta/genreflex/execCheckComplicatedAllocator.ref | 1 - roottest/root/meta/genreflex/execTypedefSelection.ref | 1 - roottest/root/meta/genreflex/execmangledTest.ref | 1 - roottest/root/meta/genreflex/execns.ref | 1 - roottest/root/meta/genreflex/execreadTree.ref | 1 - roottest/root/meta/genreflex/execstlPatternSelection.ref | 1 - roottest/root/meta/genreflex/execwriteFirstRootmap.ref | 1 - roottest/root/meta/genreflex/execwriteTree.ref | 1 - .../genreflex/headersDuplicateKeys/execduplicateHeaders.ref | 1 - roottest/root/meta/genreflex/iorules/execSimpleIoRule.ref | 1 - .../genreflex/noStreamer_noInputOperator/customStreamer.ref | 1 - roottest/root/meta/hello_ROOT_C_dll.ref | 1 - roottest/root/meta/hello_ROOT_C_so.ref | 1 - roottest/root/meta/iotypeioname/execionameiotype.ref | 1 - roottest/root/meta/method/exactMatch.ref | 1 - roottest/root/meta/method/execConstMethod.ref | 1 - roottest/root/meta/method/execConstructor.ref | 1 - roottest/root/meta/method/execCreateString.ref | 1 - roottest/root/meta/method/execInlined.ref | 1 - roottest/root/meta/method/execReuseMethod.ref | 1 - roottest/root/meta/method/execTemplate.ref | 1 - roottest/root/meta/method/offset/execmethodtest.ref | 1 - roottest/root/meta/missingInfo.ref | 1 - roottest/root/meta/namespace.ref | 1 - roottest/root/meta/namespace.ref32 | 1 - roottest/root/meta/naming/execCheckNaming.ref | 1 - roottest/root/meta/naming/execCheckNaming_win32.ref | 1 - roottest/root/meta/naming/execCheckNaming_win64.ref | 1 - roottest/root/meta/naming/execClassEditNormalize.ref | 1 - roottest/root/meta/naming/execNamingMatches.ref | 1 - roottest/root/meta/naming/execNamingMatchesNoHeader.ref | 1 - roottest/root/meta/naming/execParamPack.ref | 1 - roottest/root/meta/naming/execResolveTypedef.ref | 1 - roottest/root/meta/naming/issue-18363/templateNameTest.ref | 1 - roottest/root/meta/nospace.ref | 1 - roottest/root/meta/redeclUnload/TemplateRedeclUnload.ref | 1 - roottest/root/meta/rootcling/ROOT-7695/execdummy.ref | 1 - roottest/root/meta/rootmap/spaces.ref | 1 - roottest/root/meta/tclass/classref.ref | 1 - roottest/root/meta/tclass/execBrowseNonAccessibleType.ref | 1 - roottest/root/meta/tclass/execDuplicate.ref | 1 - roottest/root/meta/tclass/execInitOrder.ref | 1 - roottest/root/meta/tclass/execInterpClassNew.ref | 1 - roottest/root/meta/tclass/execProperties.ref | 1 - roottest/root/meta/tclass/execReadSimplePair.ref | 1 - roottest/root/meta/tclass/execReadTmplt.ref | 1 - roottest/root/meta/tclass/execSharedPtr.ref | 1 - roottest/root/meta/tclass/execSimpleVector.ref | 1 - roottest/root/meta/tclass/execState.ref | 1 - roottest/root/meta/tclass/execTClassAtTearDown.ref | 1 - roottest/root/meta/tclass/execTmpltD.ref | 1 - roottest/root/meta/tclass/execTmpltD32.ref | 1 - roottest/root/meta/tclass/issue-6767/repro.ref | 1 - roottest/root/meta/tclass/issue-6840/execPair.ref | 1 - roottest/root/meta/tclass/issue-6840/pairWrite.ref | 1 - roottest/root/meta/tclass/pairs.ref | 1 - roottest/root/meta/tclass/regression/ROOT-6020.ref | 1 - .../root/meta/tclass/regression/execNormalizationInf.ref | 1 - roottest/root/meta/tclass/regression/execROOT_6019.ref | 1 - roottest/root/meta/tclass/regression/execROOT_6038.ref | 1 - roottest/root/meta/tclass/regression/execROOT_6277.ref | 1 - roottest/root/meta/tclass/tclassStl.ref | 1 - roottest/root/meta/tclass/tempParse.ref | 1 - roottest/root/meta/templateAutoload.ref | 1 - roottest/root/meta/templateAutoloadInclude.ref | 1 - roottest/root/multicore/execautoloadts.ref | 1 - roottest/root/multicore/exectsautoparse.ref | 1 - roottest/root/multicore/exectsenums.ref | 1 - roottest/root/multicore/exectsinclude.ref | 1 - roottest/root/multicore/exectstformula.ref | 1 - roottest/root/multicore/tSemaphore.ref | 1 - roottest/root/ntuple/test_basics.ref | 1 - roottest/root/selector/simple/testLoadingSelector.ref | 1 - roottest/root/tree/addresses/BadBaseAddresses.ref | 1 - roottest/root/tree/addresses/EmbeddedTest.ref | 1 - roottest/root/tree/addresses/Jantest.ref | 1 - roottest/root/tree/addresses/Jet.ref | 1 - roottest/root/tree/addresses/augertest.ref | 1 - roottest/root/tree/addresses/baseString.ref | 1 - roottest/root/tree/addresses/configtest.ref | 1 - .../root/tree/addresses/converterIssues/execROOT8794.ref | 1 - roottest/root/tree/addresses/converterIssues/execReader.ref | 1 - roottest/root/tree/addresses/converterIssues/execWriter.ref | 1 - roottest/root/tree/addresses/deepnest.ref | 1 - roottest/root/tree/addresses/execBranchObjSplit0.ref | 1 - roottest/root/tree/addresses/execCMSobj.ref | 1 - roottest/root/tree/addresses/execCheckErrors.ref | 1 - roottest/root/tree/addresses/execLeaflist.ref | 1 - roottest/root/tree/addresses/execReuseTree.ref | 1 - roottest/root/tree/addresses/headerTest.ref | 1 - roottest/root/tree/addresses/inheritAndOwn.ref | 1 - roottest/root/tree/addresses/inheritTest.ref | 1 - roottest/root/tree/addresses/iobug.ref | 1 - roottest/root/tree/addresses/longlong.ref | 1 - roottest/root/tree/addresses/memleak.ref | 1 - roottest/root/tree/addresses/merging.ref | 1 - roottest/root/tree/addresses/prova.ref | 1 - roottest/root/tree/addresses/relationsTest.ref | 1 - roottest/root/tree/addresses/suetest.ref | 1 - roottest/root/tree/addresses/treeBranch.ref | 1 - .../root/tree/addresses/treeBranch.ref-missingUnloading | 1 - roottest/root/tree/addresses/ursula.ref | 1 - roottest/root/tree/array/execStdArray.ref | 1 - roottest/root/tree/array/objArrayTest.ref | 1 - roottest/root/tree/array/objArrayTest2.ref | 1 - roottest/root/tree/basket/dropbasket.ref | 1 - roottest/root/tree/branches/abc.ref | 1 - roottest/root/tree/branches/execDupNames.ref | 1 - roottest/root/tree/branches/execEmptyBase.ref | 1 - roottest/root/tree/branches/execGetBranch.ref | 1 - roottest/root/tree/branches/execLeafFullName.ref | 1 - roottest/root/tree/branches/execWriteRead.ref | 1 - roottest/root/tree/branches/execbref.ref | 1 - roottest/root/tree/branches/i_simple.ref | 1 - roottest/root/tree/branches/noname.ref | 1 - roottest/root/tree/branches/separate.ref | 1 - roottest/root/tree/branches/simple.ref | 1 - roottest/root/tree/branches/updates.ref | 1 - roottest/root/tree/cache/assertTooSmall.ref | 1 - roottest/root/tree/cache/autocacheLZ4.ref | 1 - roottest/root/tree/cache/autocacheZLIB.ref | 1 - roottest/root/tree/cache/autocacheZLIB_builtinzlib.ref | 1 - roottest/root/tree/cache/cachedchain.ref | 1 - roottest/root/tree/cache/execCacheRange.ref | 1 - roottest/root/tree/cache/execLastCluster.ref | 1 - roottest/root/tree/cache/execTestCache.ref | 1 - roottest/root/tree/cache/execTestMissCache.ref | 1 - roottest/root/tree/cache/execperfstattestLZ4.oref | 1 - roottest/root/tree/cache/execperfstattestZLIB.oref | 1 - roottest/root/tree/cache/multiTreeLZ4.ref | 1 - roottest/root/tree/cache/multiTreeZLIB.ref | 1 - roottest/root/tree/chain/execChainElementStatus.ref | 1 - roottest/root/tree/chain/execCleanup.ref | 1 - roottest/root/tree/chain/execEmpty.ref | 1 - roottest/root/tree/chain/execNotify.ref | 1 - roottest/root/tree/chain/execTChainCleanup.ref | 1 - roottest/root/tree/chain/execfilenameformats.ref | 1 - roottest/root/tree/chain/execmissingIndex.ref | 1 - roottest/root/tree/chain/execresetbranch.ref | 1 - roottest/root/tree/chain/subdir.ref | 1 - roottest/root/tree/cloning/references/deepClass.ref | 1 - roottest/root/tree/cloning/references/exectrimLZ4.ref | 1 - roottest/root/tree/cloning/references/exectrimLZ4_i686.ref | 1 - roottest/root/tree/cloning/references/exectrimZLIB.ref | 1 - .../tree/cloning/references/exectrimZLIB_builtinzlib.ref | 1 - roottest/root/tree/cloning/references/exectrimZLIB_i686.ref | 1 - .../tree/cloning/references/exectrimZLIB_i686_win32.ref | 1 - roottest/root/tree/cloning/references/index.ref | 1 - roottest/root/tree/cloning/references/mergeWithDir.ref | 1 - roottest/root/tree/cloning/references/treeCloneTest.ref | 1 - roottest/root/tree/cloning/references/treeCloneTest2.ref | 1 - roottest/root/tree/entrylist/chain.ref | 1 - roottest/root/tree/entrylist/execTEntryListArray.ref | 1 - roottest/root/tree/entrylist/execTEntryListZip.ref | 1 - roottest/root/tree/evolution/ReadClones.ref | 1 - roottest/root/tree/evolution/ReadList.ref | 1 - roottest/root/tree/evolution/ReadNolib.ref | 1 - roottest/root/tree/evolution/ReadVector.ref | 1 - roottest/root/tree/evolution/SimpleRead.ref | 1 - roottest/root/tree/evolution/cloning.ref | 1 - roottest/root/tree/evolution/execMissingCollection.ref | 1 - roottest/root/tree/evolution/missingArray.ref | 1 - .../root/tree/evolution/split/execCreateFileFullObjRule.ref | 1 - .../root/tree/evolution/split/execReadFileFullObjRule.ref | 1 - roottest/root/tree/evolution/split/execmakeclass.ref | 1 - roottest/root/tree/evolution/split/missingsplit.ref | 1 - roottest/root/tree/fastcloning/references/abstract.ref | 1 - .../root/tree/fastcloning/references/abstract_win32.ref | 1 - .../tree/fastcloning/references/execCheckClusterRange.ref32 | 1 - .../references/execCheckClusterRange_builtinzlib.ref | 1 - .../fastcloning/references/execCheckClusterRange_zlib.ref | 1 - .../references/execCheckClusterRange_zlib_win64.ref | 1 - roottest/root/tree/fastcloning/references/execmisstop.ref | 1 - roottest/root/tree/fastcloning/references/runPlot.ref | 1 - .../root/tree/fastcloning/references/runSplitMismatch.ref | 1 - roottest/root/tree/fastcloning/references/runbadmix.ref | 1 - roottest/root/tree/fastcloning/references/runcloneChain.ref | 1 - .../root/tree/fastcloning/references/runfilemergererror.ref | 1 - roottest/root/tree/fastcloning/references/runoutoforder.ref | 1 - roottest/root/tree/friend/ChainFriend.ref | 1 - roottest/root/tree/friend/FriendOfFriends.ref | 1 - roottest/root/tree/friend/FriendsIndices.ref | 1 - roottest/root/tree/friend/Unaligned.ref | 1 - roottest/root/tree/friend/UnevenChain.ref | 1 - roottest/root/tree/friend/chainBranchStatus.ref | 1 - roottest/root/tree/friend/circular.ref | 1 - roottest/root/tree/friend/execMissingParentValue.ref | 1 - roottest/root/tree/friend/execNonExistingFriend.ref | 1 - roottest/root/tree/friend/friendInChain.ref | 1 - roottest/root/tree/friend/localfriend.ref | 1 - roottest/root/tree/friend/treeChainFriend.ref | 1 - roottest/root/tree/friend/treeChangedName.ref | 1 - roottest/root/tree/friend/treeChangedNameRead.ref | 1 - roottest/root/tree/friend/treefriend.ref | 1 - roottest/root/tree/friend/unevenFriend.ref | 1 - roottest/root/tree/index/Dupe.ref | 1 - roottest/root/tree/index/chain.ref | 1 - roottest/root/tree/index/execChainIndex.ref | 1 - roottest/root/tree/index/index64.ref | 1 - roottest/root/tree/index/indexl64.ref | 1 - roottest/root/tree/index/varsizearr.ref | 1 - roottest/root/tree/interpreted/friends.ref | 1 - roottest/root/tree/leaves/arraysize.ref | 1 - roottest/root/tree/leaves/execReadMiniObjLeaf.ref | 1 - roottest/root/tree/pointers/verify.ref | 1 - roottest/root/tree/query/array.ref | 1 - roottest/root/tree/query/execQuery.ref | 1 - roottest/root/tree/readcin/readcin.ref-cling | 1 - roottest/root/tree/readcin/readcinpiped.ref | 1 - roottest/root/tree/reader/complexTree.ref | 1 - roottest/root/tree/reader/execCheckLateProxy.ref | 1 - roottest/root/tree/reader/execEnum.ref | 1 - roottest/root/tree/reader/execIntroTut.ref | 1 - roottest/root/tree/reader/execVectorBranches.ref | 1 - roottest/root/tree/readfile/ReadFile.ref | 1 - roottest/root/tree/selector/SelectorCintTest.ref | 1 - roottest/root/tree/selector/execGetSelector.ref | 1 - roottest/root/tree/selector/execLHEF.ref | 1 - roottest/root/tree/selector/execWithAbort.ref | 1 - roottest/root/tree/selector/selector.ref | 1 - roottest/root/tree/selectorreader/Classes.ref | 1 - roottest/root/tree/selectorreader/CollectionClasses.ref | 1 - roottest/root/tree/selectorreader/Collections.ref | 1 - roottest/root/tree/selectorreader/Options.ref | 1 - roottest/root/tree/selectorreader/Simple.ref | 1 - roottest/root/tree/split/abstract.ref | 1 - roottest/root/tree/split/execReadCustomStream.ref | 1 - roottest/root/tree/split/execUnrollWithConst.ref | 1 - roottest/root/tree/split/execWriteCustomStream.ref | 1 - roottest/root/tree/stl/execPartialMap.ref | 1 - roottest/root/tree/stl/execVecPtr.ref | 1 - roottest/root/tree/stl/mixingCompiled.ref | 1 - roottest/root/tree/stl/mixingGood.ref | 1 - roottest/root/tree/stl/mixingInterp.ref | 1 - roottest/root/tree/stl/simple.ref | 1 - roottest/root/tree/stl/vstr.ref | 1 - roottest/root/tree/string/ReadFile.ref | 1 - roottest/root/tree/string/leaflist.ref | 1 - roottest/root/tree/tcut/TCut.ref | 1 - roottest/root/tree/tcut/TCutcomp.ref | 1 - roottest/root/tree/treeproblem/Memory.ref | 1 - roottest/root/tree/treeproblem/execScan.ref | 1 - roottest/root/tree/treeproblem/reader.ref | 1 - roottest/root/tree/treeproblem/ucharshow.ref | 1 - roottest/root/treedraw/simple.ref | 1 - roottest/root/treeformula/array/ScanString.ref | 1 - roottest/root/treeformula/array/arrayDrawTest.good | 1 - roottest/root/treeformula/array/arrayEventListTest.ref | 1 - roottest/root/treeformula/array/boolOptTest.ref | 1 - roottest/root/treeformula/array/execNestedFail.ref | 1 - roottest/root/treeformula/array/execOutOfBounds.ref | 1 - roottest/root/treeformula/array/indexLoad.ref | 1 - roottest/root/treeformula/array/indexMultiDim.ref | 1 - roottest/root/treeformula/array/multidim.ref | 1 - roottest/root/treeformula/array/nestedind.ref | 1 - roottest/root/treeformula/array/twodimvar.ref | 1 - roottest/root/treeformula/array/vectorInVector.ref | 1 - roottest/root/treeformula/array/vectorOfvector.ref | 1 - roottest/root/treeformula/casting/Simple.ref | 1 - roottest/root/treeformula/clones/nestedClones2.ref | 1 - roottest/root/treeformula/clones/nestedClones3.ref | 1 - roottest/root/treeformula/evolution/treetest.ref | 1 - roottest/root/treeformula/formulaio/oldFormulaTest.ref | 1 - roottest/root/treeformula/function/Timestamp.ref | 1 - roottest/root/treeformula/function/execMinMaxIf.ref | 1 - roottest/root/treeformula/function/fullload.ref | 1 - roottest/root/treeformula/function/nestedFunc.ref | 1 - roottest/root/treeformula/function/nestedHists.ref | 1 - roottest/root/treeformula/function/staticFunc.ref | 1 - roottest/root/treeformula/function/subform.ref | 1 - roottest/root/treeformula/function/testFormulaFuncCall.ref | 1 - roottest/root/treeformula/morrison/ArraySyntax.ref | 1 - roottest/root/treeformula/ntuple/macos.ref | 1 - roottest/root/treeformula/operator/largebitwise.ref | 1 - roottest/root/treeformula/operator/modulo.ref | 1 - roottest/root/treeformula/operator/ternary.ref | 1 - roottest/root/treeformula/parse/BoolOrder.ref | 1 - roottest/root/treeformula/parse/NonFormulaMean.ref | 1 - roottest/root/treeformula/parse/PEvent.ref | 1 - roottest/root/treeformula/parse/aliases.ref | 1 - roottest/root/treeformula/parse/base.ref | 1 - roottest/root/treeformula/parse/cscan.ref | 1 - roottest/root/treeformula/parse/execAliasTest.ref | 1 - roottest/root/treeformula/parse/execbranchSlash.ref | 1 - roottest/root/treeformula/parse/expotest.ref | 1 - roottest/root/treeformula/parse/form.ref | 1 - roottest/root/treeformula/parse/functca.ref | 1 - roottest/root/treeformula/parse/gaus.ref | 1 - roottest/root/treeformula/parse/nodot.ref | 1 - roottest/root/treeformula/parse/templateBase.ref | 1 - roottest/root/treeformula/parse/templateName.ref | 1 - roottest/root/treeformula/parse/testBoolOpt.ref | 1 - roottest/root/treeformula/parse/testStringFormula.ref | 1 - roottest/root/treeformula/references/RefProxyTest.ref | 1 - .../root/treeformula/references/execRefClonesArrayTest.ref | 1 - roottest/root/treeformula/retobj/enum.ref | 1 - roottest/root/treeformula/retobj/retobjTest.ref | 1 - roottest/root/treeformula/scan/Formatting.ref | 1 - roottest/root/treeformula/scan/execLoadDim.ref | 1 - roottest/root/treeformula/scan/execmissingString.ref | 1 - roottest/root/treeformula/stl/embedstl.ref | 1 - roottest/root/treeformula/stl/execReferenceReturnType.ref | 1 - roottest/root/treeformula/stl/mapvector.ref | 1 - roottest/root/treeformula/stl/pair.ref | 1 - roottest/root/treeformula/stl/secondindex.ref | 1 - roottest/root/treeformula/stl/stlString.ref | 1 - .../root/treeformula/string/createAliasStringMakeProxy.ref | 1 - roottest/root/treeformula/string/execAliasString.ref | 1 - roottest/root/treeformula/string/execDrawString.ref | 1 - roottest/root/treeformula/string/string.ref | 1 - roottest/root/treeformula/sync/alias.ref | 1 - roottest/root/treeformula/sync/execScanFail.ref | 1 - roottest/root/treeformula/sync/load.ref | 1 - roottest/root/treeformula/sync/readfile-0.ref | 1 - roottest/root/treeformula/sync/readfile-1.ref | 1 - roottest/root/treeproxy/btagobjsProxy.ref | 1 - roottest/root/treeproxy/execVectorProxyTest.ref | 1 - roottest/root/treeproxy/execsearch.ref | 1 - roottest/root/treeproxy/friendchain.ref | 1 - roottest/root/treeproxy/fullmc.ref | 1 - roottest/root/treeproxy/leaflist.ref | 1 - roottest/root/treeproxy/make_tuple.ref | 1 - roottest/root/treeproxy/producereducedSpill.ref | 1 - roottest/root/treeproxy/reducedSpill.ref | 1 - .../root/treeproxy/split/execNonSplitBranchMakeProxy.ref | 1 - roottest/root/treeproxy/stlvec/tlorentzvec.ref | 1 - roottest/root/treeproxy/valdim3.ref | 1 - roottest/root/treeproxy/vectorint/vectorint.ref | 1 - roottest/root/treeproxy/vectorint/vectorintEmu.ref | 1 - 891 files changed, 10 insertions(+), 890 deletions(-) diff --git a/README/ReleaseNotes/v640/index.md b/README/ReleaseNotes/v640/index.md index be775efee3a8f..edc3ebf9b0fdf 100644 --- a/README/ReleaseNotes/v640/index.md +++ b/README/ReleaseNotes/v640/index.md @@ -128,6 +128,12 @@ As part of this migration, the following build options are deprecated. From ROOT ROOT dropped support for Python 3.9, meaning ROOT now requires at least Python 3.10. +## ROOT executable + +- Removed stray linebreak when running `root -q` with input files or commands passed with `-e`. + This ensures that there is no superfluous output when running `root`. + Note that ROOT 6.38 already removed a spurious newline when starting `root` **without** input files or commands. + ## Command-line utilities ## JavaScript ROOT diff --git a/core/rint/src/TRint.cxx b/core/rint/src/TRint.cxx index 8983784f5a531..4786c69f48194 100644 --- a/core/rint/src/TRint.cxx +++ b/core/rint/src/TRint.cxx @@ -430,7 +430,10 @@ void TRint::Run(Bool_t retrn) } TObjString *file = (TObjString *)fileObj; char cmd[kMAXPATHLEN+50]; - if (!fNcmd) + // First print a newline before going over the inputs to separate + // printouts from the initial "root [0]" prompt. If root is run + // with "-q", there is no prompt and we don't need the newline. + if (!fNcmd && !QuitOpt()) printf("\n"); Bool_t rootfile = kFALSE; diff --git a/roottest/cling/array/array1test.ref b/roottest/cling/array/array1test.ref index 877d5e5dbcad9..db33e2534c4a9 100644 --- a/roottest/cling/array/array1test.ref +++ b/roottest/cling/array/array1test.ref @@ -1,4 +1,3 @@ - Processing runarray1test.C... a1 is a2 is diff --git a/roottest/cling/bytecode/arrayhist.ref b/roottest/cling/bytecode/arrayhist.ref index fa2432de128b8..b6c6b4967375c 100644 --- a/roottest/cling/bytecode/arrayhist.ref +++ b/roottest/cling/bytecode/arrayhist.ref @@ -1,2 +1 @@ - Processing runarrayhist.C... diff --git a/roottest/cling/bytecode/complex.ref b/roottest/cling/bytecode/complex.ref index 56db0058d0eeb..6430c9e1f3ea0 100644 --- a/roottest/cling/bytecode/complex.ref +++ b/roottest/cling/bytecode/complex.ref @@ -1,4 +1,3 @@ - Processing runcomplex.C... x = -1 x = -1 diff --git a/roottest/cling/bytecode/henry.ref b/roottest/cling/bytecode/henry.ref index aedfa7203ce79..6ccf09dd30216 100644 --- a/roottest/cling/bytecode/henry.ref +++ b/roottest/cling/bytecode/henry.ref @@ -1,4 +1,3 @@ - Processing runhenry.C... initial chi2/Ndf: 528.202 Chi2/Ndf 528.202 diff --git a/roottest/cling/const/good1.output b/roottest/cling/const/good1.output index 01dd28c914c2e..0ac12c8680c5b 100644 --- a/roottest/cling/const/good1.output +++ b/roottest/cling/const/good1.output @@ -1,4 +1,3 @@ - Processing runConst.C... with const MyClass4* with MyClass4* diff --git a/roottest/cling/const/good2.output b/roottest/cling/const/good2.output index b72263ab035bf..f70e120c05c17 100644 --- a/roottest/cling/const/good2.output +++ b/roottest/cling/const/good2.output @@ -1,4 +1,3 @@ - Processing runConst.C+... with const MyClass4* with MyClass4* diff --git a/roottest/cling/controls/Loopbreak.ref b/roottest/cling/controls/Loopbreak.ref index 612823f130694..5ef895ac717da 100644 --- a/roottest/cling/controls/Loopbreak.ref +++ b/roottest/cling/controls/Loopbreak.ref @@ -1,4 +1,3 @@ - Processing runLoopbreak.C... in loop, i=1 after loop, i=1 diff --git a/roottest/cling/dict/ROOT-8096/load.ref b/roottest/cling/dict/ROOT-8096/load.ref index d3fdaffb9b20b..44e11b7aaf09e 100644 --- a/roottest/cling/dict/ROOT-8096/load.ref +++ b/roottest/cling/dict/ROOT-8096/load.ref @@ -1,3 +1,2 @@ - Processing /Users/pcanal/root_working/roottest/cling/dict/ROOT-8096/load.C... (int) 0 diff --git a/roottest/cling/dict/ROOT-8739/NextTest.ref b/roottest/cling/dict/ROOT-8739/NextTest.ref index 08394fad2b483..6ab1197011a52 100644 --- a/roottest/cling/dict/ROOT-8739/NextTest.ref +++ b/roottest/cling/dict/ROOT-8739/NextTest.ref @@ -1,3 +1,2 @@ - Processing /Users/pcanal/root_working/roottest/cling/dict/ROOT-8739/execNextTest.C... (int) 0 diff --git a/roottest/cling/dict/algebra.ref b/roottest/cling/dict/algebra.ref index 28164a524dcc7..faf6ebcedd39f 100644 --- a/roottest/cling/dict/algebra.ref +++ b/roottest/cling/dict/algebra.ref @@ -1,2 +1 @@ - Processing runalgebra.C+... diff --git a/roottest/cling/dict/defaultargs_compiled.ref b/roottest/cling/dict/defaultargs_compiled.ref index 676eb7661fadf..80ce2c76955cf 100644 --- a/roottest/cling/dict/defaultargs_compiled.ref +++ b/roottest/cling/dict/defaultargs_compiled.ref @@ -1,4 +1,3 @@ - Processing rundefaultargs.C+... -1 1.01 diff --git a/roottest/cling/dict/defaultargs_interpreted.ref b/roottest/cling/dict/defaultargs_interpreted.ref index 4e46cddd06fb6..c56ab8455e63b 100644 --- a/roottest/cling/dict/defaultargs_interpreted.ref +++ b/roottest/cling/dict/defaultargs_interpreted.ref @@ -1,4 +1,3 @@ - Processing rundefaultargs.C... -1 1.01 diff --git a/roottest/cling/dict/exectemplatetemplateTest.ref b/roottest/cling/dict/exectemplatetemplateTest.ref index 68d865dcfbe3f..31120965eaf9d 100644 --- a/roottest/cling/dict/exectemplatetemplateTest.ref +++ b/roottest/cling/dict/exectemplatetemplateTest.ref @@ -1,3 +1,2 @@ - Processing exectemplatetemplateTest.cxx+... (int) 0 diff --git a/roottest/cling/dict/operators.ref b/roottest/cling/dict/operators.ref index 4b272ae76c738..2f88556e8bbae 100644 --- a/roottest/cling/dict/operators.ref +++ b/roottest/cling/dict/operators.ref @@ -1,2 +1 @@ - Processing runoperators.C... diff --git a/roottest/cling/dict/templateAutodict.ref b/roottest/cling/dict/templateAutodict.ref index b9a252c515de3..3d56a75ec6e2c 100644 --- a/roottest/cling/dict/templateAutodict.ref +++ b/roottest/cling/dict/templateAutodict.ref @@ -1,4 +1,3 @@ - Processing runtemplateAutodict.C... 5 0 diff --git a/roottest/cling/function/defaultParams.ref b/roottest/cling/function/defaultParams.ref index cf82900c28518..b9d7d712bf715 100644 --- a/roottest/cling/function/defaultParams.ref +++ b/roottest/cling/function/defaultParams.ref @@ -1,4 +1,3 @@ - Processing rundefaultParams.C... Interpeted code: interpreted: Base::FunctionX(int b=0, int c=5) diff --git a/roottest/cling/function/execrefDefaultParams.ref b/roottest/cling/function/execrefDefaultParams.ref index a4234e7101df0..6064382c5cb14 100644 --- a/roottest/cling/function/execrefDefaultParams.ref +++ b/roottest/cling/function/execrefDefaultParams.ref @@ -1,4 +1,3 @@ - Processing execrefDefaultParams.C... Direct loading creating a yy with def-xx diff --git a/roottest/cling/function/longArgTest.ref b/roottest/cling/function/longArgTest.ref index 5a759d1350c17..6bb7d64c1cbfd 100644 --- a/roottest/cling/function/longArgTest.ref +++ b/roottest/cling/function/longArgTest.ref @@ -1,4 +1,3 @@ - Processing /home/axel/build/root/master/src/roottest/cling/function/runlongArgTest.C... name 1023 diff --git a/roottest/cling/function/overloadResolution.ref b/roottest/cling/function/overloadResolution.ref index c04c36a0ea771..ef99fde09ef95 100644 --- a/roottest/cling/function/overloadResolution.ref +++ b/roottest/cling/function/overloadResolution.ref @@ -1,4 +1,3 @@ - Processing runoverloadResolution.C... 11654121 11654121 diff --git a/roottest/cling/function/privateConstructor.ref b/roottest/cling/function/privateConstructor.ref index 12f1d47e4b1e4..f1e45f5289cbe 100644 --- a/roottest/cling/function/privateConstructor.ref +++ b/roottest/cling/function/privateConstructor.ref @@ -1,4 +1,3 @@ - Processing runprivateConstructor.C... Error: can not call private or protected function runprivateConstructor.C:15: runprivateConstructor.C 11 bottom bottom::bottom(); diff --git a/roottest/cling/function/staticfunc.ref b/roottest/cling/function/staticfunc.ref index cedfa5cd95c7f..4d5d701cd4be8 100644 --- a/roottest/cling/function/staticfunc.ref +++ b/roottest/cling/function/staticfunc.ref @@ -1,4 +1,3 @@ - Processing runstaticfunc.C... test Error: cannot call member function without object staticfunc.C:--: diff --git a/roottest/cling/function/staticfunc.ref-cling b/roottest/cling/function/staticfunc.ref-cling index f7c869dae217b..78043199dad32 100644 --- a/roottest/cling/function/staticfunc.ref-cling +++ b/roottest/cling/function/staticfunc.ref-cling @@ -1,4 +1,3 @@ - Processing runstaticfunc.C... staticfunc.C:--:9: error: call to non-static member function without an object argument Top::Run(); diff --git a/roottest/cling/function/trybody.ref b/roottest/cling/function/trybody.ref index ed962202c3f43..584fbe4184a44 100644 --- a/roottest/cling/function/trybody.ref +++ b/roottest/cling/function/trybody.ref @@ -1,3 +1,2 @@ - f() caught integer! diff --git a/roottest/cling/functionTemplate/cintrun.ref b/roottest/cling/functionTemplate/cintrun.ref index de63f1128b287..d0542470a0060 100644 --- a/roottest/cling/functionTemplate/cintrun.ref +++ b/roottest/cling/functionTemplate/cintrun.ref @@ -1,4 +1,3 @@ - Processing cintrun.C... get() const get() const diff --git a/roottest/cling/functionTemplate/cintrun.ref-cling b/roottest/cling/functionTemplate/cintrun.ref-cling index 74a361dcf62d6..8dcae2514355e 100644 --- a/roottest/cling/functionTemplate/cintrun.ref-cling +++ b/roottest/cling/functionTemplate/cintrun.ref-cling @@ -1,4 +1,3 @@ - Processing cintrun.C... getfloat() const operator=(const t&) diff --git a/roottest/cling/functionTemplate/referenceUse.ref b/roottest/cling/functionTemplate/referenceUse.ref index 6a6877fd6ce0b..5b060cf840380 100644 --- a/roottest/cling/functionTemplate/referenceUse.ref +++ b/roottest/cling/functionTemplate/referenceUse.ref @@ -1,3 +1,2 @@ - Processing runreferenceUse.C... Hello from GetScalar(Test) diff --git a/roottest/cling/functionTemplate/reflexrun.ref b/roottest/cling/functionTemplate/reflexrun.ref index 287d9a21793f9..9e2615f2f0d37 100644 --- a/roottest/cling/functionTemplate/reflexrun.ref +++ b/roottest/cling/functionTemplate/reflexrun.ref @@ -1,4 +1,3 @@ - Processing reflexrun.C... IsA() ShowMembers(TMemberInspector&) diff --git a/roottest/cling/offset/vbase-c.out.ref b/roottest/cling/offset/vbase-c.out.ref index f50d2cb29b75a..cadb303e2ff83 100644 --- a/roottest/cling/offset/vbase-c.out.ref +++ b/roottest/cling/offset/vbase-c.out.ref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/root.git/roottest/cling/offset/runvbase.C+... derived Basement -> base Top: Compiler and interpreter say the same value. derived Basement -> base Top: Compiler and interpreter say the same value. diff --git a/roottest/cling/offset/vbase-i.out.ref b/roottest/cling/offset/vbase-i.out.ref index adb64f628ef11..5a8de7eb41050 100644 --- a/roottest/cling/offset/vbase-i.out.ref +++ b/roottest/cling/offset/vbase-i.out.ref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/root.git/roottest/cling/offset/runvbase.C... derived Basement -> base Top: Compiler and interpreter say the same value. derived Basement -> base Top: Compiler and interpreter say the same value. diff --git a/roottest/cling/operator/EqualTest.ref b/roottest/cling/operator/EqualTest.ref index bf44a71683234..f72cef1bb48f2 100644 --- a/roottest/cling/operator/EqualTest.ref +++ b/roottest/cling/operator/EqualTest.ref @@ -1,4 +1,3 @@ - Processing runEqualTest.C... =========================================================================== class privateOp2 diff --git a/roottest/cling/operator/EqualTest.ref-cling b/roottest/cling/operator/EqualTest.ref-cling index 1d420d1e4ea53..7409690af8271 100644 --- a/roottest/cling/operator/EqualTest.ref-cling +++ b/roottest/cling/operator/EqualTest.ref-cling @@ -1,4 +1,3 @@ - Processing runEqualTest.C... =========================================================================== class privateOp2 diff --git a/roottest/cling/operator/t01.ref b/roottest/cling/operator/t01.ref index ec4fe63bdafda..f3ad09b9ee21a 100644 --- a/roottest/cling/operator/t01.ref +++ b/roottest/cling/operator/t01.ref @@ -1,3 +1,2 @@ - Processing t01.C... (int)0 diff --git a/roottest/cling/other/checkMissingSymbolExitCode.oref b/roottest/cling/other/checkMissingSymbolExitCode.oref index 9660896f5ec62..567de2d409df3 100644 --- a/roottest/cling/other/checkMissingSymbolExitCode.oref +++ b/roottest/cling/other/checkMissingSymbolExitCode.oref @@ -1,2 +1 @@ - Processing checkMissingSymbolExitCode.C... diff --git a/roottest/cling/other/execValuePrint.ref b/roottest/cling/other/execValuePrint.ref index feeec759795a7..eba056c70abf9 100644 --- a/roottest/cling/other/execValuePrint.ref +++ b/roottest/cling/other/execValuePrint.ref @@ -1,4 +1,3 @@ - Processing execValuePrint.C... (TObject &) Name: TObject Title: Basic ROOT object (TNamed &) Name: a Title: b diff --git a/roottest/cling/other/fileClose.ref b/roottest/cling/other/fileClose.ref index 82ea7fffe793c..dd8794aa15cf9 100644 --- a/roottest/cling/other/fileClose.ref +++ b/roottest/cling/other/fileClose.ref @@ -1,2 +1 @@ - Processing runfileClose.C... diff --git a/roottest/cling/other/missingXFunc.ref b/roottest/cling/other/missingXFunc.ref index 5c2a54df2ca41..70bbea87cc6a6 100644 --- a/roottest/cling/other/missingXFunc.ref +++ b/roottest/cling/other/missingXFunc.ref @@ -1,4 +1,3 @@ - Processing runmissingXFunc.C(12)... input_line_:2:2: error: no matching function for call to 'runmissingXFunc' runmissingXFunc(12) /* invoking function corresponding to '.x' */ diff --git a/roottest/cling/other/savannah54662.ref b/roottest/cling/other/savannah54662.ref index bc80686803587..728d640378b85 100644 --- a/roottest/cling/other/savannah54662.ref +++ b/roottest/cling/other/savannah54662.ref @@ -1,2 +1 @@ - Processing runsavannah54662.C... diff --git a/roottest/cling/other/snprintfselect.ref b/roottest/cling/other/snprintfselect.ref index fcfb57c7de334..17545b836bdb8 100644 --- a/roottest/cling/other/snprintfselect.ref +++ b/roottest/cling/other/snprintfselect.ref @@ -1,3 +1,2 @@ - Processing runsnprintfselect.C... (5-0.500000)HasKey("Doesn't Exist"): ok. props->HasKey("id"): ok. props->GetPropertyAsString("id") == string("MyID"): ok. diff --git a/roottest/cling/reload/reloadvector.ref b/roottest/cling/reload/reloadvector.ref index 2aabaf785eab4..db538c2c1a70a 100644 --- a/roottest/cling/reload/reloadvector.ref +++ b/roottest/cling/reload/reloadvector.ref @@ -1,2 +1 @@ - Processing runreloadvector.C... diff --git a/roottest/cling/return/barna.ref b/roottest/cling/return/barna.ref index b242710e17b3e..35bdc9b30fcb3 100644 --- a/roottest/cling/return/barna.ref +++ b/roottest/cling/return/barna.ref @@ -1,3 +1,2 @@ - Processing barna.C... (int)0 diff --git a/roottest/cling/return/exitcode.ref b/roottest/cling/return/exitcode.ref index 493110f5b7631..6707794e4ffba 100644 --- a/roottest/cling/return/exitcode.ref +++ b/roottest/cling/return/exitcode.ref @@ -1,3 +1,2 @@ - Processing exitcode.C... (int) 12 diff --git a/roottest/cling/specialobj/f02.ref b/roottest/cling/specialobj/f02.ref index c62f9997c6c47..800b74a00c82e 100644 --- a/roottest/cling/specialobj/f02.ref +++ b/roottest/cling/specialobj/f02.ref @@ -1,4 +1,3 @@ - Processing runf02.C... input_line_FILTERED:2:3: error: use of undeclared identifier 'UNKNOWN' (UNKNOWN(42)) diff --git a/roottest/cling/specialobj/stlProxies.ref b/roottest/cling/specialobj/stlProxies.ref index 30a1d0bf1cff8..15127e17dab5c 100644 --- a/roottest/cling/specialobj/stlProxies.ref +++ b/roottest/cling/specialobj/stlProxies.ref @@ -1,2 +1 @@ - Processing runstlProxies.C... diff --git a/roottest/cling/stack/tbox.ref b/roottest/cling/stack/tbox.ref index b6a6e92cc42f4..45fe9e4a1c81a 100644 --- a/roottest/cling/stack/tbox.ref +++ b/roottest/cling/stack/tbox.ref @@ -1,3 +1,2 @@ - Processing runtbox.C... all box were created without a crash diff --git a/roottest/cling/staticinit/ROOT-10426/execROOT10426.ref b/roottest/cling/staticinit/ROOT-10426/execROOT10426.ref index e801a1cd2f01f..04c385f62bdbe 100644 --- a/roottest/cling/staticinit/ROOT-10426/execROOT10426.ref +++ b/roottest/cling/staticinit/ROOT-10426/execROOT10426.ref @@ -1,4 +1,3 @@ - Processing execROOT10426.C... Recursing! (int)17 diff --git a/roottest/cling/staticinit/execROOT-7775.ref b/roottest/cling/staticinit/execROOT-7775.ref index 4e531aa5d0e49..80a1b12500423 100644 --- a/roottest/cling/staticinit/execROOT-7775.ref +++ b/roottest/cling/staticinit/execROOT-7775.ref @@ -1,4 +1,3 @@ - Processing execROOT-7775.C... Creating Marker from first.1 part Creating Marker from first.2 part diff --git a/roottest/cling/stl/default/VectorSort.ref b/roottest/cling/stl/default/VectorSort.ref index e8eddccacb1e9..c0c1c4a1714f6 100644 --- a/roottest/cling/stl/default/VectorSort.ref +++ b/roottest/cling/stl/default/VectorSort.ref @@ -1,4 +1,3 @@ - Processing VectorSort.C... elem0: 0 4294967295 1 2 0 4 0 0 0 diff --git a/roottest/cling/stl/map/badOperatorTest.ref b/roottest/cling/stl/map/badOperatorTest.ref index e45179388995f..582e510aa563f 100644 --- a/roottest/cling/stl/map/badOperatorTest.ref +++ b/roottest/cling/stl/map/badOperatorTest.ref @@ -1,4 +1,3 @@ - Processing badOperator.C... calling operator[] with index 33 calling operator[] with index 33 diff --git a/roottest/cling/stl/map/badstringMapTest.ref b/roottest/cling/stl/map/badstringMapTest.ref index e63141561e70e..0678d66a5c19e 100644 --- a/roottest/cling/stl/map/badstringMapTest.ref +++ b/roottest/cling/stl/map/badstringMapTest.ref @@ -1,4 +1,3 @@ - Processing badstringMap.cxx... 3.14149 3.14159 diff --git a/roottest/cling/stl/map/simpleTest.ref b/roottest/cling/stl/map/simpleTest.ref index 119fb143eb22b..f4798a07762af 100644 --- a/roottest/cling/stl/map/simpleTest.ref +++ b/roottest/cling/stl/map/simpleTest.ref @@ -1,4 +1,3 @@ - Processing /uscms_data/d2/pcanal/eaf_root_working/code/quick-devel/roottest/cling/stl/map/testing.C... StreamerInfo for class: test, checksum=0x4da0284e diff --git a/roottest/cling/stl/map/stringMapTest.ref b/roottest/cling/stl/map/stringMapTest.ref index f5cc2141b9bfa..f07aa54acb059 100644 --- a/roottest/cling/stl/map/stringMapTest.ref +++ b/roottest/cling/stl/map/stringMapTest.ref @@ -1,3 +1,2 @@ - Processing stringMap.cxx... 3.14159 diff --git a/roottest/cling/stl/string/passing.ref b/roottest/cling/stl/string/passing.ref index b68cde8008995..3aa3f26826930 100644 --- a/roottest/cling/stl/string/passing.ref +++ b/roottest/cling/stl/string/passing.ref @@ -1,4 +1,3 @@ - Processing run.C... t01 received --test string-- t01 received --test string-- diff --git a/roottest/cling/stl/string/passingcint.ref b/roottest/cling/stl/string/passingcint.ref index 39bddd9fd3fe6..637abbfcbef39 100644 --- a/roottest/cling/stl/string/passingcint.ref +++ b/roottest/cling/stl/string/passingcint.ref @@ -1,4 +1,3 @@ - Processing runcint.C... t01 received --test string-- t01 received --test string-- diff --git a/roottest/cling/template/execdefaultTemplateParam.ref b/roottest/cling/template/execdefaultTemplateParam.ref index c8335ff9120cc..c01ba29c1efe7 100644 --- a/roottest/cling/template/execdefaultTemplateParam.ref +++ b/roottest/cling/template/execdefaultTemplateParam.ref @@ -1,3 +1,2 @@ - Processing execdefaultTemplateParam.cxx+... (int) 0 diff --git a/roottest/cling/template/longlong.ref b/roottest/cling/template/longlong.ref index d8b55e0c395e0..fdd5442e1bb27 100644 --- a/roottest/cling/template/longlong.ref +++ b/roottest/cling/template/longlong.ref @@ -1,2 +1 @@ - Processing runlonglong.C... diff --git a/roottest/cling/template/separateDict/sepDictLibs.ref b/roottest/cling/template/separateDict/sepDictLibs.ref index 4d1528f86db38..d80c9c705c585 100644 --- a/roottest/cling/template/separateDict/sepDictLibs.ref +++ b/roottest/cling/template/separateDict/sepDictLibs.ref @@ -1,4 +1,3 @@ - Processing run.C... =========================================================================== class Name::MyClass diff --git a/roottest/cling/template/separateDictNamespace/sepDictLibs.ref b/roottest/cling/template/separateDictNamespace/sepDictLibs.ref index 91a2ca9914e32..1c998316e99dd 100644 --- a/roottest/cling/template/separateDictNamespace/sepDictLibs.ref +++ b/roottest/cling/template/separateDictNamespace/sepDictLibs.ref @@ -1,4 +1,3 @@ - Processing run.C... =========================================================================== class Master::Container diff --git a/roottest/cling/template/templateSingleton.ref b/roottest/cling/template/templateSingleton.ref index 6b3605721f5d8..f8943d3ae3a22 100644 --- a/roottest/cling/template/templateSingleton.ref +++ b/roottest/cling/template/templateSingleton.ref @@ -1,2 +1 @@ - Processing runtemplateSingleton.C... diff --git a/roottest/cling/template/templatefriend.ref b/roottest/cling/template/templatefriend.ref index 7a43d68985704..5336a29a4b5e1 100644 --- a/roottest/cling/template/templatefriend.ref +++ b/roottest/cling/template/templatefriend.ref @@ -1,4 +1,3 @@ - Processing runtemplatefriend.C... Automatic building of dictionaries now off my_shared_ptr::c'tor(T) diff --git a/roottest/cling/template/usingtemplate.ref b/roottest/cling/template/usingtemplate.ref index 2bf1821815f3e..c6879c39f5c68 100644 --- a/roottest/cling/template/usingtemplate.ref +++ b/roottest/cling/template/usingtemplate.ref @@ -1,2 +1 @@ - Processing runusingtemplate.C... diff --git a/roottest/cling/templateMembers/duplicate.ref b/roottest/cling/templateMembers/duplicate.ref index ed1e5af5e298f..49a9e9505a0de 100644 --- a/roottest/cling/templateMembers/duplicate.ref +++ b/roottest/cling/templateMembers/duplicate.ref @@ -1,2 +1 @@ - Processing runduplicate.C... diff --git a/roottest/cling/templateMembers/operatorEqual.ref b/roottest/cling/templateMembers/operatorEqual.ref index 47f3a2a29485c..b7f4ce7ef406c 100644 --- a/roottest/cling/templateMembers/operatorEqual.ref +++ b/roottest/cling/templateMembers/operatorEqual.ref @@ -1,4 +1,3 @@ - Processing runoperatorEqual.C... =========================================================================== class StThreeVector diff --git a/roottest/cling/templateMembers/templateConstructorTest.ref b/roottest/cling/templateMembers/templateConstructorTest.ref index 3664cfb92a76c..2710dd4e44e67 100644 --- a/roottest/cling/templateMembers/templateConstructorTest.ref +++ b/roottest/cling/templateMembers/templateConstructorTest.ref @@ -1,4 +1,3 @@ - Processing runConstructor.C... doit taking TemplateArgument c'tor taking TemplateArgument diff --git a/roottest/cling/typedef/typedefAndScope.ref b/roottest/cling/typedef/typedefAndScope.ref index 8b137891791fe..e69de29bb2d1d 100644 --- a/roottest/cling/typedef/typedefAndScope.ref +++ b/roottest/cling/typedef/typedefAndScope.ref @@ -1 +0,0 @@ - diff --git a/roottest/cling/typedef_global/output.ref-cling b/roottest/cling/typedef_global/output.ref-cling index 65e22d0008c54..37be44d2a4c33 100644 --- a/roottest/cling/typedef_global/output.ref-cling +++ b/roottest/cling/typedef_global/output.ref-cling @@ -1,2 +1 @@ - mycl.C N/A typedef ConstLink MyClass::value_type diff --git a/roottest/main/ROOT_8197.ref b/roottest/main/ROOT_8197.ref index 8369e40772285..d795e14e8c156 100644 --- a/roottest/main/ROOT_8197.ref +++ b/roottest/main/ROOT_8197.ref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/python/cmdLineUtils/ROOT_8197.C... ** first file ** TFile** myfile1.root diff --git a/roottest/python/cling/PyAPITest.ref b/roottest/python/cling/PyAPITest.ref index fbc25a730223a..d845ba0c382df 100644 --- a/roottest/python/cling/PyAPITest.ref +++ b/roottest/python/cling/PyAPITest.ref @@ -1,4 +1,3 @@ - Processing runPyAPITest.C... OBC: should be true: 1 OBCE: should be false: 0 diff --git a/roottest/python/cling/PyClassTest.ref b/roottest/python/cling/PyClassTest.ref index a519fb915c386..8f8d9c3eadff9 100644 --- a/roottest/python/cling/PyClassTest.ref +++ b/roottest/python/cling/PyClassTest.ref @@ -1,4 +1,3 @@ - Processing runPyClassTest.C... creating class MyPyClass ... in MyPyClass.__init__ diff --git a/roottest/root/aclic/load/execautoload.ref b/roottest/root/aclic/load/execautoload.ref index 0e0dd5342c2c5..461451d0120c2 100644 --- a/roottest/root/aclic/load/execautoload.ref +++ b/roottest/root/aclic/load/execautoload.ref @@ -1,2 +1 @@ - Processing execautoload.C... diff --git a/roottest/root/aclic/load/execautoloadNamespace.ref b/roottest/root/aclic/load/execautoloadNamespace.ref index c14b0dc77f07f..a1e85b8638a13 100644 --- a/roottest/root/aclic/load/execautoloadNamespace.ref +++ b/roottest/root/aclic/load/execautoloadNamespace.ref @@ -1,2 +1 @@ - Processing execautoloadNamespace.C... diff --git a/roottest/root/aclic/load/execlinktest.ref b/roottest/root/aclic/load/execlinktest.ref index 938c7ed058121..b548290678615 100644 --- a/roottest/root/aclic/load/execlinktest.ref +++ b/roottest/root/aclic/load/execlinktest.ref @@ -1,2 +1 @@ - Processing execlinktest.C... diff --git a/roottest/root/aclic/misc/relpath.ref b/roottest/root/aclic/misc/relpath.ref index c0eae49ce13d2..d8f2c60b1ecd8 100644 --- a/roottest/root/aclic/misc/relpath.ref +++ b/roottest/root/aclic/misc/relpath.ref @@ -1,2 +1 @@ - Processing runrelpath.C... diff --git a/roottest/root/aclic/nolinkdep/twoscript.ref b/roottest/root/aclic/nolinkdep/twoscript.ref index 30208632e3330..17ceb71877623 100644 --- a/roottest/root/aclic/nolinkdep/twoscript.ref +++ b/roottest/root/aclic/nolinkdep/twoscript.ref @@ -1,2 +1 @@ - Processing script1.C+... diff --git a/roottest/root/aclic/offset/offset.ref b/roottest/root/aclic/offset/offset.ref index eb0b151932882..b162a1065ce5f 100644 --- a/roottest/root/aclic/offset/offset.ref +++ b/roottest/root/aclic/offset/offset.ref @@ -1,4 +1,3 @@ - Processing runoffset.C... size TH1D,TArrayD,my=1000,24,1024 offset=1000 size TH1D,TArrayD,my=1000,24,1024 offset=1000 diff --git a/roottest/root/aclic/offset/offsetwin.ref b/roottest/root/aclic/offset/offsetwin.ref index 15ce457a2ee94..388d76bf5051e 100644 --- a/roottest/root/aclic/offset/offsetwin.ref +++ b/roottest/root/aclic/offset/offsetwin.ref @@ -1,4 +1,3 @@ - Processing runoffset.C... size TH1D,TArrayD,my=1024,24,1048 offset=1024 size TH1D,TArrayD,my=1024,24,1048 offset=1024 diff --git a/roottest/root/aclic/offset/offsetwin.ref32 b/roottest/root/aclic/offset/offsetwin.ref32 index 86c5456e3f40a..83c1187b88aeb 100644 --- a/roottest/root/aclic/offset/offsetwin.ref32 +++ b/roottest/root/aclic/offset/offsetwin.ref32 @@ -1,4 +1,3 @@ - Processing runoffset.C... size TH1D,TArrayD,my=728,12,744 offset=728 size TH1D,TArrayD,my=728,12,744 offset=728 diff --git a/roottest/root/aclic/with space/thetest.ref b/roottest/root/aclic/with space/thetest.ref index b6b75602d2049..7301f5476c1e9 100644 --- a/roottest/root/aclic/with space/thetest.ref +++ b/roottest/root/aclic/with space/thetest.ref @@ -1,3 +1,2 @@ - Processing runthetest.C+... not much diff --git a/roottest/root/collection/CATTreeClear.ref b/roottest/root/collection/CATTreeClear.ref index 3f6feacc91d64..f83dae7358a2a 100644 --- a/roottest/root/collection/CATTreeClear.ref +++ b/roottest/root/collection/CATTreeClear.ref @@ -1,4 +1,3 @@ - Processing runCATTreeClear.C... During writing, tree event 1, ca entry 1 is == NULL *********************************************************************** diff --git a/roottest/root/collection/DeleteWarning.ref b/roottest/root/collection/DeleteWarning.ref index d9a094526aadf..a785b37e49cd1 100644 --- a/roottest/root/collection/DeleteWarning.ref +++ b/roottest/root/collection/DeleteWarning.ref @@ -1,4 +1,3 @@ - Processing runDeleteWarning.C... Error in : A list is accessing an object (0xRemoved) already deleted (list name = my own list) Error in : A list is accessing an object (0xRemoved) already deleted (list name = my own list) diff --git a/roottest/root/collection/TExMap.ref b/roottest/root/collection/TExMap.ref index ea4e847555caf..624917ac20629 100644 --- a/roottest/root/collection/TExMap.ref +++ b/roottest/root/collection/TExMap.ref @@ -1,4 +1,3 @@ - Processing runTExMap.C+... TExMap Basic Tests Start diff --git a/roottest/root/collection/TMap.ref b/roottest/root/collection/TMap.ref index 1ca514a8aa430..8ca300c14a7aa 100644 --- a/roottest/root/collection/TMap.ref +++ b/roottest/root/collection/TMap.ref @@ -1,4 +1,3 @@ - Processing runTMap.C+... Own key=false - key object survived || Own value=false - value object survived Own key=false - key object survived || Own value=true - value object deleted diff --git a/roottest/root/collection/execHistArray.ref b/roottest/root/collection/execHistArray.ref index ec6d7cf6bbaa7..6e3da244c2b9f 100644 --- a/roottest/root/collection/execHistArray.ref +++ b/roottest/root/collection/execHistArray.ref @@ -1,3 +1,2 @@ - Processing execHistArray.cxx+... (int)0 diff --git a/roottest/root/collection/execMissing.oref b/roottest/root/collection/execMissing.oref index 026ade569e9e7..1f9fea0c2116f 100644 --- a/roottest/root/collection/execMissing.oref +++ b/roottest/root/collection/execMissing.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/root.git/roottest/root/collection/execMissing.C... StreamerInfo for class: Event, checksum=0x40f1e508 diff --git a/roottest/root/collection/execMissing.ref b/roottest/root/collection/execMissing.ref index 89dd08831b8b2..e313fe8e46d1a 100644 --- a/roottest/root/collection/execMissing.ref +++ b/roottest/root/collection/execMissing.ref @@ -1,4 +1,3 @@ - Processing execMissing.C... Error in : The class "Event" is interpreted and for its data member "fObjects" we do not have a dictionary for the collection "list". Because of this, we will not be able to read or write this data member. Error in : The class "Event" is interpreted and for its data member "fPointers" we do not have a dictionary for the collection "list". Because of this, we will not be able to read or write this data member. diff --git a/roottest/root/collection/execRangeExpression.ref b/roottest/root/collection/execRangeExpression.ref index c659623a2fbbc..c3763032b6446 100644 --- a/roottest/root/collection/execRangeExpression.ref +++ b/roottest/root/collection/execRangeExpression.ref @@ -1,4 +1,3 @@ - Processing execRangeExpression.C... Testing range expression for iterating through ROOT collections TObjArray diff --git a/roottest/root/collection/execTClonesArrayAbsorb.ref b/roottest/root/collection/execTClonesArrayAbsorb.ref index 6fe7e32e3a4ad..235393e5e55d3 100644 --- a/roottest/root/collection/execTClonesArrayAbsorb.ref +++ b/roottest/root/collection/execTClonesArrayAbsorb.ref @@ -1,2 +1 @@ - Processing execTClonesArrayAbsorb.C... diff --git a/roottest/root/collection/runTExMap.oref b/roottest/root/collection/runTExMap.oref index bbf4509634009..33bef39887e4e 100644 --- a/roottest/root/collection/runTExMap.oref +++ b/roottest/root/collection/runTExMap.oref @@ -1,4 +1,3 @@ - Processing runTExMap.C... TExMap Basic Tests Start diff --git a/roottest/root/collection/runTExMap32.oref b/roottest/root/collection/runTExMap32.oref index 0a4587d427cff..7fa746324eaa0 100644 --- a/roottest/root/collection/runTExMap32.oref +++ b/roottest/root/collection/runTExMap32.oref @@ -1,4 +1,3 @@ - Processing runTExMap.C... TExMap Basic Tests Start diff --git a/roottest/root/collection/tbits.ref b/roottest/root/collection/tbits.ref index 14ee2c3543ebf..1eadc496155df 100644 --- a/roottest/root/collection/tbits.ref +++ b/roottest/root/collection/tbits.ref @@ -1,4 +1,3 @@ - Processing runtbits.C... 00000000000000000001000000000100 00000000000000001000000000000100 diff --git a/roottest/root/core/base64.ref b/roottest/root/core/base64.ref index 28394f0662329..9d5829da1448c 100644 --- a/roottest/root/core/base64.ref +++ b/roottest/root/core/base64.ref @@ -1,4 +1,3 @@ - Processing base64.C... base64: VGhpcyBpcyB0ZXN0IGJpbmFyeQ== base64: coding1 match diff --git a/roottest/root/core/lifetime.ref b/roottest/root/core/lifetime.ref index 0a3df1e06b401..7453e5dce76bb 100644 --- a/roottest/root/core/lifetime.ref +++ b/roottest/root/core/lifetime.ref @@ -1,2 +1 @@ - Processing lifetime.C... diff --git a/roottest/root/core/stringView.ref b/roottest/root/core/stringView.ref index 9e58b5895aaed..ed05afa5fcc9a 100644 --- a/roottest/root/core/stringView.ref +++ b/roottest/root/core/stringView.ref @@ -1,4 +1,3 @@ - Processing stringView.C... asd Comparison with char[4] worked diff --git a/roottest/root/core/testTEnv.ref b/roottest/root/core/testTEnv.ref index a0cf65cd40f68..a10f2e45fb01b 100644 --- a/roottest/root/core/testTEnv.ref +++ b/roottest/root/core/testTEnv.ref @@ -1,4 +1,3 @@ - string = mystring quotedstring = "my quoted string" int = 99 diff --git a/roottest/root/dataframe/regression_snapshot.ref b/roottest/root/dataframe/regression_snapshot.ref index eedf73db7189a..399d434ff5e9b 100644 --- a/roottest/root/dataframe/regression_snapshot.ref +++ b/roottest/root/dataframe/regression_snapshot.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/dataframe/regression_snapshot.C+... first list of branches Jitted branch: b1 diff --git a/roottest/root/dataframe/test_ctors.ref b/roottest/root/dataframe/test_ctors.ref index a487a7ba425f0..e499d343d35a6 100644 --- a/roottest/root/dataframe/test_ctors.ref +++ b/roottest/root/dataframe/test_ctors.ref @@ -1,4 +1,3 @@ - Processing ../tests/test_ctors.cxx... filling tree... ctor called diff --git a/roottest/root/dataframe/test_glob.ref b/roottest/root/dataframe/test_glob.ref index 3fd8aee387cdc..f022fe1938d4a 100644 --- a/roottest/root/dataframe/test_glob.ref +++ b/roottest/root/dataframe/test_glob.ref @@ -1,4 +1,3 @@ - Processing test_glob.C... c1 50 c2 50 diff --git a/roottest/root/dataframe/test_readTotemNtuple.ref b/roottest/root/dataframe/test_readTotemNtuple.ref index b68f6c41317de..94ab83c7f2755 100644 --- a/roottest/root/dataframe/test_readTotemNtuple.ref +++ b/roottest/root/dataframe/test_readTotemNtuple.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class RPRootDumpPatternInfo is available Warning in : no dictionary for class RPRootDumpTrackInfo is available Warning in : no dictionary for class RPRootDumpPattern is available diff --git a/roottest/root/dataframe/test_reduce.ref b/roottest/root/dataframe/test_reduce.ref index 9bea78855cab1..5dc4bbeb8f788 100644 --- a/roottest/root/dataframe/test_reduce.ref +++ b/roottest/root/dataframe/test_reduce.ref @@ -1,3 +1,2 @@ - Processing test_reduce.C+... Info in : 55 3628800 55 diff --git a/roottest/root/dataframe/test_snapshotMT_dir.ref b/roottest/root/dataframe/test_snapshotMT_dir.ref index 0c5840143a612..38d28bada2e79 100644 --- a/roottest/root/dataframe/test_snapshotMT_dir.ref +++ b/roottest/root/dataframe/test_snapshotMT_dir.ref @@ -1,4 +1,3 @@ - +++++++++ Now MT ---- Now with a tree in the root directory Branch: b1 diff --git a/roottest/root/dataframe/test_snapshotMT_subdir.ref b/roottest/root/dataframe/test_snapshotMT_subdir.ref index 68818ff19baec..f535a1e45162c 100644 --- a/roottest/root/dataframe/test_snapshotMT_subdir.ref +++ b/roottest/root/dataframe/test_snapshotMT_subdir.ref @@ -1,4 +1,3 @@ - +++++++++ Now MT ---- Now with a tree in a subdirectory Branch: b1 diff --git a/roottest/root/dataframe/test_snapshot_dir.ref b/roottest/root/dataframe/test_snapshot_dir.ref index 09e1a2a568683..6d1bb2ed0d023 100644 --- a/roottest/root/dataframe/test_snapshot_dir.ref +++ b/roottest/root/dataframe/test_snapshot_dir.ref @@ -1,4 +1,3 @@ - ---- Now with a tree in the root directory Branch: b1 Branch: b1_square diff --git a/roottest/root/dataframe/test_snapshot_subdir.ref b/roottest/root/dataframe/test_snapshot_subdir.ref index 6ec39aa5fde31..a2039e5845f55 100644 --- a/roottest/root/dataframe/test_snapshot_subdir.ref +++ b/roottest/root/dataframe/test_snapshot_subdir.ref @@ -1,4 +1,3 @@ - ---- Now with a tree in a subdirectory Branch: b1 Branch: b1_square diff --git a/roottest/root/dataframe/test_stringfiltercolumn.ref b/roottest/root/dataframe/test_stringfiltercolumn.ref index a97423f0a15af..41e66bed353ab 100644 --- a/roottest/root/dataframe/test_stringfiltercolumn.ref +++ b/roottest/root/dataframe/test_stringfiltercolumn.ref @@ -1,4 +1,3 @@ - Processing /Users/danilopiparo/RootDevel/Root6/head/roottest/root/dataframe/test_stringfiltercolumn.C+... Info in : creating shared library /Users/danilopiparo/RootDevel/Root6/head/buildNinja/roottest/root/dataframe/test_stringfiltercolumn_C.so c1 20 diff --git a/roottest/root/dataframe/test_trainCache.ref b/roottest/root/dataframe/test_trainCache.ref index 7f11642c20cfc..2e17d107cc6ef 100644 --- a/roottest/root/dataframe/test_trainCache.ref +++ b/roottest/root/dataframe/test_trainCache.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/dataframe/test_trainCache.C... ----------- With TChain diff --git a/roottest/root/fit/linear/storing.ref b/roottest/root/fit/linear/storing.ref index 2d2487758f9a9..db1df12496a42 100644 --- a/roottest/root/fit/linear/storing.ref +++ b/roottest/root/fit/linear/storing.ref @@ -1,4 +1,3 @@ - Processing runstoring.C... res=3.000000 __linear1 : x[0] Ndim= 1, Npar= 0, Number= 0 diff --git a/roottest/root/graf/textcopy.ref b/roottest/root/graf/textcopy.ref index 12f1c8b3c34bb..066c2f72bc019 100644 --- a/roottest/root/graf/textcopy.ref +++ b/roottest/root/graf/textcopy.ref @@ -1,4 +1,3 @@ - Making wchar text... copying... good! diff --git a/roottest/root/hist/division/testTEfficiency.ref b/roottest/root/hist/division/testTEfficiency.ref index 3ecd16c6a1cda..75555b6cf3315 100644 --- a/roottest/root/hist/division/testTEfficiency.ref +++ b/roottest/root/hist/division/testTEfficiency.ref @@ -1,4 +1,3 @@ - Processing runtestTEfficiency.C... uniform prior with mode: Comparison TEfficiency-TGraphAsymError : OK for nevt = 1000 uniform prior with mean: Comparison TEfficiency-TGraphAsymError : OK for nevt = 1000 diff --git a/roottest/root/hist/formula/execGetExp.ref b/roottest/root/hist/formula/execGetExp.ref index 85f42dc45286e..a2b63595b3f8e 100644 --- a/roottest/root/hist/formula/execGetExp.ref +++ b/roottest/root/hist/formula/execGetExp.ref @@ -1,3 +1,2 @@ - Processing execGetExp.C... [p0]+[p1]*cos(x*TMath::DegToRad())+[p2]*sin(x*TMath::DegToRad()) diff --git a/roottest/root/hist/formula/formio.ref b/roottest/root/hist/formula/formio.ref index 4c2e8d8ff46db..dafbe539446b5 100644 --- a/roottest/root/hist/formula/formio.ref +++ b/roottest/root/hist/formula/formio.ref @@ -1,4 +1,3 @@ - Processing runformio.C... fxn->GetParameter(0) = 10 fxn->GetParameter(1) = 1.5 diff --git a/roottest/root/hist/formula/recurse.ref b/roottest/root/hist/formula/recurse.ref index d63f7f3e714f5..a7f87473bce41 100644 --- a/roottest/root/hist/formula/recurse.ref +++ b/roottest/root/hist/formula/recurse.ref @@ -1,4 +1,3 @@ - Processing runrecurse.C... Formula based function: f2 f2 : [0]+f1 Ndim= 0, Npar= 2, Number= 0 diff --git a/roottest/root/hist/formula/string.ref b/roottest/root/hist/formula/string.ref index 55d33b0bf192b..a3e5379fdd4c9 100644 --- a/roottest/root/hist/formula/string.ref +++ b/roottest/root/hist/formula/string.ref @@ -1,3 +1,2 @@ - Processing runstring.C... (int)0 diff --git a/roottest/root/hist/misc/testSparse.ref b/roottest/root/hist/misc/testSparse.ref index 773b6b5552e1d..16e766b191404 100644 --- a/roottest/root/hist/misc/testSparse.ref +++ b/roottest/root/hist/misc/testSparse.ref @@ -1,4 +1,3 @@ - Processing testSparse.cxx+... ... writeSparse ... printing entries with no options: diff --git a/roottest/root/hist/operator/Projections.ref b/roottest/root/hist/operator/Projections.ref index dea3e693242c2..01f03e458d1cc 100644 --- a/roottest/root/hist/operator/Projections.ref +++ b/roottest/root/hist/operator/Projections.ref @@ -1,4 +1,3 @@ - Processing runProjections.C... diff --git a/roottest/root/hist/operator/copy.ref b/roottest/root/hist/operator/copy.ref index 9c88e35c7ec03..a252c20038718 100644 --- a/roottest/root/hist/operator/copy.ref +++ b/roottest/root/hist/operator/copy.ref @@ -1,3 +1,2 @@ - Processing runcopy.C+... List has 0 elements! diff --git a/roottest/root/hist/operator/sparse.ref b/roottest/root/hist/operator/sparse.ref index 58bebfc59e422..02af67c108dd9 100644 --- a/roottest/root/hist/operator/sparse.ref +++ b/roottest/root/hist/operator/sparse.ref @@ -1,4 +1,3 @@ - Processing runsparse.C... Projecting a THnSparse: SUCCESS Projecting a THnSparse to a TH1 (TH3::Project3D): SUCCESS diff --git a/roottest/root/hist/profile/copy.ref b/roottest/root/hist/profile/copy.ref index 1452973fe6e25..258982416aa7f 100644 --- a/roottest/root/hist/profile/copy.ref +++ b/roottest/root/hist/profile/copy.ref @@ -1,3 +1,2 @@ - Processing runcopy.C... TH1.Print Name = , Entries= 0, Total sum= 0 diff --git a/roottest/root/io/TFile/execFlipOver.ref b/roottest/root/io/TFile/execFlipOver.ref index be93050c46759..2fea01a00f59b 100644 --- a/roottest/root/io/TFile/execFlipOver.ref +++ b/roottest/root/io/TFile/execFlipOver.ref @@ -1,4 +1,3 @@ - Processing execFlipOver.C... Creating input file Write input file header diff --git a/roottest/root/io/TFile/execNestedCollectionStreamerInfo.ref b/roottest/root/io/TFile/execNestedCollectionStreamerInfo.ref index 508b9e15c8412..643866ef8d459 100644 --- a/roottest/root/io/TFile/execNestedCollectionStreamerInfo.ref +++ b/roottest/root/io/TFile/execNestedCollectionStreamerInfo.ref @@ -1,3 +1,2 @@ - Processing execNestedCollectionStreamerInfo.cxx+... (int) 0 diff --git a/roottest/root/io/TFile/execRelativePath.ref b/roottest/root/io/TFile/execRelativePath.ref index a061e24201955..f6e116be7e8d3 100644 --- a/roottest/root/io/TFile/execRelativePath.ref +++ b/roottest/root/io/TFile/execRelativePath.ref @@ -1,2 +1 @@ - Processing execRelativePath.C... diff --git a/roottest/root/io/TFile/execStreamerInfoHash.ref b/roottest/root/io/TFile/execStreamerInfoHash.ref index 86164c1c399fe..067018716b609 100644 --- a/roottest/root/io/TFile/execStreamerInfoHash.ref +++ b/roottest/root/io/TFile/execStreamerInfoHash.ref @@ -1,4 +1,3 @@ - Processing execStreamerInfoHash.cxx+... Creating file sihash.root Checking file sihash.root diff --git a/roottest/root/io/TFile/execStreamerInfoList.ref b/roottest/root/io/TFile/execStreamerInfoList.ref index 555012d01d3eb..bd01027b5a6d9 100644 --- a/roottest/root/io/TFile/execStreamerInfoList.ref +++ b/roottest/root/io/TFile/execStreamerInfoList.ref @@ -1,3 +1,2 @@ - Processing execStreamerInfoList.C... Info in : Geometry Geometry, default geometry created diff --git a/roottest/root/io/abstractclass/read_test.ref b/roottest/root/io/abstractclass/read_test.ref index 4388748c410a2..14b88dbfa3c7c 100644 --- a/roottest/root/io/abstractclass/read_test.ref +++ b/roottest/root/io/abstractclass/read_test.ref @@ -1,4 +1,3 @@ - Processing read_test.C... DataBlock1 0 1 111 111 111 111 111 111 111 111 DataBlock2 0 1 222 222 222 222 222 222 222 222 diff --git a/roottest/root/io/alloc/customConstructor.ref-notemplateCtor b/roottest/root/io/alloc/customConstructor.ref-notemplateCtor index 853cda30a8f80..083178193c8b7 100644 --- a/roottest/root/io/alloc/customConstructor.ref-notemplateCtor +++ b/roottest/root/io/alloc/customConstructor.ref-notemplateCtor @@ -1,4 +1,3 @@ - Processing runcustomConstructor.C... Error in : cannot create object of class Private Called Regular::Regular() diff --git a/roottest/root/io/alloc/customConstructorACLiC.ref b/roottest/root/io/alloc/customConstructorACLiC.ref index fcfc626699a0f..3ac141b576fdd 100644 --- a/roottest/root/io/alloc/customConstructorACLiC.ref +++ b/roottest/root/io/alloc/customConstructorACLiC.ref @@ -1,4 +1,3 @@ - Processing runcustomConstructorACLiC.C... Error in : cannot create object of class Private Called Regular::Regular() diff --git a/roottest/root/io/arrayobject/ReadBar.ref b/roottest/root/io/arrayobject/ReadBar.ref index f1e878414cdf7..544557dccdd3e 100644 --- a/roottest/root/io/arrayobject/ReadBar.ref +++ b/roottest/root/io/arrayobject/ReadBar.ref @@ -1,4 +1,3 @@ - Processing Run.C("Event.root")... fop[0].i 1 fop[1].i 2 fo [0].i 1 fo [1].i 2 diff --git a/roottest/root/io/arrayobject/ReadBarOld.ref b/roottest/root/io/arrayobject/ReadBarOld.ref index f7581f88fc2bb..1dc8022ff7a32 100644 --- a/roottest/root/io/arrayobject/ReadBarOld.ref +++ b/roottest/root/io/arrayobject/ReadBarOld.ref @@ -1,4 +1,3 @@ - Processing Run.C... fop[0].i 1 fop[1].i 2 fo [0].i 1 fo [1].i 2 diff --git a/roottest/root/io/arrayobject/RealArraySave.ref b/roottest/root/io/arrayobject/RealArraySave.ref index 1fa837e2922c7..0706fd082b6d9 100644 --- a/roottest/root/io/arrayobject/RealArraySave.ref +++ b/roottest/root/io/arrayobject/RealArraySave.ref @@ -1,4 +1,3 @@ - Processing RealArraySave.C... fop[0].i 0 fop[1].i 0 fo [0].i 0 fo [1].i 0 diff --git a/roottest/root/io/bill01/checksize.ref b/roottest/root/io/bill01/checksize.ref index 59a9d8e15aa7c..3b9e29ba8e304 100644 --- a/roottest/root/io/bill01/checksize.ref +++ b/roottest/root/io/bill01/checksize.ref @@ -1,4 +1,3 @@ - Processing run.C... vector allocated 100 vector filled 50 diff --git a/roottest/root/io/bill02/checksize.ref b/roottest/root/io/bill02/checksize.ref index 9287122d55b6b..6090051561ed9 100644 --- a/roottest/root/io/bill02/checksize.ref +++ b/roottest/root/io/bill02/checksize.ref @@ -1,3 +1,2 @@ - Processing run.C... (int) 0 diff --git a/roottest/root/io/buffer/ownership.ref b/roottest/root/io/buffer/ownership.ref index 992b59b9badec..5c633dbad1d39 100644 --- a/roottest/root/io/buffer/ownership.ref +++ b/roottest/root/io/buffer/ownership.ref @@ -1,4 +1,3 @@ - Processing runownership.C+... Fatal in : Failed to expand the data buffer because TBuffer does not own it and no custom memory reallocator was provided. The expected error "Failed to expand the data buffer because TBuffer does not own it and no custom memory reallocator was provided." was seen diff --git a/roottest/root/io/clones/execV5Formula.ref b/roottest/root/io/clones/execV5Formula.ref index 3e69be10b9bb2..a602d55fedfff 100644 --- a/roottest/root/io/clones/execV5Formula.ref +++ b/roottest/root/io/clones/execV5Formula.ref @@ -1,4 +1,3 @@ - Processing execV5Formula.C... Collection name='TF1s', class='TClonesArray', size=21 Formula based function: f_Ch01_BC00_int0 diff --git a/roottest/root/io/complex/execreadClassWithComplex.ref b/roottest/root/io/complex/execreadClassWithComplex.ref index 3804996939007..9d32024090d1c 100644 --- a/roottest/root/io/complex/execreadClassWithComplex.ref +++ b/roottest/root/io/complex/execreadClassWithComplex.ref @@ -1,3 +1,2 @@ - Processing execreadClassWithComplex.C... (int) 0 diff --git a/roottest/root/io/complex/execreadcomplex.ref b/roottest/root/io/complex/execreadcomplex.ref index 996e43927d2d9..90dab65b70f68 100644 --- a/roottest/root/io/complex/execreadcomplex.ref +++ b/roottest/root/io/complex/execreadcomplex.ref @@ -1,4 +1,3 @@ - Processing execreadcomplex.C... Reading file complexOfileROOT6.root Reading file complexOfilekubuntuROOT5.root diff --git a/roottest/root/io/complex/execwriteClassWithComplex.ref b/roottest/root/io/complex/execwriteClassWithComplex.ref index 9d817d505b58b..7a639301f2a93 100644 --- a/roottest/root/io/complex/execwriteClassWithComplex.ref +++ b/roottest/root/io/complex/execwriteClassWithComplex.ref @@ -1,3 +1,2 @@ - Processing execwriteClassWithComplex.C... (int) 0 diff --git a/roottest/root/io/complex/execwritecomplex.ref b/roottest/root/io/complex/execwritecomplex.ref index 0698736fe567b..997fdfc341b20 100644 --- a/roottest/root/io/complex/execwritecomplex.ref +++ b/roottest/root/io/complex/execwritecomplex.ref @@ -1,4 +1,3 @@ - Processing execwritecomplex.C... Writing file complexOfileROOT6.xml Writing file complexOfileROOT6.root diff --git a/roottest/root/io/const/constTest.ref b/roottest/root/io/const/constTest.ref index 0e476f4c1e85d..8db2d170b6c30 100644 --- a/roottest/root/io/const/constTest.ref +++ b/roottest/root/io/const/constTest.ref @@ -1,2 +1 @@ - Processing constTest.C+... diff --git a/roottest/root/io/cpp11Containers/execForwardList.ref b/roottest/root/io/cpp11Containers/execForwardList.ref index 586479a9d384d..9768fff2df173 100644 --- a/roottest/root/io/cpp11Containers/execForwardList.ref +++ b/roottest/root/io/cpp11Containers/execForwardList.ref @@ -1,4 +1,3 @@ - Processing execForwardList.C... o Checking list - RowWise diff --git a/roottest/root/io/cpp11Containers/execUnorderedMap.ref b/roottest/root/io/cpp11Containers/execUnorderedMap.ref index ebbf403da7c91..0a3ad7550f8d6 100644 --- a/roottest/root/io/cpp11Containers/execUnorderedMap.ref +++ b/roottest/root/io/cpp11Containers/execUnorderedMap.ref @@ -1,4 +1,3 @@ - Processing execUnorderedMap.C... o Checking map - RowWise diff --git a/roottest/root/io/cpp11Containers/execUnorderedSet.ref b/roottest/root/io/cpp11Containers/execUnorderedSet.ref index 6dba186fa0755..10ec82f5f1621 100644 --- a/roottest/root/io/cpp11Containers/execUnorderedSet.ref +++ b/roottest/root/io/cpp11Containers/execUnorderedSet.ref @@ -1,4 +1,3 @@ - Processing execUnorderedSet.C... o Checking list - RowWise diff --git a/roottest/root/io/cpp11Containers/execcpp11ContainersNames.ref b/roottest/root/io/cpp11Containers/execcpp11ContainersNames.ref index 0c7ae24067bef..97fd06c4addbe 100644 --- a/roottest/root/io/cpp11Containers/execcpp11ContainersNames.ref +++ b/roottest/root/io/cpp11Containers/execcpp11ContainersNames.ref @@ -1,4 +1,3 @@ - Processing execcpp11ContainersNames.C... std::vector -> vector std::forward_list -> forward_list diff --git a/roottest/root/io/customCollection/customCollection.ref b/roottest/root/io/customCollection/customCollection.ref index 621d78c649442..11d8379466e71 100644 --- a/roottest/root/io/customCollection/customCollection.ref +++ b/roottest/root/io/customCollection/customCollection.ref @@ -1,4 +1,3 @@ - Processing runcustomCollection.C... Reading file with just a TTree Warning in : no dictionary for class Content is available diff --git a/roottest/root/io/customCollection/execWriteCustomCollection.ref b/roottest/root/io/customCollection/execWriteCustomCollection.ref index b04f9c1daaf19..06bbe5f638c39 100644 --- a/roottest/root/io/customCollection/execWriteCustomCollection.ref +++ b/roottest/root/io/customCollection/execWriteCustomCollection.ref @@ -1,4 +1,3 @@ - Processing execWriteCustomCollection.cxx+... Writing values: 0 / 3 : name0_3 diff --git a/roottest/root/io/customStreamer/StreamerThrow.ref b/roottest/root/io/customStreamer/StreamerThrow.ref index 6bdeaff470448..a451e418b7d8d 100644 --- a/roottest/root/io/customStreamer/StreamerThrow.ref +++ b/roottest/root/io/customStreamer/StreamerThrow.ref @@ -1,4 +1,3 @@ - std::runtime_error: streaming not supported TMemFile** mem.root TMemFile* mem.root diff --git a/roottest/root/io/customStreamer/customStreamerTest.ref b/roottest/root/io/customStreamer/customStreamerTest.ref index 44b717700d199..911a1116bc3b4 100644 --- a/roottest/root/io/customStreamer/customStreamerTest.ref +++ b/roottest/root/io/customStreamer/customStreamerTest.ref @@ -1,4 +1,3 @@ - Processing run.C... Hard2Stream version #2 Hard2Stream: diff --git a/roottest/root/io/datamodelevolution/00/test1.ref b/roottest/root/io/datamodelevolution/00/test1.ref index e92799dedfdef..33b4725e9e709 100644 --- a/roottest/root/io/datamodelevolution/00/test1.ref +++ b/roottest/root/io/datamodelevolution/00/test1.ref @@ -1,4 +1,3 @@ - Processing test1.cxx+... Create an object ACache::x 6 diff --git a/roottest/root/io/datamodelevolution/00/test2.ref b/roottest/root/io/datamodelevolution/00/test2.ref index dc476119d9db9..50fc9bf4ad951 100644 --- a/roottest/root/io/datamodelevolution/00/test2.ref +++ b/roottest/root/io/datamodelevolution/00/test2.ref @@ -1,4 +1,3 @@ - Processing test2.cxx+... Warning in : no dictionary for class Unversioned is available Stream out object diff --git a/roottest/root/io/datamodelevolution/00/test3.ref b/roottest/root/io/datamodelevolution/00/test3.ref index 14024ec484e5b..540c59ff58660 100644 --- a/roottest/root/io/datamodelevolution/00/test3.ref +++ b/roottest/root/io/datamodelevolution/00/test3.ref @@ -1,4 +1,3 @@ - Processing test3.cxx+... Warning in : no dictionary for class ACache is available Warning in : no dictionary for class Unversioned is available diff --git a/roottest/root/io/datamodelevolution/01/rtest1.ref b/roottest/root/io/datamodelevolution/01/rtest1.ref index ead8552cb90ad..b6b903b95da9e 100644 --- a/roottest/root/io/datamodelevolution/01/rtest1.ref +++ b/roottest/root/io/datamodelevolution/01/rtest1.ref @@ -1,4 +1,3 @@ - Processing test1.cxx+("r")... [i] Generating test data model version 1 Content of rflx_test01_wv1.log diff --git a/roottest/root/io/datamodelevolution/01/rtest2.ref b/roottest/root/io/datamodelevolution/01/rtest2.ref index 708a93263a8a6..b9162a5cc2f21 100644 --- a/roottest/root/io/datamodelevolution/01/rtest2.ref +++ b/roottest/root/io/datamodelevolution/01/rtest2.ref @@ -1,4 +1,3 @@ - Processing test2.cxx+("r")... [i] Reading test data model version 1 MATCH: rflx_test01_wv1.log - rflx_test01_rv2.log diff --git a/roottest/root/io/datamodelevolution/01/rtest3.ref b/roottest/root/io/datamodelevolution/01/rtest3.ref index 0ad01a83717b7..e5f4db784e774 100644 --- a/roottest/root/io/datamodelevolution/01/rtest3.ref +++ b/roottest/root/io/datamodelevolution/01/rtest3.ref @@ -1,4 +1,3 @@ - Processing test3.cxx+("r")... [i] Reading test data model version 2 Warning in : no dictionary for class ClassAIns is available diff --git a/roottest/root/io/datamodelevolution/01/test1.ref b/roottest/root/io/datamodelevolution/01/test1.ref index 9e511fe68fae7..a3e7ffde37ca0 100644 --- a/roottest/root/io/datamodelevolution/01/test1.ref +++ b/roottest/root/io/datamodelevolution/01/test1.ref @@ -1,4 +1,3 @@ - Processing test1.cxx+... [i] Generating test data model version 1 Content of test01_wv1.log diff --git a/roottest/root/io/datamodelevolution/01/test2.ref b/roottest/root/io/datamodelevolution/01/test2.ref index 26d1c65611d51..19f11a153597e 100644 --- a/roottest/root/io/datamodelevolution/01/test2.ref +++ b/roottest/root/io/datamodelevolution/01/test2.ref @@ -1,4 +1,3 @@ - Processing test2.cxx+... [i] Reading test data model version 1 MATCH: test01_wv1.log - test01_rv2.log diff --git a/roottest/root/io/datamodelevolution/01/test3.ref b/roottest/root/io/datamodelevolution/01/test3.ref index fdf5c79f43053..99f2df1d5903d 100644 --- a/roottest/root/io/datamodelevolution/01/test3.ref +++ b/roottest/root/io/datamodelevolution/01/test3.ref @@ -1,4 +1,3 @@ - Processing test3.cxx+... [i] Reading test data model version 2 Warning in : no dictionary for class ClassAIns is available diff --git a/roottest/root/io/datamodelevolution/cms-00/execReadRename1.ref b/roottest/root/io/datamodelevolution/cms-00/execReadRename1.ref index 78a237a2868c6..17ba80d8c2c10 100644 --- a/roottest/root/io/datamodelevolution/cms-00/execReadRename1.ref +++ b/roottest/root/io/datamodelevolution/cms-00/execReadRename1.ref @@ -1,4 +1,3 @@ - Processing execReadRename1.cxx+... Holder Electron #0 diff --git a/roottest/root/io/datamodelevolution/cms-00/execReadRename2.ref b/roottest/root/io/datamodelevolution/cms-00/execReadRename2.ref index cb40fd6dac455..cb1aa7ed43f47 100644 --- a/roottest/root/io/datamodelevolution/cms-00/execReadRename2.ref +++ b/roottest/root/io/datamodelevolution/cms-00/execReadRename2.ref @@ -1,4 +1,3 @@ - Processing execReadRename2.cxx+... Holder Electron #0 diff --git a/roottest/root/io/datamodelevolution/cms-00/execWriteRename.ref b/roottest/root/io/datamodelevolution/cms-00/execWriteRename.ref index b932941c91e50..dd1cdcfbd3589 100644 --- a/roottest/root/io/datamodelevolution/cms-00/execWriteRename.ref +++ b/roottest/root/io/datamodelevolution/cms-00/execWriteRename.ref @@ -1,4 +1,3 @@ - Processing execWriteRename.cxx+... Holder Electron #0 diff --git a/roottest/root/io/datamodelevolution/cms-00/read_reflex_test1.ref b/roottest/root/io/datamodelevolution/cms-00/read_reflex_test1.ref index d8c2b2284e8b4..9304ead3ce9fa 100644 --- a/roottest/root/io/datamodelevolution/cms-00/read_reflex_test1.ref +++ b/roottest/root/io/datamodelevolution/cms-00/read_reflex_test1.ref @@ -1,4 +1,3 @@ - Processing read_test1.cxx+("r")... [i] Reading test data model version 1 MATCH: reflex_test01_wv1.log - reflex_test01_rv1.log diff --git a/roottest/root/io/datamodelevolution/cms-00/read_test1.ref b/roottest/root/io/datamodelevolution/cms-00/read_test1.ref index bc1518641152c..f4b3a6aba5946 100644 --- a/roottest/root/io/datamodelevolution/cms-00/read_test1.ref +++ b/roottest/root/io/datamodelevolution/cms-00/read_test1.ref @@ -1,4 +1,3 @@ - Processing read_test1.cxx+... [i] Reading test data model version 1 MATCH: test01_wv1.log - test01_rv1.log diff --git a/roottest/root/io/datamodelevolution/cms-00/reflex_test1.ref b/roottest/root/io/datamodelevolution/cms-00/reflex_test1.ref index 496bbe2f94263..b96ead339a211 100644 --- a/roottest/root/io/datamodelevolution/cms-00/reflex_test1.ref +++ b/roottest/root/io/datamodelevolution/cms-00/reflex_test1.ref @@ -1,4 +1,3 @@ - Processing test1.cxx+("r")... [i] Generating test data model version 1 Content of reflex_test01_wv1.log diff --git a/roottest/root/io/datamodelevolution/cms-00/test1.ref b/roottest/root/io/datamodelevolution/cms-00/test1.ref index 2d9ae938b4d16..5b2045d975728 100644 --- a/roottest/root/io/datamodelevolution/cms-00/test1.ref +++ b/roottest/root/io/datamodelevolution/cms-00/test1.ref @@ -1,4 +1,3 @@ - Processing test1.cxx+... [i] Generating test data model version 1 Content of test01_wv1.log diff --git a/roottest/root/io/datamodelevolution/misc/execConversions.ref b/roottest/root/io/datamodelevolution/misc/execConversions.ref index 5747d350e76be..1b554765ba975 100644 --- a/roottest/root/io/datamodelevolution/misc/execConversions.ref +++ b/roottest/root/io/datamodelevolution/misc/execConversions.ref @@ -1,3 +1,2 @@ - Processing execConversions.cxx+... (int) 0 diff --git a/roottest/root/io/datamodelevolution/misc/execReadOrderClass.ref b/roottest/root/io/datamodelevolution/misc/execReadOrderClass.ref index 6c2a21f694fb2..fa8093eb25fc6 100644 --- a/roottest/root/io/datamodelevolution/misc/execReadOrderClass.ref +++ b/roottest/root/io/datamodelevolution/misc/execReadOrderClass.ref @@ -1,4 +1,3 @@ - Processing execReadOrderClass.cxx+... Warning in : Cannot convert MyClass::fArray from type: vector to type: int, skip element rule reading class version: 1 diff --git a/roottest/root/io/datamodelevolution/misc/execWriteOrderClass.ref b/roottest/root/io/datamodelevolution/misc/execWriteOrderClass.ref index da01bf1dcab5e..6fc9eb07f3856 100644 --- a/roottest/root/io/datamodelevolution/misc/execWriteOrderClass.ref +++ b/roottest/root/io/datamodelevolution/misc/execWriteOrderClass.ref @@ -1,4 +1,3 @@ - Processing execWriteOrderClass.cxx+... ver: 1 transientMember: 0 diff --git a/roottest/root/io/datamodelevolution/misc/postobj.ref b/roottest/root/io/datamodelevolution/misc/postobj.ref index 191c2f23e7cf6..a1466437d779d 100644 --- a/roottest/root/io/datamodelevolution/misc/postobj.ref +++ b/roottest/root/io/datamodelevolution/misc/postobj.ref @@ -1,4 +1,3 @@ - Processing runpostobj.C... Number of array elements: 4 OBJ: TNamed aaa AAAAAAAA diff --git a/roottest/root/io/datamodelevolution/misc/writeTree.ref b/roottest/root/io/datamodelevolution/misc/writeTree.ref index 6e025a8effa11..43b06cfcf6fa9 100644 --- a/roottest/root/io/datamodelevolution/misc/writeTree.ref +++ b/roottest/root/io/datamodelevolution/misc/writeTree.ref @@ -1,4 +1,3 @@ - Processing writeTree.C... Number of array elements: 5 OBJ: TNamed aaa AAAAAAAA diff --git a/roottest/root/io/datamodelevolution/stl/execMapContent.ref b/roottest/root/io/datamodelevolution/stl/execMapContent.ref index 805e5252ace42..bdd4c67c53481 100644 --- a/roottest/root/io/datamodelevolution/stl/execMapContent.ref +++ b/roottest/root/io/datamodelevolution/stl/execMapContent.ref @@ -1,2 +1 @@ - Processing execMapContent.C... diff --git a/roottest/root/io/datamodelevolution/stl/execReadFile.ref b/roottest/root/io/datamodelevolution/stl/execReadFile.ref index 7ab556dc30c9f..4e8e4c221ab3b 100644 --- a/roottest/root/io/datamodelevolution/stl/execReadFile.ref +++ b/roottest/root/io/datamodelevolution/stl/execReadFile.ref @@ -1,4 +1,3 @@ - Processing execReadFile.C... Warning in : no dictionary for class Inside is available Reading a Track. diff --git a/roottest/root/io/datamodelevolution/stl/execWriteFile.ref b/roottest/root/io/datamodelevolution/stl/execWriteFile.ref index e917c68524c1f..6cfbc3f1b11be 100644 --- a/roottest/root/io/datamodelevolution/stl/execWriteFile.ref +++ b/roottest/root/io/datamodelevolution/stl/execWriteFile.ref @@ -1,4 +1,3 @@ - Processing execWriteFile.C... Holder: Holder::fX 1 diff --git a/roottest/root/io/dirdelete/dirdelete.fail.ref b/roottest/root/io/dirdelete/dirdelete.fail.ref index b2501185a6267..84ddfced6afae 100644 --- a/roottest/root/io/dirdelete/dirdelete.fail.ref +++ b/roottest/root/io/dirdelete/dirdelete.fail.ref @@ -1,4 +1,3 @@ - Processing rundirdelete.C... After rename Error: subdirectory dir_0/dir_1/dir_2_newname/dir_3/dir_4 not found diff --git a/roottest/root/io/dirdelete/dirdelete.ref b/roottest/root/io/dirdelete/dirdelete.ref index 6059a44882c8a..63eab7dd30f18 100644 --- a/roottest/root/io/dirdelete/dirdelete.ref +++ b/roottest/root/io/dirdelete/dirdelete.ref @@ -1,2 +1 @@ - Processing rundirdelete.C... diff --git a/roottest/root/io/directory/cd.ref b/roottest/root/io/directory/cd.ref index d81ec64d1502b..046addae42a10 100644 --- a/roottest/root/io/directory/cd.ref +++ b/roottest/root/io/directory/cd.ref @@ -1,4 +1,3 @@ - Processing runcd.C... gFile is: runcd.root gDirectory is: Rint diff --git a/roottest/root/io/directory/execKeyOrder.ref b/roottest/root/io/directory/execKeyOrder.ref index f88b109d2ce21..d0e4c56925b1c 100644 --- a/roottest/root/io/directory/execKeyOrder.ref +++ b/roottest/root/io/directory/execKeyOrder.ref @@ -1,4 +1,3 @@ - Processing execKeyOrder.cxx+... lists of keys 0 4 diff --git a/roottest/root/io/directory/execOverWriteDir.ref b/roottest/root/io/directory/execOverWriteDir.ref index 653b383308349..d58f7bf505cf1 100644 --- a/roottest/root/io/directory/execOverWriteDir.ref +++ b/roottest/root/io/directory/execOverWriteDir.ref @@ -1,4 +1,3 @@ - Processing execOverWriteDir.C... File map after the object write/delete At:100 N=130 K=51 O=79 TFile CX = 1 diff --git a/roottest/root/io/directory/execRecursiveGet.ref b/roottest/root/io/directory/execRecursiveGet.ref index 14671e001d2e2..6c9192386ecc3 100644 --- a/roottest/root/io/directory/execRecursiveGet.ref +++ b/roottest/root/io/directory/execRecursiveGet.ref @@ -1,4 +1,3 @@ - Processing execRecursiveGet.C... TObjString = two TObjString = one diff --git a/roottest/root/io/directory/execmanydirs.ref b/roottest/root/io/directory/execmanydirs.ref index 4954038ab2998..c46939e627afc 100644 --- a/roottest/root/io/directory/execmanydirs.ref +++ b/roottest/root/io/directory/execmanydirs.ref @@ -1,2 +1 @@ - Processing execmanydirs.cxx+... diff --git a/roottest/root/io/directory/getobj.ref b/roottest/root/io/directory/getobj.ref index 8401d4fe42ace..e180475d535c3 100644 --- a/roottest/root/io/directory/getobj.ref +++ b/roottest/root/io/directory/getobj.ref @@ -1,4 +1,3 @@ - Processing rungetobj.C... TFile** TDirGetObj.root TFile* TDirGetObj.root diff --git a/roottest/root/io/directory/testFindObjectAny.ref b/roottest/root/io/directory/testFindObjectAny.ref index 6af5a5471cad1..ad09062b9d631 100644 --- a/roottest/root/io/directory/testFindObjectAny.ref +++ b/roottest/root/io/directory/testFindObjectAny.ref @@ -1,3 +1,2 @@ - Processing testFindObjectAny.C... (int) 0 diff --git a/roottest/root/io/directory/withautoadd.ref b/roottest/root/io/directory/withautoadd.ref index 3b4c0a0e65551..af5e484b27745 100644 --- a/roottest/root/io/directory/withautoadd.ref +++ b/roottest/root/io/directory/withautoadd.ref @@ -1,4 +1,3 @@ - Processing withautoadd.C+... Found wrapper for Top DirectoryAutoAdd for Top with Rint diff --git a/roottest/root/io/double32/template32.ref b/roottest/root/io/double32/template32.ref index defc01c5bae60..6db2ac7b7d341 100644 --- a/roottest/root/io/double32/template32.ref +++ b/roottest/root/io/double32/template32.ref @@ -1,4 +1,3 @@ - Processing runtemplate32.C+... Info in : creating shared library runtemplate32_C.so diff --git a/roottest/root/io/emulated/execROOT8804.ref b/roottest/root/io/emulated/execROOT8804.ref index 5662791896fb6..a9d22f41beb86 100644 --- a/roottest/root/io/emulated/execROOT8804.ref +++ b/roottest/root/io/emulated/execROOT8804.ref @@ -1,4 +1,3 @@ - Processing execROOT8804.C... Warning in : no dictionary for class art::BranchKey is available Warning in : no dictionary for class art::BranchDescription is available diff --git a/roottest/root/io/emulated/execROOT8804.ref32 b/roottest/root/io/emulated/execROOT8804.ref32 index c338706d002f8..6cbb280415f52 100644 --- a/roottest/root/io/emulated/execROOT8804.ref32 +++ b/roottest/root/io/emulated/execROOT8804.ref32 @@ -1,4 +1,3 @@ - Processing execROOT8804.C... Warning in : no dictionary for class art::BranchKey is available Warning in : no dictionary for class art::BranchDescription is available diff --git a/roottest/root/io/emulated/read.ref b/roottest/root/io/emulated/read.ref index e3cb7614ba5e1..c52f34d434573 100644 --- a/roottest/root/io/emulated/read.ref +++ b/roottest/root/io/emulated/read.ref @@ -1,4 +1,3 @@ - Processing read.C... Warning in : no dictionary for class Holder is available Warning in : no dictionary for class MidLevel is available diff --git a/roottest/root/io/emulated/readAbstract.ref b/roottest/root/io/emulated/readAbstract.ref index ef0979303c612..cf4e1ec09ff69 100644 --- a/roottest/root/io/emulated/readAbstract.ref +++ b/roottest/root/io/emulated/readAbstract.ref @@ -1,4 +1,3 @@ - Processing readAbstract.cxx+... Warning in : no dictionary for class Concrete is available ************************************ diff --git a/roottest/root/io/emulated/rewrite.ref b/roottest/root/io/emulated/rewrite.ref index 9a3a4020b6c43..15c0775ec806a 100644 --- a/roottest/root/io/emulated/rewrite.ref +++ b/roottest/root/io/emulated/rewrite.ref @@ -1,4 +1,3 @@ - Processing rewrite.C... Warning in : no dictionary for class Holder is available Warning in : no dictionary for class MidLevel is available diff --git a/roottest/root/io/evolution/ClassConvReadNew.ref b/roottest/root/io/evolution/ClassConvReadNew.ref index 2721bbd8edecb..a400e552088ca 100644 --- a/roottest/root/io/evolution/ClassConvReadNew.ref +++ b/roottest/root/io/evolution/ClassConvReadNew.ref @@ -1,4 +1,3 @@ - Processing ClassConvReadNew.cxx... Warning in : no dictionary for class Inside is available TopLevel value is 44 diff --git a/roottest/root/io/evolution/ClassConvReadOther.ref b/roottest/root/io/evolution/ClassConvReadOther.ref index 1c052eb34cd5b..1b6367cfddc20 100644 --- a/roottest/root/io/evolution/ClassConvReadOther.ref +++ b/roottest/root/io/evolution/ClassConvReadOther.ref @@ -1,4 +1,3 @@ - Processing ClassConvReadOther.cxx... Warning in : no dictionary for class MyLib::Inside is available Warning in : no dictionary for class MyLib::Typedefed is available diff --git a/roottest/root/io/evolution/ClonesArrayEvo.ref b/roottest/root/io/evolution/ClonesArrayEvo.ref index 629176904234f..3fcb12b9193c7 100644 --- a/roottest/root/io/evolution/ClonesArrayEvo.ref +++ b/roottest/root/io/evolution/ClonesArrayEvo.ref @@ -1,2 +1 @@ - Processing runClonesArrayEvo.C... diff --git a/roottest/root/io/evolution/Missing.ref b/roottest/root/io/evolution/Missing.ref index 42d9c32bcec27..1d0b4bb923db2 100644 --- a/roottest/root/io/evolution/Missing.ref +++ b/roottest/root/io/evolution/Missing.ref @@ -1,4 +1,3 @@ - Processing runMissing.C... Warning in : no dictionary for class HoldHdr is available Warning in : no dictionary for class HoldPvx is available diff --git a/roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref b/roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref index 6b9fea3f7946f..483771764ba7e 100644 --- a/roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref +++ b/roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref @@ -1,3 +1,2 @@ - Processing runReadFixedArrayNewWithOld.C+... offset: 4 diff --git a/roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref64 b/roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref64 index fd7a1ce935902..59164a0a67431 100644 --- a/roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref64 +++ b/roottest/root/io/evolution/ReadFixedArrayNewWithOld.ref64 @@ -1,3 +1,2 @@ - Processing runReadFixedArrayNewWithOld.C+... offset: 8 diff --git a/roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref b/roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref index 3caedf8eabfbc..40b9586daee06 100644 --- a/roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref +++ b/roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref @@ -1,3 +1,2 @@ - Processing runReadFixedArrayOldWithNew.C+... offset: 4 diff --git a/roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref64 b/roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref64 index 7d53da00e7351..33b668b04f085 100644 --- a/roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref64 +++ b/roottest/root/io/evolution/ReadFixedArrayOldWithNew.ref64 @@ -1,3 +1,2 @@ - Processing runReadFixedArrayOldWithNew.C+... offset: 8 diff --git a/roottest/root/io/evolution/WriteFixedArrayNew.ref b/roottest/root/io/evolution/WriteFixedArrayNew.ref index 6bef14374b2ea..b7f0e5653c9a9 100644 --- a/roottest/root/io/evolution/WriteFixedArrayNew.ref +++ b/roottest/root/io/evolution/WriteFixedArrayNew.ref @@ -1,2 +1 @@ - Processing runWriteFixedArrayNew.C+... diff --git a/roottest/root/io/evolution/WriteFixedArrayOld.ref b/roottest/root/io/evolution/WriteFixedArrayOld.ref index 2401f611d0f4c..df1a4ae09bdb6 100644 --- a/roottest/root/io/evolution/WriteFixedArrayOld.ref +++ b/roottest/root/io/evolution/WriteFixedArrayOld.ref @@ -1,2 +1 @@ - Processing runWriteFixedArrayOld.C+... diff --git a/roottest/root/io/evolution/array/fixed2var.ref b/roottest/root/io/evolution/array/fixed2var.ref index 665130b19b861..79829b2002ad7 100644 --- a/roottest/root/io/evolution/array/fixed2var.ref +++ b/roottest/root/io/evolution/array/fixed2var.ref @@ -1,4 +1,3 @@ - Processing runfixed2var.C... array[0] = 10 array[1] = 20 diff --git a/roottest/root/io/evolution/boolUpdate.ref b/roottest/root/io/evolution/boolUpdate.ref index c3cfb2f5d0e2b..c9421262a6d02 100644 --- a/roottest/root/io/evolution/boolUpdate.ref +++ b/roottest/root/io/evolution/boolUpdate.ref @@ -1,4 +1,3 @@ - Processing runboolUpdate.C... TFile** boolUpdate.root TFile* boolUpdate.root diff --git a/roottest/root/io/evolution/equivalent/execioReadRuleEquivalentCode.ref b/roottest/root/io/evolution/equivalent/execioReadRuleEquivalentCode.ref index 64d6473f16d6d..da60921457420 100644 --- a/roottest/root/io/evolution/equivalent/execioReadRuleEquivalentCode.ref +++ b/roottest/root/io/evolution/equivalent/execioReadRuleEquivalentCode.ref @@ -1,2 +1 @@ - Processing execioReadRuleEquivalentCode.C... diff --git a/roottest/root/io/evolution/execSkipbaseclass.ref b/roottest/root/io/evolution/execSkipbaseclass.ref index a49ef2ea99f2e..c6a27cb538961 100644 --- a/roottest/root/io/evolution/execSkipbaseclass.ref +++ b/roottest/root/io/evolution/execSkipbaseclass.ref @@ -1,4 +1,3 @@ - Processing execSkipbaseclass.cxx+... Warning in : no dictionary for class MyBase is available Reading MyDerived diff --git a/roottest/root/io/evolution/execStlInheritNew.ref b/roottest/root/io/evolution/execStlInheritNew.ref index a712ed84e9b43..f60d4c3fcefe2 100644 --- a/roottest/root/io/evolution/execStlInheritNew.ref +++ b/roottest/root/io/evolution/execStlInheritNew.ref @@ -1,4 +1,3 @@ - Processing execStlInheritNew.cxx+... Warning in : no dictionary for class Container is available Warning in : no dictionary for class ContainerInt is available diff --git a/roottest/root/io/evolution/execStlInheritOld.ref b/roottest/root/io/evolution/execStlInheritOld.ref index f4dfdf482a1c4..b9eaf4995e5c2 100644 --- a/roottest/root/io/evolution/execStlInheritOld.ref +++ b/roottest/root/io/evolution/execStlInheritOld.ref @@ -1,2 +1 @@ - Processing execStlInheritOld.cxx+... diff --git a/roottest/root/io/evolution/fixarr1.ref b/roottest/root/io/evolution/fixarr1.ref index e5a5095dc806d..36502470ea091 100644 --- a/roottest/root/io/evolution/fixarr1.ref +++ b/roottest/root/io/evolution/fixarr1.ref @@ -1,4 +1,3 @@ - Processing fixarr1.C+... 0 5 1 6 diff --git a/roottest/root/io/evolution/fixarr2.ref b/roottest/root/io/evolution/fixarr2.ref index e2d5b525c9caf..e2781a87314e6 100644 --- a/roottest/root/io/evolution/fixarr2.ref +++ b/roottest/root/io/evolution/fixarr2.ref @@ -1,4 +1,3 @@ - Processing fixarr2.C+... 0 5 1 6 diff --git a/roottest/root/io/evolution/fixarr3.ref b/roottest/root/io/evolution/fixarr3.ref index 86b08f85a3cf1..f5ff8035ffdba 100644 --- a/roottest/root/io/evolution/fixarr3.ref +++ b/roottest/root/io/evolution/fixarr3.ref @@ -1,4 +1,3 @@ - Processing fixarr3.C+... 0 5 1 6 diff --git a/roottest/root/io/evolution/foreign310.ref b/roottest/root/io/evolution/foreign310.ref index d97dc2820af08..3b0141abcb53f 100644 --- a/roottest/root/io/evolution/foreign310.ref +++ b/roottest/root/io/evolution/foreign310.ref @@ -1,4 +1,3 @@ - Processing runforeign310.C... File version:31002 diff --git a/roottest/root/io/evolution/issue-8083/execWriteAfterOld.ref b/roottest/root/io/evolution/issue-8083/execWriteAfterOld.ref index 50ab6a76af4da..672b577317636 100644 --- a/roottest/root/io/evolution/issue-8083/execWriteAfterOld.ref +++ b/roottest/root/io/evolution/issue-8083/execWriteAfterOld.ref @@ -1,4 +1,3 @@ - Processing execWriteAfterOld.C... Warning in : no dictionary for class mystrarray is available Warning in : no dictionary for class container is available diff --git a/roottest/root/io/evolution/issue-8083/execreadfile.ref b/roottest/root/io/evolution/issue-8083/execreadfile.ref index 55f3dd6e6c5b9..82e4c6752ea62 100644 --- a/roottest/root/io/evolution/issue-8083/execreadfile.ref +++ b/roottest/root/io/evolution/issue-8083/execreadfile.ref @@ -1,2 +1 @@ - Processing execreadfile.cxx+... diff --git a/roottest/root/io/evolution/numerical_conversions/read.ref b/roottest/root/io/evolution/numerical_conversions/read.ref index 57b61b3a79003..3c9fbcf949e95 100644 --- a/roottest/root/io/evolution/numerical_conversions/read.ref +++ b/roottest/root/io/evolution/numerical_conversions/read.ref @@ -1,4 +1,3 @@ - Processing read.C... Reading int.root Reading float16.root diff --git a/roottest/root/io/evolution/pragma_read/execTestv1.ref b/roottest/root/io/evolution/pragma_read/execTestv1.ref index 86d0e2d3039a2..1848866574917 100644 --- a/roottest/root/io/evolution/pragma_read/execTestv1.ref +++ b/roottest/root/io/evolution/pragma_read/execTestv1.ref @@ -1,4 +1,3 @@ - Processing execTestv1.C... === Creating old-style object === TH1.Print Name = forwardMult, Entries= 2, Total sum= 0 diff --git a/roottest/root/io/evolution/pragma_read/execTestv2.ref b/roottest/root/io/evolution/pragma_read/execTestv2.ref index 1d2dbc600b782..cfaadf5c5146a 100644 --- a/roottest/root/io/evolution/pragma_read/execTestv2.ref +++ b/roottest/root/io/evolution/pragma_read/execTestv2.ref @@ -1,4 +1,3 @@ - Processing execTestv2.C... === Reading new style object === Info in : Creating header diff --git a/roottest/root/io/evolution/rules/execAddRemoveStreamerInfo.ref b/roottest/root/io/evolution/rules/execAddRemoveStreamerInfo.ref index 86494918f67c2..a774013e28c7a 100644 --- a/roottest/root/io/evolution/rules/execAddRemoveStreamerInfo.ref +++ b/roottest/root/io/evolution/rules/execAddRemoveStreamerInfo.ref @@ -1,3 +1,2 @@ - Processing execAddRemoveStreamerInfo.C... (int) 0 diff --git a/roottest/root/io/evolution/rules/execCheckRuleRegistration.ref b/roottest/root/io/evolution/rules/execCheckRuleRegistration.ref index c671974fbe82c..5c5db6672d6c0 100644 --- a/roottest/root/io/evolution/rules/execCheckRuleRegistration.ref +++ b/roottest/root/io/evolution/rules/execCheckRuleRegistration.ref @@ -1,3 +1,2 @@ - Processing execCheckRuleRegistration.cxx+... (int) 0 diff --git a/roottest/root/io/evolution/rules/execSourceTypes.ref b/roottest/root/io/evolution/rules/execSourceTypes.ref index 8acad597b9ff2..49528469fc141 100644 --- a/roottest/root/io/evolution/rules/execSourceTypes.ref +++ b/roottest/root/io/evolution/rules/execSourceTypes.ref @@ -1,4 +1,3 @@ - Processing execSourceTypes.cxx+... The A[3] values are: 1.5 2.6 3.7 diff --git a/roottest/root/io/evolution/skip.ref b/roottest/root/io/evolution/skip.ref index 1adde581ff18c..95b3fda8c053c 100644 --- a/roottest/root/io/evolution/skip.ref +++ b/roottest/root/io/evolution/skip.ref @@ -1,4 +1,3 @@ - Processing runSkip.C... Warning in : Counter skipsize should not be skipped from class MyClass Reading .xml file diff --git a/roottest/root/io/evolution/stl_conversions/check.stl.ref b/roottest/root/io/evolution/stl_conversions/check.stl.ref index e048aa73fc6ae..b6d9fa0bc24ab 100644 --- a/roottest/root/io/evolution/stl_conversions/check.stl.ref +++ b/roottest/root/io/evolution/stl_conversions/check.stl.ref @@ -1,4 +1,3 @@ - Processing read.C... Reading map.root Reading vector.root diff --git a/roottest/root/io/evolution/typedef.ref b/roottest/root/io/evolution/typedef.ref index 8db77c0807300..9a022a5f4c9c3 100644 --- a/roottest/root/io/evolution/typedef.ref +++ b/roottest/root/io/evolution/typedef.ref @@ -1,2 +1 @@ - Processing runtypedef.C... diff --git a/roottest/root/io/evolution/v5names/execQualifiedNames.ref b/roottest/root/io/evolution/v5names/execQualifiedNames.ref index 9d31e9e57ac72..7a0b47bf7ed0d 100644 --- a/roottest/root/io/evolution/v5names/execQualifiedNames.ref +++ b/roottest/root/io/evolution/v5names/execQualifiedNames.ref @@ -1,3 +1,2 @@ - Processing execQualifiedNames.C... (int) 0 diff --git a/roottest/root/io/evolution/versions/AddVersion-1-1.ref b/roottest/root/io/evolution/versions/AddVersion-1-1.ref index ca8fcc97a423f..3bf7e6bbfd373 100644 --- a/roottest/root/io/evolution/versions/AddVersion-1-1.ref +++ b/roottest/root/io/evolution/versions/AddVersion-1-1.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(1, "1")... Loading library lib1 diff --git a/roottest/root/io/evolution/versions/AddVersion-1-2.ref b/roottest/root/io/evolution/versions/AddVersion-1-2.ref index 88146e57cae5f..df16723ba2b38 100644 --- a/roottest/root/io/evolution/versions/AddVersion-1-2.ref +++ b/roottest/root/io/evolution/versions/AddVersion-1-2.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(1, "2")... Loading library lib2 diff --git a/roottest/root/io/evolution/versions/AddVersion-1-3.ref b/roottest/root/io/evolution/versions/AddVersion-1-3.ref index 6ea7386d90317..907d5b0374190 100644 --- a/roottest/root/io/evolution/versions/AddVersion-1-3.ref +++ b/roottest/root/io/evolution/versions/AddVersion-1-3.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(1, "3")... Loading library lib3 diff --git a/roottest/root/io/evolution/versions/AddVersion-1-4.ref b/roottest/root/io/evolution/versions/AddVersion-1-4.ref index ffa5ab9eb647a..c25b07a2123a5 100644 --- a/roottest/root/io/evolution/versions/AddVersion-1-4.ref +++ b/roottest/root/io/evolution/versions/AddVersion-1-4.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(1, "4")... Loading library lib4 diff --git a/roottest/root/io/evolution/versions/AddVersion-1-5.ref b/roottest/root/io/evolution/versions/AddVersion-1-5.ref index 415de2c09e844..6a011c4da4058 100644 --- a/roottest/root/io/evolution/versions/AddVersion-1-5.ref +++ b/roottest/root/io/evolution/versions/AddVersion-1-5.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(1, "5")... Loading library lib5 diff --git a/roottest/root/io/evolution/versions/AddVersion-1-6.ref b/roottest/root/io/evolution/versions/AddVersion-1-6.ref index b5c0172f6f72b..5c1f878c159b8 100644 --- a/roottest/root/io/evolution/versions/AddVersion-1-6.ref +++ b/roottest/root/io/evolution/versions/AddVersion-1-6.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(1, "6")... Loading library lib6 diff --git a/roottest/root/io/evolution/versions/AddVersion-2-1.ref b/roottest/root/io/evolution/versions/AddVersion-2-1.ref index 2b41b53bdaf79..29f2ab0252c98 100644 --- a/roottest/root/io/evolution/versions/AddVersion-2-1.ref +++ b/roottest/root/io/evolution/versions/AddVersion-2-1.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(2, "1")... Loading myclass1.root Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/evolution/versions/AddVersion-2-2.ref b/roottest/root/io/evolution/versions/AddVersion-2-2.ref index 3231959fc027a..aeb9ae281f7e7 100644 --- a/roottest/root/io/evolution/versions/AddVersion-2-2.ref +++ b/roottest/root/io/evolution/versions/AddVersion-2-2.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(2, "2")... Loading myclass1.root Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/evolution/versions/AddVersion-2-3.ref b/roottest/root/io/evolution/versions/AddVersion-2-3.ref index 524c3cb1dc6c2..efff172c392a0 100644 --- a/roottest/root/io/evolution/versions/AddVersion-2-3.ref +++ b/roottest/root/io/evolution/versions/AddVersion-2-3.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(2, "3")... Loading myclass1.root Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/evolution/versions/AddVersion-2-4.ref b/roottest/root/io/evolution/versions/AddVersion-2-4.ref index 55e04d47bac1d..f26899410e487 100644 --- a/roottest/root/io/evolution/versions/AddVersion-2-4.ref +++ b/roottest/root/io/evolution/versions/AddVersion-2-4.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(2, "4")... Loading myclass1.root Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/evolution/versions/AddVersion-2-5.ref b/roottest/root/io/evolution/versions/AddVersion-2-5.ref index a2659c5aa846e..dd0a79adffac4 100644 --- a/roottest/root/io/evolution/versions/AddVersion-2-5.ref +++ b/roottest/root/io/evolution/versions/AddVersion-2-5.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(2, "5")... Loading myclass1.root Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/evolution/versions/AddVersion-2-6.ref b/roottest/root/io/evolution/versions/AddVersion-2-6.ref index 86656195c403c..5f8d281567148 100644 --- a/roottest/root/io/evolution/versions/AddVersion-2-6.ref +++ b/roottest/root/io/evolution/versions/AddVersion-2-6.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(2, "6")... Loading myclass1.root Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/evolution/versions/AddVersion-3-6.ref b/roottest/root/io/evolution/versions/AddVersion-3-6.ref index 092e57493485b..1578d2d5b98e2 100644 --- a/roottest/root/io/evolution/versions/AddVersion-3-6.ref +++ b/roottest/root/io/evolution/versions/AddVersion-3-6.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(3, "6")... Loading library lib6 diff --git a/roottest/root/io/evolution/versions/AddVersion-3-7.ref b/roottest/root/io/evolution/versions/AddVersion-3-7.ref index 2be6eece6961e..f184bc8d7cbd0 100644 --- a/roottest/root/io/evolution/versions/AddVersion-3-7.ref +++ b/roottest/root/io/evolution/versions/AddVersion-3-7.ref @@ -1,4 +1,3 @@ - Processing runAddVersion.cxx(3, "7")... Loading library lib7 diff --git a/roottest/root/io/evolution/versions/VecLong-1.ref64 b/roottest/root/io/evolution/versions/VecLong-1.ref64 index fbf510dfc9ff2..0bd4b889fa5aa 100644 --- a/roottest/root/io/evolution/versions/VecLong-1.ref64 +++ b/roottest/root/io/evolution/versions/VecLong-1.ref64 @@ -1,4 +1,3 @@ - Processing runVecLong.cxx(1,"1")... Print a vector of long #0 10000000003 diff --git a/roottest/root/io/evolution/versions/VecLong-2.ref64 b/roottest/root/io/evolution/versions/VecLong-2.ref64 index eab87418c21bc..4aa307b50a9e8 100644 --- a/roottest/root/io/evolution/versions/VecLong-2.ref64 +++ b/roottest/root/io/evolution/versions/VecLong-2.ref64 @@ -1,4 +1,3 @@ - Processing runVecLong.cxx(1,"2")... Print a vector of long long #0 10000000003 diff --git a/roottest/root/io/evolution/versions/execROOT7500.ref b/roottest/root/io/evolution/versions/execROOT7500.ref index 16b92f729aee1..5a070aee76f85 100644 --- a/roottest/root/io/evolution/versions/execROOT7500.ref +++ b/roottest/root/io/evolution/versions/execROOT7500.ref @@ -1,3 +1,2 @@ - Processing execROOT7500.cxx+... (int) 0 diff --git a/roottest/root/io/evolution/versions/lhcb/LHCb.ref b/roottest/root/io/evolution/versions/lhcb/LHCb.ref index cba4a190c968d..030dda76500ee 100644 --- a/roottest/root/io/evolution/versions/lhcb/LHCb.ref +++ b/roottest/root/io/evolution/versions/lhcb/LHCb.ref @@ -1,4 +1,3 @@ - Processing runLHCb.C... Warning in : no dictionary for class PoolDbLinkManager is available Warning in : no dictionary for class LHCb::GenHeader is available diff --git a/roottest/root/io/fakeClass/checkLittle.ref b/roottest/root/io/fakeClass/checkLittle.ref index 92f0cd803ce92..a8664544206cc 100644 --- a/roottest/root/io/fakeClass/checkLittle.ref +++ b/roottest/root/io/fakeClass/checkLittle.ref @@ -1,4 +1,3 @@ - Processing checkLittle.C... Warning in : no dictionary for class wrapper is available Warning in : no dictionary for class little is available diff --git a/roottest/root/io/fakeClass/checkLittle0.ref b/roottest/root/io/fakeClass/checkLittle0.ref index 820fd776b7ec2..88014c40691ff 100644 --- a/roottest/root/io/fakeClass/checkLittle0.ref +++ b/roottest/root/io/fakeClass/checkLittle0.ref @@ -1,4 +1,3 @@ - Processing checkLittle0.C... Warning in : The StreamerInfo of class wrapper read from file little.root diff --git a/roottest/root/io/fakeClass/checkLittle1.ref b/roottest/root/io/fakeClass/checkLittle1.ref index 4f59970f200ae..78a1ac5387376 100644 --- a/roottest/root/io/fakeClass/checkLittle1.ref +++ b/roottest/root/io/fakeClass/checkLittle1.ref @@ -1,4 +1,3 @@ - Processing checkLittle1.C... Warning in : no dictionary for class wrapper is available Warning in : no dictionary for class little is available diff --git a/roottest/root/io/fakeClass/forwardDeclAndFake.ref b/roottest/root/io/fakeClass/forwardDeclAndFake.ref index 2881b7b180426..9f35779878203 100644 --- a/roottest/root/io/fakeClass/forwardDeclAndFake.ref +++ b/roottest/root/io/fakeClass/forwardDeclAndFake.ref @@ -1,4 +1,3 @@ - Processing t01.C... Warning in : no dictionary for class Event is available Warning in : no dictionary for class EventHeader is available diff --git a/roottest/root/io/fakeClass/printLittle.ref b/roottest/root/io/fakeClass/printLittle.ref index d9b38a330f406..0f49c44d0b1ff 100644 --- a/roottest/root/io/fakeClass/printLittle.ref +++ b/roottest/root/io/fakeClass/printLittle.ref @@ -1,4 +1,3 @@ - Processing printLittle.C... StreamerInfo for class: little, checksum=0xf2470c06 diff --git a/roottest/root/io/filemerger/execKeyOrder.ref b/roottest/root/io/filemerger/execKeyOrder.ref index 22ff64e9bf52b..23c7512b7309b 100644 --- a/roottest/root/io/filemerger/execKeyOrder.ref +++ b/roottest/root/io/filemerger/execKeyOrder.ref @@ -1,4 +1,3 @@ - Processing roottest/root/io/filemerger/execKeyOrder.C... TFile** inputKeyOrder.root TFile* inputKeyOrder.root diff --git a/roottest/root/io/filemerger/references/execCreateAndMerge.ref b/roottest/root/io/filemerger/references/execCreateAndMerge.ref index 5c57cd7a8d319..6ee6f8fe37b02 100644 --- a/roottest/root/io/filemerger/references/execCreateAndMerge.ref +++ b/roottest/root/io/filemerger/references/execCreateAndMerge.ref @@ -1,4 +1,3 @@ - Processing execCreateAndMerge.C... 4 a files created 4 b files created diff --git a/roottest/root/io/filemerger/references/execFileMerger.ref b/roottest/root/io/filemerger/references/execFileMerger.ref index b3b2e1f5a7bd6..ab363af0ff494 100644 --- a/roottest/root/io/filemerger/references/execFileMerger.ref +++ b/roottest/root/io/filemerger/references/execFileMerger.ref @@ -1,3 +1,2 @@ - Processing execFileMerger.C... (int) 0 diff --git a/roottest/root/io/filemerger/references/execMergeMulti.ref b/roottest/root/io/filemerger/references/execMergeMulti.ref index 84c443696f877..290a630ef9bdf 100644 --- a/roottest/root/io/filemerger/references/execMergeMulti.ref +++ b/roottest/root/io/filemerger/references/execMergeMulti.ref @@ -1,2 +1 @@ - Processing execMergeMulti.C... diff --git a/roottest/root/io/float16/float16.ref b/roottest/root/io/float16/float16.ref index 062bb9e689558..ee0f0c3635f51 100644 --- a/roottest/root/io/float16/float16.ref +++ b/roottest/root/io/float16/float16.ref @@ -1,2 +1 @@ - Processing runfloat16.C+... diff --git a/roottest/root/io/geo/execParse.ref b/roottest/root/io/geo/execParse.ref index 684cfc411b127..8428a111dc721 100644 --- a/roottest/root/io/geo/execParse.ref +++ b/roottest/root/io/geo/execParse.ref @@ -1,4 +1,3 @@ - Processing execParse.cxx+... Info in : Reading geometry from file: dune10kt_v1_workspace.gdml Info in : Geometry GDMLImport, Geometry imported from GDML created diff --git a/roottest/root/io/geo/readGeo.ref b/roottest/root/io/geo/readGeo.ref index cb3fefb079353..3785ac1fa8e3a 100644 --- a/roottest/root/io/geo/readGeo.ref +++ b/roottest/root/io/geo/readGeo.ref @@ -1,4 +1,3 @@ - Processing runreadGeo.C... Info in : Reading geometry from file: aleph.root Info in : Geometry loaded from file... diff --git a/roottest/root/io/hadd/hadd_check_nested_same_name.ref b/roottest/root/io/hadd/hadd_check_nested_same_name.ref index bc2216a0a3aeb..688cdc176db69 100644 --- a/roottest/root/io/hadd/hadd_check_nested_same_name.ref +++ b/roottest/root/io/hadd/hadd_check_nested_same_name.ref @@ -1,5 +1,4 @@ Processing hadd_check_nested_same_name.C... - 1 10 100 + 1 10 100 ------------ diff --git a/roottest/root/io/heritstl/baseString.ref b/roottest/root/io/heritstl/baseString.ref index a15d0eeda885a..cdae31b73b50a 100644 --- a/roottest/root/io/heritstl/baseString.ref +++ b/roottest/root/io/heritstl/baseString.ref @@ -1,2 +1 @@ - Processing runbaseString.C+... diff --git a/roottest/root/io/heritstl/minostest.ref b/roottest/root/io/heritstl/minostest.ref index 362af42206ca6..ca13e4a94a219 100644 --- a/roottest/root/io/heritstl/minostest.ref +++ b/roottest/root/io/heritstl/minostest.ref @@ -1,4 +1,3 @@ - Processing runminostest.C... StreamerInfo for class: SEIdAltL, version=3, checksum=0x289e7bdc diff --git a/roottest/root/io/ignoretobject/IgnoreTObject.ref b/roottest/root/io/ignoretobject/IgnoreTObject.ref index bedbf2e749d63..a33791c6ec873 100644 --- a/roottest/root/io/ignoretobject/IgnoreTObject.ref +++ b/roottest/root/io/ignoretobject/IgnoreTObject.ref @@ -1,4 +1,3 @@ - Processing runIgnoreTObject.C+... name: br1.fX id: 1 (int) 0 diff --git a/roottest/root/io/interface/Toplevel.ref b/roottest/root/io/interface/Toplevel.ref index a947e23260c55..5545d551765f7 100644 --- a/roottest/root/io/interface/Toplevel.ref +++ b/roottest/root/io/interface/Toplevel.ref @@ -1,4 +1,3 @@ - Processing runToplevel.C... Good: Did properly load myclass with value 33 Good: Did properly load TH1F with 11 entries. diff --git a/roottest/root/io/interface/currentFileKey.ref b/roottest/root/io/interface/currentFileKey.ref index 6e2f4651e557f..d495ba56e7a42 100644 --- a/roottest/root/io/interface/currentFileKey.ref +++ b/roottest/root/io/interface/currentFileKey.ref @@ -1,4 +1,3 @@ - Processing runcurrentFileKey.C... Warning in : no dictionary for class MyClass is available TFile** output.root diff --git a/roottest/root/io/issue-7754/mwe/read_mwe_0.ref b/roottest/root/io/issue-7754/mwe/read_mwe_0.ref index 08484e59a6e49..2ca7596ed0c24 100644 --- a/roottest/root/io/issue-7754/mwe/read_mwe_0.ref +++ b/roottest/root/io/issue-7754/mwe/read_mwe_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class TCedarEvent is available Warning in : no dictionary for class TCedarHit is available Warning in : no dictionary for class TVChannelID is available diff --git a/roottest/root/io/issue-7754/mwe/read_mwe_1.ref b/roottest/root/io/issue-7754/mwe/read_mwe_1.ref index 75a860229d468..56550f2cd2f72 100644 --- a/roottest/root/io/issue-7754/mwe/read_mwe_1.ref +++ b/roottest/root/io/issue-7754/mwe/read_mwe_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class Stream is available Warning in : no dictionary for class MCInfo is available Warning in : no dictionary for class RecoInfo is available diff --git a/roottest/root/io/issue-7754/read_cmssw_class_v3.ref b/roottest/root/io/issue-7754/read_cmssw_class_v3.ref index a749853a206b4..407d69ea7457c 100644 --- a/roottest/root/io/issue-7754/read_cmssw_class_v3.ref +++ b/roottest/root/io/issue-7754/read_cmssw_class_v3.ref @@ -1,4 +1,3 @@ - Processing roottest/root/io/issue-7754/read_cmssw_class_v3.cxx+... Holder has 1 value. Content.fBefore (transient): 0 diff --git a/roottest/root/io/issue-7754/write_cmssw_class_v2.ref b/roottest/root/io/issue-7754/write_cmssw_class_v2.ref index 0dc7ee3c57959..2c4e37ace67d7 100644 --- a/roottest/root/io/issue-7754/write_cmssw_class_v2.ref +++ b/roottest/root/io/issue-7754/write_cmssw_class_v2.ref @@ -1,4 +1,3 @@ - Processing roottest/root/io/issue-7754/write_cmssw_class_v2.cxx+... Holder has 1 value. Content.fBefore (transient): 1 diff --git a/roottest/root/io/issue-9899/read_cmssw_class_v3.ref b/roottest/root/io/issue-9899/read_cmssw_class_v3.ref index eb144d6cd1295..63abbe0f79de6 100644 --- a/roottest/root/io/issue-9899/read_cmssw_class_v3.ref +++ b/roottest/root/io/issue-9899/read_cmssw_class_v3.ref @@ -1,3 +1,2 @@ - Processing read_cmssw_class_v3.cxx+... (int) 0 diff --git a/roottest/root/io/issue-9899/write_cmssw_class_v2.ref b/roottest/root/io/issue-9899/write_cmssw_class_v2.ref index 598223dfd5e33..bb862db4bd46e 100644 --- a/roottest/root/io/issue-9899/write_cmssw_class_v2.ref +++ b/roottest/root/io/issue-9899/write_cmssw_class_v2.ref @@ -1,3 +1,2 @@ - Processing write_cmssw_class_v2.cxx+... (int) 0 diff --git a/roottest/root/io/json/ArrayCompress.ref b/roottest/root/io/json/ArrayCompress.ref index f4975b1961b82..b7ec8849bd04c 100644 --- a/roottest/root/io/json/ArrayCompress.ref +++ b/roottest/root/io/json/ArrayCompress.ref @@ -1,4 +1,3 @@ - Processing runArrayCompress.C... Plain and compressed array [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99] diff --git a/roottest/root/io/json/BasicTypes.ref b/roottest/root/io/json/BasicTypes.ref index 36f1992cfc06d..4f141a0003c8d 100644 --- a/roottest/root/io/json/BasicTypes.ref +++ b/roottest/root/io/json/BasicTypes.ref @@ -1,4 +1,3 @@ - Processing runBasicTypes.C... ====== basic data types TJsonEx1 ===== TJsonEx1 store/read/store MATCHED len1:159 len2:159 diff --git a/roottest/root/io/json/Map.ref b/roottest/root/io/json/Map.ref index a192524e97ef5..cf6e79e3177ed 100644 --- a/roottest/root/io/json/Map.ref +++ b/roottest/root/io/json/Map.ref @@ -1,4 +1,3 @@ - Processing runMap.C... DEFAULT: [{"$pair" : "pair", "first" : "field0", "second" : 0}, {"$pair" : "pair", "first" : "field1", "second" : 7}, {"$pair" : "pair", "first" : "field2", "second" : 14}, {"$pair" : "pair", "first" : "field3", "second" : 21}, {"$pair" : "pair", "first" : "field4", "second" : 28}, {"$pair" : "pair", "first" : "field5", "second" : 35}, {"$pair" : "pair", "first" : "field6", "second" : 42}, {"$pair" : "pair", "first" : "field7", "second" : 49}, {"$pair" : "pair", "first" : "field8", "second" : 56}, {"$pair" : "pair", "first" : "field9", "second" : 63}] Data matches diff --git a/roottest/root/io/json/Objects.ref b/roottest/root/io/json/Objects.ref index a8e5f59bdc672..25b449616e041 100644 --- a/roottest/root/io/json/Objects.ref +++ b/roottest/root/io/json/Objects.ref @@ -1,4 +1,3 @@ - Processing runObjects.C... ====== objects as class members TJsonEx5 ===== TJsonEx5 store/read/store MATCHED len1:4000 len2:4000 diff --git a/roottest/root/io/json/PolyMarker.ref b/roottest/root/io/json/PolyMarker.ref index f5a15d2b021c1..7d2820282b5a0 100644 --- a/roottest/root/io/json/PolyMarker.ref +++ b/roottest/root/io/json/PolyMarker.ref @@ -1,4 +1,3 @@ - Processing runPolyMarker.C... { "_typename" : "TPolyMarker3D", diff --git a/roottest/root/io/json/RootClasses.ref b/roottest/root/io/json/RootClasses.ref index b5ac050be4988..5c5eb15d04fb6 100644 --- a/roottest/root/io/json/RootClasses.ref +++ b/roottest/root/io/json/RootClasses.ref @@ -1,4 +1,3 @@ - Processing runRootClasses.C... ====== TObject representation ===== TObject store/read/store MATCHED len1:63 len2:63 diff --git a/roottest/root/io/json/STL.ref b/roottest/root/io/json/STL.ref index 5ea7c432860c9..7f26c73710a90 100644 --- a/roottest/root/io/json/STL.ref +++ b/roottest/root/io/json/STL.ref @@ -1,4 +1,3 @@ - Processing runSTL.C... ====== different STL containers TJsonEx7 ===== TJsonEx7 store/read/store MATCHED len1:19577 len2:19577 diff --git a/roottest/root/io/json/STL0.ref b/roottest/root/io/json/STL0.ref index f99ff429a0ee9..4ffe420a237c2 100644 --- a/roottest/root/io/json/STL0.ref +++ b/roottest/root/io/json/STL0.ref @@ -1,4 +1,3 @@ - Processing runSTL0.C... ====== different STL containers TJsonEx7 (len=0) ===== TJsonEx7 store/read/store MATCHED len1:1538 len2:1538 diff --git a/roottest/root/io/json/STL1.ref b/roottest/root/io/json/STL1.ref index 4f959300a14de..7c57208d721e8 100644 --- a/roottest/root/io/json/STL1.ref +++ b/roottest/root/io/json/STL1.ref @@ -1,4 +1,3 @@ - Processing runSTL1.C... ====== different STL containers TJsonEx7 (len=1) ===== TJsonEx7 store/read/store MATCHED len1:5936 len2:5936 diff --git a/roottest/root/io/json/StreamerLoop.ref b/roottest/root/io/json/StreamerLoop.ref index d7a8bda715685..27dc288ba9c50 100644 --- a/roottest/root/io/json/StreamerLoop.ref +++ b/roottest/root/io/json/StreamerLoop.ref @@ -1,4 +1,3 @@ - Processing runStreamerLoop.C... ====== kStreamerLoop members with Counter==0 TJsonEx9 ===== TJsonEx9 store/read/store MATCHED len1:484 len2:484 diff --git a/roottest/root/io/json/String.ref b/roottest/root/io/json/String.ref index afa391c2583fa..e55fcc5db3f73 100644 --- a/roottest/root/io/json/String.ref +++ b/roottest/root/io/json/String.ref @@ -1,4 +1,3 @@ - Processing runString.C... ====== string data types TJsonEx4 ===== TJsonEx4 store/read/store MATCHED len1:646 len2:646 diff --git a/roottest/root/io/multipleInherit/run.ref b/roottest/root/io/multipleInherit/run.ref index 17d0124a769be..ee83cac30a39e 100644 --- a/roottest/root/io/multipleInherit/run.ref +++ b/roottest/root/io/multipleInherit/run.ref @@ -1,4 +1,3 @@ - Processing re.C... Obj#0 class name TPaveStats Obj#1 class name TMrbNamedArrayI diff --git a/roottest/root/io/multipleInherit/write.ref b/roottest/root/io/multipleInherit/write.ref index 17d2a19e32ca6..2570ad61a6069 100644 --- a/roottest/root/io/multipleInherit/write.ref +++ b/roottest/root/io/multipleInherit/write.ref @@ -1,2 +1 @@ - Processing wr.C... diff --git a/roottest/root/io/multizip/primary.ref b/roottest/root/io/multizip/primary.ref index bae8e373c13b7..09fd0abea7e5a 100644 --- a/roottest/root/io/multizip/primary.ref +++ b/roottest/root/io/multizip/primary.ref @@ -1,4 +1,3 @@ - Processing runprimary.C... TFile** multi.zip#1 TFile* multi.zip#1 diff --git a/roottest/root/io/newClassDef/current/current_test.ref b/roottest/root/io/newClassDef/current/current_test.ref index 708e2fd1e29ee..0250bbcc4272a 100644 --- a/roottest/root/io/newClassDef/current/current_test.ref +++ b/roottest/root/io/newClassDef/current/current_test.ref @@ -1,4 +1,3 @@ - Processing Run.C... Will write the objects Will read the objects diff --git a/roottest/root/io/newClassDef/featuretest/run.ref b/roottest/root/io/newClassDef/featuretest/run.ref index 91fcb8923fdb8..7a2f6d6c19e9c 100644 --- a/roottest/root/io/newClassDef/featuretest/run.ref +++ b/roottest/root/io/newClassDef/featuretest/run.ref @@ -1,4 +1,3 @@ - Processing Run.C... Expect A: A Expect B: B diff --git a/roottest/root/io/newClassDef/new/newTest.ref b/roottest/root/io/newClassDef/new/newTest.ref index 5aff2c42dadba..110e0e5fa7495 100644 --- a/roottest/root/io/newClassDef/new/newTest.ref +++ b/roottest/root/io/newClassDef/new/newTest.ref @@ -1,4 +1,3 @@ - Processing Run.C... Will test writing to a file Will write the objects diff --git a/roottest/root/io/newdelete/good.output b/roottest/root/io/newdelete/good.output index 9bd4cf64016f9..86ac5fdb69ee6 100644 --- a/roottest/root/io/newdelete/good.output +++ b/roottest/root/io/newdelete/good.output @@ -1,4 +1,3 @@ - Processing runClasses.C... Error in : cannot create object of class Nodefault deleting a Nodefault 10 diff --git a/roottest/root/io/newstl/ComplexTest.ref b/roottest/root/io/newstl/ComplexTest.ref index 4e79efb526872..3c1f04e9c7408 100644 --- a/roottest/root/io/newstl/ComplexTest.ref +++ b/roottest/root/io/newstl/ComplexTest.ref @@ -1,4 +1,3 @@ - Processing runComplexTest.C... The complex object was set properly: 3 6 diff --git a/roottest/root/io/newstl/Emulvector.ref b/roottest/root/io/newstl/Emulvector.ref index e1eb2c04b862d..c47085075ee5a 100644 --- a/roottest/root/io/newstl/Emulvector.ref +++ b/roottest/root/io/newstl/Emulvector.ref @@ -1,4 +1,3 @@ - Processing runEmulvector.C... *********************************************************************** * Row * Instance * evtNr.evt * runNr.run * tag * itag * diff --git a/roottest/root/io/newstl/base.ref b/roottest/root/io/newstl/base.ref index fddd127f3698b..d3f1b6479f510 100644 --- a/roottest/root/io/newstl/base.ref +++ b/roottest/root/io/newstl/base.ref @@ -1,2 +1 @@ - Processing runbase.C+... diff --git a/roottest/root/io/newstl/emptyCollection.ref b/roottest/root/io/newstl/emptyCollection.ref index a91062d5d462b..f9eadf5faaec2 100644 --- a/roottest/root/io/newstl/emptyCollection.ref +++ b/roottest/root/io/newstl/emptyCollection.ref @@ -1,4 +1,3 @@ - Processing runemptyCollection.C... In event: 0 diff --git a/roottest/root/io/newstl/emulvector.root.ref b/roottest/root/io/newstl/emulvector.root.ref index 8173f55e9125e..cff01ec39fca7 100644 --- a/roottest/root/io/newstl/emulvector.root.ref +++ b/roottest/root/io/newstl/emulvector.root.ref @@ -1,4 +1,3 @@ - Processing writetest_emulvector.C... *********************************************************************** * Row * Instance * evtNr.evt * runNr.run * tag * itag * diff --git a/roottest/root/io/newstl/execBitset.ref b/roottest/root/io/newstl/execBitset.ref index d34c89a79fdc9..d6e1159095ea8 100644 --- a/roottest/root/io/newstl/execBitset.ref +++ b/roottest/root/io/newstl/execBitset.ref @@ -1,4 +1,3 @@ - Processing execBitset.cxx+... i: 0 val: false i: 1 val: true diff --git a/roottest/root/io/newstl/execMemberWise.ref b/roottest/root/io/newstl/execMemberWise.ref index 1ac306acfeeb2..17a973fb11b69 100644 --- a/roottest/root/io/newstl/execMemberWise.ref +++ b/roottest/root/io/newstl/execMemberWise.ref @@ -1,4 +1,3 @@ - Processing execMemberWise.cxx+... Reading in object-wise mode Reading member : fOne index: 1 diff --git a/roottest/root/io/newstl/execPospelovPrintFile.ref b/roottest/root/io/newstl/execPospelovPrintFile.ref index fac84781b8e34..5d11252664edd 100644 --- a/roottest/root/io/newstl/execPospelovPrintFile.ref +++ b/roottest/root/io/newstl/execPospelovPrintFile.ref @@ -1,4 +1,3 @@ - Processing execPospelovPrintFile.C... Data has 1 areas defined Area 0 has title Classification and 6 dimensions diff --git a/roottest/root/io/newstl/execStlPtrLeak.ref b/roottest/root/io/newstl/execStlPtrLeak.ref index cefaae620a635..f1ff76c7dca39 100644 --- a/roottest/root/io/newstl/execStlPtrLeak.ref +++ b/roottest/root/io/newstl/execStlPtrLeak.ref @@ -1,4 +1,3 @@ - Processing execStlPtrLeak.cxx+... writing tree creating serial:1 counter:1 diff --git a/roottest/root/io/newstl/stlIoTest.ref b/roottest/root/io/newstl/stlIoTest.ref index 9f9b92c920f53..95ca169f3ed46 100644 --- a/roottest/root/io/newstl/stlIoTest.ref +++ b/roottest/root/io/newstl/stlIoTest.ref @@ -1,4 +1,3 @@ - Processing srun.C("roottest/root/io/newstl/")... Running test rvec ROOT does not support variable size array of stl containers diff --git a/roottest/root/io/newstl/stlIoTestMac.ref b/roottest/root/io/newstl/stlIoTestMac.ref index f27bf5e039499..a5288087ef6f6 100644 --- a/roottest/root/io/newstl/stlIoTestMac.ref +++ b/roottest/root/io/newstl/stlIoTestMac.ref @@ -1,4 +1,3 @@ - Processing srun.C("roottest/root/io/newstl/")... Running test rvec ROOT does not support variable size array of stl containers diff --git a/roottest/root/io/perf/slowreading/Read.ref b/roottest/root/io/perf/slowreading/Read.ref index 959c43f522495..6f09cf686387e 100644 --- a/roottest/root/io/perf/slowreading/Read.ref +++ b/roottest/root/io/perf/slowreading/Read.ref @@ -1,4 +1,3 @@ - Processing Read.C... ************************************************ diff --git a/roottest/root/io/pointers/Canvases.ref b/roottest/root/io/pointers/Canvases.ref index 2c6cbf7ee8f4d..dc95514f05940 100644 --- a/roottest/root/io/pointers/Canvases.ref +++ b/roottest/root/io/pointers/Canvases.ref @@ -1,4 +1,3 @@ - Processing runCanvases.C... twocanvas...................................... OK (int) 0 diff --git a/roottest/root/io/pointers/restoreCanvas.ref b/roottest/root/io/pointers/restoreCanvas.ref index 7524eac531361..44fb93b266ff2 100644 --- a/roottest/root/io/pointers/restoreCanvas.ref +++ b/roottest/root/io/pointers/restoreCanvas.ref @@ -1,4 +1,3 @@ - Processing restoreCanvas.C... Info in : Seen 1 monitored object being deleted and 0 object left undeleted. Warning in : The frame is set as 'kCanDelete' diff --git a/roottest/root/io/prefetching/PrefetchReading.ref b/roottest/root/io/prefetching/PrefetchReading.ref index 9db57d4517b01..4f90d81611c62 100644 --- a/roottest/root/io/prefetching/PrefetchReading.ref +++ b/roottest/root/io/prefetching/PrefetchReading.ref @@ -1,4 +1,3 @@ - Processing runPrefetchReading.C+... Starting to load the library Starting to open the file diff --git a/roottest/root/io/recover/empty.ref b/roottest/root/io/recover/empty.ref index 0d899726e6e94..f927bd4c56391 100644 --- a/roottest/root/io/recover/empty.ref +++ b/roottest/root/io/recover/empty.ref @@ -1,4 +1,3 @@ - Processing runempty.C... diff --git a/roottest/root/io/references/actions/test.ref b/roottest/root/io/references/actions/test.ref index a1cd50969754f..cc552b2cd8c91 100644 --- a/roottest/root/io/references/actions/test.ref +++ b/roottest/root/io/references/actions/test.ref @@ -1,4 +1,3 @@ - Processing test.C... fBits settings A: 0x3010000 fBits settings B: 0x3010000 diff --git a/roottest/root/io/references/actions/test1.ref b/roottest/root/io/references/actions/test1.ref index dce18a6c7939a..a9df0a3bc5741 100644 --- a/roottest/root/io/references/actions/test1.ref +++ b/roottest/root/io/references/actions/test1.ref @@ -1,4 +1,3 @@ - Processing test1.C... ****************************************** fBits settings A: 0x3010000 diff --git a/roottest/root/io/references/actions/test2.ref b/roottest/root/io/references/actions/test2.ref index d530e28370b30..adeceef0e8c23 100644 --- a/roottest/root/io/references/actions/test2.ref +++ b/roottest/root/io/references/actions/test2.ref @@ -1,4 +1,3 @@ - Processing test2.C... fBits settings B: 0x3010000 Readback for testB->GetRef() diff --git a/roottest/root/io/references/actions/test3.ref b/roottest/root/io/references/actions/test3.ref index 5676d7131d483..5f297eb6fa6b2 100644 --- a/roottest/root/io/references/actions/test3.ref +++ b/roottest/root/io/references/actions/test3.ref @@ -1,4 +1,3 @@ - Processing test3.C... Readback for testB->GetRef() Calling GetRef() from class: B diff --git a/roottest/root/io/references/execRefArrayCompress.ref b/roottest/root/io/references/execRefArrayCompress.ref index c1ca7604abb78..4603f27645a47 100644 --- a/roottest/root/io/references/execRefArrayCompress.ref +++ b/roottest/root/io/references/execRefArrayCompress.ref @@ -1,4 +1,3 @@ - Processing execRefArrayCompress.C... Warning in : no dictionary for class Top is available Warning in : no dictionary for class ObjA is available diff --git a/roottest/root/io/references/execWriteRefArrayCompress.ref b/roottest/root/io/references/execWriteRefArrayCompress.ref index 60027a4b0e353..a4f80846dac39 100644 --- a/roottest/root/io/references/execWriteRefArrayCompress.ref +++ b/roottest/root/io/references/execWriteRefArrayCompress.ref @@ -1,3 +1,2 @@ - Processing execWriteRefArrayCompress.cxx+... (int) 0 diff --git a/roottest/root/io/references/lotsRef.ref b/roottest/root/io/references/lotsRef.ref index 8228b26b4d8ba..937b6092ba542 100644 --- a/roottest/root/io/references/lotsRef.ref +++ b/roottest/root/io/references/lotsRef.ref @@ -1,3 +1,2 @@ - Processing runlotsRef.C... Found the referenced object diff --git a/roottest/root/io/references/lotsRef1.ref b/roottest/root/io/references/lotsRef1.ref index 4fac73012bf24..278a91fb58d00 100644 --- a/roottest/root/io/references/lotsRef1.ref +++ b/roottest/root/io/references/lotsRef1.ref @@ -1,3 +1,2 @@ - Processing lotsRef.C+(1)... Found the referenced object diff --git a/roottest/root/io/references/refarray.ref b/roottest/root/io/references/refarray.ref index 410d917d666a6..6cdb27e85263a 100644 --- a/roottest/root/io/references/refarray.ref +++ b/roottest/root/io/references/refarray.ref @@ -1,4 +1,3 @@ - Processing refarray.C+... Error in : The object at_na_is not registered in the process the TRefArray points to (pid = na Error in : The object at_na_is not registered in the process the TRefArray points to (pid = na diff --git a/roottest/root/io/rootcint/cltest.ref b/roottest/root/io/rootcint/cltest.ref index 0c77963933357..04161f8cdeeb9 100644 --- a/roottest/root/io/rootcint/cltest.ref +++ b/roottest/root/io/rootcint/cltest.ref @@ -1,2 +1 @@ - Processing cltest.C+... diff --git a/roottest/root/io/rootcint/execTemplateExpr.ref b/roottest/root/io/rootcint/execTemplateExpr.ref index acc20dbb46a4d..54b048b724a60 100644 --- a/roottest/root/io/rootcint/execTemplateExpr.ref +++ b/roottest/root/io/rootcint/execTemplateExpr.ref @@ -1,4 +1,3 @@ - Processing execTemplateExpr.C... Parentage's name is edm::Hash<2> (int) 0 diff --git a/roottest/root/io/rootcint/nestedtemplate.ref b/roottest/root/io/rootcint/nestedtemplate.ref index 84f688eb62d93..858f3a49a187f 100644 --- a/roottest/root/io/rootcint/nestedtemplate.ref +++ b/roottest/root/io/rootcint/nestedtemplate.ref @@ -1,2 +1 @@ - Processing runnestedtemplate.C... diff --git a/roottest/root/io/rootcint/templateKeyword.ref b/roottest/root/io/rootcint/templateKeyword.ref index 6a53f9a11318a..ed12f6310fef6 100644 --- a/roottest/root/io/rootcint/templateKeyword.ref +++ b/roottest/root/io/rootcint/templateKeyword.ref @@ -1,2 +1 @@ - Processing runtemplateKeyword.C... diff --git a/roottest/root/io/rootcint/virtualbase.ref b/roottest/root/io/rootcint/virtualbase.ref index 807bc718ebbd6..b94d2d4bfa7b4 100644 --- a/roottest/root/io/rootcint/virtualbase.ref +++ b/roottest/root/io/rootcint/virtualbase.ref @@ -1,2 +1 @@ - Processing runvirtualbase.C... diff --git a/roottest/root/io/set/setLong64Test.ref b/roottest/root/io/set/setLong64Test.ref index 9f34b8606b1ab..5c56faee59cbe 100644 --- a/roottest/root/io/set/setLong64Test.ref +++ b/roottest/root/io/set/setLong64Test.ref @@ -1,2 +1 @@ - Processing runSetProblem.C... diff --git a/roottest/root/io/simple/cstring.ref b/roottest/root/io/simple/cstring.ref index 0321d58373551..041971a10e7f0 100644 --- a/roottest/root/io/simple/cstring.ref +++ b/roottest/root/io/simple/cstring.ref @@ -1,2 +1 @@ - Processing runcstring.C... diff --git a/roottest/root/io/stdarray/aclic00.ref b/roottest/root/io/stdarray/aclic00.ref index a37706ba659fb..6720ba9d571a8 100644 --- a/roottest/root/io/stdarray/aclic00.ref +++ b/roottest/root/io/stdarray/aclic00.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/stdarray/aclic00.C+... Info in : creating shared library /home/dpiparo/RootDevel/Root6/head/build/roottest/root/io/stdarray/aclic00_C.so Class edm0::A state is kInterpreted diff --git a/roottest/root/io/stdarray/aclic01.ref b/roottest/root/io/stdarray/aclic01.ref index a19361f3759f6..bc90a7f66e495 100644 --- a/roottest/root/io/stdarray/aclic01.ref +++ b/roottest/root/io/stdarray/aclic01.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/stdarray/aclic01.C+... Class edm1::A state is kHasTClassInit List of data members of edm1::A diff --git a/roottest/root/io/stdarray/aclic03.ref b/roottest/root/io/stdarray/aclic03.ref index 984b31f1bbad4..757e1792008b6 100644 --- a/roottest/root/io/stdarray/aclic03.ref +++ b/roottest/root/io/stdarray/aclic03.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/stdarray/aclic03.C+... Class edm3::A state is kHasTClassInit List of data members of edm3::A diff --git a/roottest/root/io/stdarray/checkRealData.ref b/roottest/root/io/stdarray/checkRealData.ref index af1ee3b9a5568..c63ae8ff559e1 100644 --- a/roottest/root/io/stdarray/checkRealData.ref +++ b/roottest/root/io/stdarray/checkRealData.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/stdarray/checkRealData.C... B Real Data 0 a offset 0 B Real Data 1 b[3] offset 4 diff --git a/roottest/root/io/stdarray/checkRealData.ref32 b/roottest/root/io/stdarray/checkRealData.ref32 index f96d7312c3218..65c4d4c38930f 100644 --- a/roottest/root/io/stdarray/checkRealData.ref32 +++ b/roottest/root/io/stdarray/checkRealData.ref32 @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/stdarray/checkRealData.C... B Real Data 0 a offset 0 B Real Data 1 b[3] offset 4 diff --git a/roottest/root/io/stdarray/modelReadDict.ref b/roottest/root/io/stdarray/modelReadDict.ref index 70eaaeb1444a1..d4e8e9fb3b508 100644 --- a/roottest/root/io/stdarray/modelReadDict.ref +++ b/roottest/root/io/stdarray/modelReadDict.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/stdarray/modelReadDict.C+... Class edm2::A state is kHasTClassInit List of data members of edm2::A diff --git a/roottest/root/io/stdarray/modelReadDict2.ref b/roottest/root/io/stdarray/modelReadDict2.ref index f12a7b91d51da..1d5e688fe5ba9 100644 --- a/roottest/root/io/stdarray/modelReadDict2.ref +++ b/roottest/root/io/stdarray/modelReadDict2.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/stdarray/modelReadDict2.C("model.root")... Warning in : no dictionary for class edm2::A is available Warning in : no dictionary for class edm2::B is available diff --git a/roottest/root/io/stdarray/modelReadNoDict.ref b/roottest/root/io/stdarray/modelReadNoDict.ref index 37615be2ea3b9..4832b133d64da 100644 --- a/roottest/root/io/stdarray/modelReadNoDict.ref +++ b/roottest/root/io/stdarray/modelReadNoDict.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/stdarray/modelReadNoDict.C... Warning in : no dictionary for class edm2::A is available Warning in : no dictionary for class edm2::B is available diff --git a/roottest/root/io/stdarray/namesAnalysis.ref b/roottest/root/io/stdarray/namesAnalysis.ref index e075bba1c609f..654bb853b327f 100644 --- a/roottest/root/io/stdarray/namesAnalysis.ref +++ b/roottest/root/io/stdarray/namesAnalysis.ref @@ -1,4 +1,3 @@ - Processing /Users/danilopiparo/RootDevel/Root6/head/roottest/root/io/stdarray/namesAnalysis.C... Class "C,array>" is not an STL array array: diff --git a/roottest/root/io/stdarray/testArrOfTemplateInst.ref b/roottest/root/io/stdarray/testArrOfTemplateInst.ref index 9990a444f0849..3b3be5d60540a 100644 --- a/roottest/root/io/stdarray/testArrOfTemplateInst.ref +++ b/roottest/root/io/stdarray/testArrOfTemplateInst.ref @@ -1,3 +1,2 @@ - Processing /Users/danilopiparo/RootDevel/Root6/head/roottest/root/io/stdarray/testArrOfTemplateInst.C+... (int) 0 diff --git a/roottest/root/io/stdpair/pairEnumEvo_0_0_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_0_0_0_0.ref index 49c0308f8afb4..ee0a002804a72 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_0_0_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_0_0_0_0.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_0_0_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_0_0_0_1.ref index 49c0308f8afb4..ee0a002804a72 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_0_0_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_0_0_0_1.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_0_0_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_0_0_1_0.ref index 8366a6af43a34..e5cc944c2f451 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_0_0_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_0_0_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_0_0_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_0_0_1_1.ref index eeb708ca987c7..1d749301499c5 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_0_0_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_0_0_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_0_1_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_0_1_0_0.ref index 49c0308f8afb4..ee0a002804a72 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_0_1_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_0_1_0_0.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_0_1_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_0_1_0_1.ref index 49c0308f8afb4..ee0a002804a72 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_0_1_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_0_1_0_1.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_0_1_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_0_1_1_0.ref index 8366a6af43a34..e5cc944c2f451 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_0_1_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_0_1_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_0_1_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_0_1_1_1.ref index eeb708ca987c7..1d749301499c5 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_0_1_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_0_1_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_1_0_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_1_0_0_0.ref index 49c0308f8afb4..ee0a002804a72 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_1_0_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_1_0_0_0.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_1_0_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_1_0_0_1.ref index 49c0308f8afb4..ee0a002804a72 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_1_0_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_1_0_0_1.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_1_0_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_1_0_1_0.ref index 8366a6af43a34..e5cc944c2f451 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_1_0_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_1_0_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_1_0_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_1_0_1_1.ref index eeb708ca987c7..1d749301499c5 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_1_0_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_1_0_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_1_1_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_1_1_0_0.ref index 49c0308f8afb4..ee0a002804a72 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_1_1_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_1_1_0_0.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_1_1_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_1_1_0_1.ref index 49c0308f8afb4..ee0a002804a72 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_1_1_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_1_1_0_1.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_1_1_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_1_1_1_0.ref index 8366a6af43a34..e5cc944c2f451 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_1_1_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_1_1_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_1_1_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_1_1_1_1.ref index eeb708ca987c7..1d749301499c5 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_1_1_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_1_1_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_0_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_2_0_0_0.ref index 449a56f55c977..fbb71f3a264d8 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_0_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_2_0_0_0.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_0_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_2_0_0_1.ref index 715182c192f8a..8973bc2d15e04 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_0_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_2_0_0_1.ref @@ -1,4 +1,3 @@ - Warning in : pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > >: edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > has no streamer or dictionary, data member "second" will not be saved Last verifications: diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref index b3cbc3d2ff390..45a487fc4e6cc 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref32 b/roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref32 index 99cbe9192d69b..061b0daf76289 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_2_0_1_0.ref32 @@ -1,4 +1,3 @@ - Processing /home/sftnight/build/workspace/manual/roottest/root/io/stdpair/pairEnumEvo.C(2,0,1,0)... Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref index 6c93645c5f03e..ae26c5ffe5ce3 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref32 b/roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref32 index 716ec4b594db1..a72d94212963c 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_2_0_1_1.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_1_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_2_1_0_0.ref index 449a56f55c977..fbb71f3a264d8 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_1_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_2_1_0_0.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_1_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_2_1_0_1.ref index 715182c192f8a..8973bc2d15e04 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_1_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_2_1_0_1.ref @@ -1,4 +1,3 @@ - Warning in : pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > >: edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > has no streamer or dictionary, data member "second" will not be saved Last verifications: diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref index b3cbc3d2ff390..45a487fc4e6cc 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref32 b/roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref32 index 4be4ce158a355..f4500cbff9ad2 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_2_1_1_0.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref index 6c93645c5f03e..ae26c5ffe5ce3 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref32 b/roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref32 index 716ec4b594db1..a72d94212963c 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_2_1_1_1.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_3_0_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_3_0_0_0.ref index 0e0c655acad74..9afadd1d468c3 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_3_0_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_3_0_0_0.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_3_0_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_3_0_0_1.ref index fe68e79aae380..af71ff153da5c 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_3_0_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_3_0_0_1.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_3_0_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_3_0_1_0.ref index 680b487f42345..ae79ac894c267 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_3_0_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_3_0_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_3_0_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_3_0_1_1.ref index b750cc7b9a612..ffeb862f8e61e 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_3_0_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_3_0_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_3_1_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_3_1_0_0.ref index 0e0c655acad74..9afadd1d468c3 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_3_1_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_3_1_0_0.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_3_1_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_3_1_0_1.ref index fe68e79aae380..af71ff153da5c 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_3_1_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_3_1_0_1.ref @@ -1,5 +1,4 @@ - Last verifications: Current StreamerInfo: diff --git a/roottest/root/io/stdpair/pairEnumEvo_3_1_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_3_1_1_0.ref index 680b487f42345..ae79ac894c267 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_3_1_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_3_1_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_3_1_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_3_1_1_1.ref index b750cc7b9a612..ffeb862f8e61e 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_3_1_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_3_1_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref index b3cbc3d2ff390..45a487fc4e6cc 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref32 b/roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref32 index 4be4ce158a355..f4500cbff9ad2 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_4_0_0_0.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref index 6c93645c5f03e..ae26c5ffe5ce3 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref32 b/roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref32 index 716ec4b594db1..a72d94212963c 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_4_0_0_1.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref index b3cbc3d2ff390..45a487fc4e6cc 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref32 b/roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref32 index 4be4ce158a355..f4500cbff9ad2 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_4_0_1_0.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref index 6c93645c5f03e..ae26c5ffe5ce3 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref32 b/roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref32 index 716ec4b594db1..a72d94212963c 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_4_0_1_1.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref b/roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref index b3cbc3d2ff390..45a487fc4e6cc 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref32 b/roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref32 index 4be4ce158a355..f4500cbff9ad2 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_4_1_0_0.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref b/roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref index 6c93645c5f03e..ae26c5ffe5ce3 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref32 b/roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref32 index 716ec4b594db1..a72d94212963c 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_4_1_0_1.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref b/roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref index b3cbc3d2ff390..45a487fc4e6cc 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref32 b/roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref32 index 4be4ce158a355..f4500cbff9ad2 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_4_1_1_0.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref b/roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref index 6c93645c5f03e..ae26c5ffe5ce3 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref +++ b/roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref32 b/roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref32 index 716ec4b594db1..a72d94212963c 100644 --- a/roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref32 +++ b/roottest/root/io/stdpair/pairEnumEvo_4_1_1_1.ref32 @@ -1,4 +1,3 @@ - Warning in : no dictionary for class edm::Ref,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > is available Warning in : no dictionary for class pair,reco::Track,edm::refhelper::FindUsingAdvance,reco::Track> > > is available Warning in : no dictionary for class edm::RefCoreWithIndex is available diff --git a/roottest/root/io/tclass/TestTClassGlobalIsA.ref b/roottest/root/io/tclass/TestTClassGlobalIsA.ref index b7e9c9797bb06..39ea9b09c3cc7 100644 --- a/roottest/root/io/tclass/TestTClassGlobalIsA.ref +++ b/roottest/root/io/tclass/TestTClassGlobalIsA.ref @@ -1,4 +1,3 @@ - Processing TestTClassGlobalIsA.C+... Running with fIsA Running without fIsA diff --git a/roottest/root/io/tclass/execInterpActualClass.ref b/roottest/root/io/tclass/execInterpActualClass.ref index bd392dbde31bd..df36e908251dc 100644 --- a/roottest/root/io/tclass/execInterpActualClass.ref +++ b/roottest/root/io/tclass/execInterpActualClass.ref @@ -1,4 +1,3 @@ - Processing execInterpActualClass.C... For pair >, got pair > For vector >, got vector > diff --git a/roottest/root/io/tmpifile/references/split.ref b/roottest/root/io/tmpifile/references/split.ref index d639c90695895..5052223d79485 100644 --- a/roottest/root/io/tmpifile/references/split.ref +++ b/roottest/root/io/tmpifile/references/split.ref @@ -1,4 +1,3 @@ - Processing split.C... Processing split.C... diff --git a/roottest/root/io/transient/base/execWriteFile.ref b/roottest/root/io/transient/base/execWriteFile.ref index 479872d98c70f..2968fbdb5c5d2 100644 --- a/roottest/root/io/transient/base/execWriteFile.ref +++ b/roottest/root/io/transient/base/execWriteFile.ref @@ -1,4 +1,3 @@ - Processing execWriteFile.cxx+... Stored 42.00! Retrieved 42.00! diff --git a/roottest/root/io/transient/base/execWriteFile_win32.ref b/roottest/root/io/transient/base/execWriteFile_win32.ref index 8a1d05ed87160..619fdc0401e28 100644 --- a/roottest/root/io/transient/base/execWriteFile_win32.ref +++ b/roottest/root/io/transient/base/execWriteFile_win32.ref @@ -1,4 +1,3 @@ - Processing execWriteFile.cxx+... Stored 42.00! diff --git a/roottest/root/io/transient/base/execWriteFile_win64.ref b/roottest/root/io/transient/base/execWriteFile_win64.ref index 8a1d05ed87160..619fdc0401e28 100644 --- a/roottest/root/io/transient/base/execWriteFile_win64.ref +++ b/roottest/root/io/transient/base/execWriteFile_win64.ref @@ -1,4 +1,3 @@ - Processing execWriteFile.cxx+... Stored 42.00! diff --git a/roottest/root/io/transient/execAtomTransient.ref b/roottest/root/io/transient/execAtomTransient.ref index 48cf474fd2041..bf89a283e298c 100644 --- a/roottest/root/io/transient/execAtomTransient.ref +++ b/roottest/root/io/transient/execAtomTransient.ref @@ -1,3 +1,2 @@ - Processing execAtomTransient.cxx+... (int) 0 diff --git a/roottest/root/io/transient/execDoxygenTransient.ref b/roottest/root/io/transient/execDoxygenTransient.ref index e8ec6b848026a..d0158b355763e 100644 --- a/roottest/root/io/transient/execDoxygenTransient.ref +++ b/roottest/root/io/transient/execDoxygenTransient.ref @@ -1,3 +1,2 @@ - Processing execDoxygenTransient.cxx+... (int) 0 diff --git a/roottest/root/io/transient/execDoxygenTransientInterp.ref b/roottest/root/io/transient/execDoxygenTransientInterp.ref index 4d2f65539f6dd..a6698c6e8d8c8 100644 --- a/roottest/root/io/transient/execDoxygenTransientInterp.ref +++ b/roottest/root/io/transient/execDoxygenTransientInterp.ref @@ -1,3 +1,2 @@ - Processing execDoxygenTransientInterp.C... (int) 0 diff --git a/roottest/root/io/transient/execNew.ref b/roottest/root/io/transient/execNew.ref index 4cad5c43b4c9c..934692cec9d79 100644 --- a/roottest/root/io/transient/execNew.ref +++ b/roottest/root/io/transient/execNew.ref @@ -1,3 +1,2 @@ - Processing execNew.cxx+... fOld = 6, fKeep = 3 diff --git a/roottest/root/io/transient/execOld.ref b/roottest/root/io/transient/execOld.ref index 6e810a9ccabca..5b22948febce0 100644 --- a/roottest/root/io/transient/execOld.ref +++ b/roottest/root/io/transient/execOld.ref @@ -1,3 +1,2 @@ - Processing execOld.cxx+... fOld = 6, fKeep = 3 diff --git a/roottest/root/io/transient/execTransientNoctor.ref b/roottest/root/io/transient/execTransientNoctor.ref index 6a06728e45a1e..9362355ac0756 100644 --- a/roottest/root/io/transient/execTransientNoctor.ref +++ b/roottest/root/io/transient/execTransientNoctor.ref @@ -1,4 +1,3 @@ - Processing execTransientNoctor.C... StreamerInfo for class: MyClass, checksum=0x173ec diff --git a/roottest/root/io/transient/missingdict.ref b/roottest/root/io/transient/missingdict.ref index 34d47dd24fcf9..482e25cb91be5 100644 --- a/roottest/root/io/transient/missingdict.ref +++ b/roottest/root/io/transient/missingdict.ref @@ -1,2 +1 @@ - Processing runmissingdict.C... diff --git a/roottest/root/io/transient/transientTest.ref b/roottest/root/io/transient/transientTest.ref index bd74ce3ba1b93..e3716bbe3e1d1 100644 --- a/roottest/root/io/transient/transientTest.ref +++ b/roottest/root/io/transient/transientTest.ref @@ -1,2 +1 @@ - Processing run.C... diff --git a/roottest/root/io/tree/missingClass.ref b/roottest/root/io/tree/missingClass.ref index f523ce6b000a0..a4e6b32b6a3ac 100644 --- a/roottest/root/io/tree/missingClass.ref +++ b/roottest/root/io/tree/missingClass.ref @@ -1,4 +1,3 @@ - Processing read.C... Warning in : no dictionary for class TEmcl is available Warning in : no dictionary for class TPhysObj is available diff --git a/roottest/root/io/tree/reftest.ref b/roottest/root/io/tree/reftest.ref index 625c4f50251b0..575bbe12c0220 100644 --- a/roottest/root/io/tree/reftest.ref +++ b/roottest/root/io/tree/reftest.ref @@ -1,4 +1,3 @@ - Processing tref_test_rd.C... bits: 3000018 bits: 3000008 diff --git a/roottest/root/io/tree/test-r.ref b/roottest/root/io/tree/test-r.ref index 66b18a17f4bce..a9834ba3727c3 100644 --- a/roottest/root/io/tree/test-r.ref +++ b/roottest/root/io/tree/test-r.ref @@ -1,4 +1,3 @@ - Processing run.C... TTP r1_N_0_0_0 ref: N_0_8 TTP r1_N_0_0_0 ref: N_0_8 GOOD! diff --git a/roottest/root/io/tree/test-rc.ref b/roottest/root/io/tree/test-rc.ref index fa1b5a84c18a0..a1e29ec4b0ade 100644 --- a/roottest/root/io/tree/test-rc.ref +++ b/roottest/root/io/tree/test-rc.ref @@ -1,4 +1,3 @@ - Processing run.C... TTP r1_N_0_0_0 ref: N_0_8 TTP r1_N_0_0_0 ref: N_0_8 GOOD! diff --git a/roottest/root/io/tree/test-rcr.ref b/roottest/root/io/tree/test-rcr.ref index 1a4081c9377fd..c3e753c17869f 100644 --- a/roottest/root/io/tree/test-rcr.ref +++ b/roottest/root/io/tree/test-rcr.ref @@ -1,4 +1,3 @@ - Processing run.C... TTP r1_N_0_0_0 ref: N_0_8 TTP r1_N_0_0_0 ref: N_0_8 GOOD! diff --git a/roottest/root/io/tree/test-rcr2.ref b/roottest/root/io/tree/test-rcr2.ref index d0c0e0acbc434..6911feef261c9 100644 --- a/roottest/root/io/tree/test-rcr2.ref +++ b/roottest/root/io/tree/test-rcr2.ref @@ -1,4 +1,3 @@ - Processing run.C... TTP r2_r1_0_0_0 ref: r1_N_0_8_8 TTP r2_r1_0_0_0 ref: r1_N_0_8_8 GOOD! diff --git a/roottest/root/io/tree/test-rcrr.ref b/roottest/root/io/tree/test-rcrr.ref index 5eca4a508e7a4..59ee8cb1a2284 100644 --- a/roottest/root/io/tree/test-rcrr.ref +++ b/roottest/root/io/tree/test-rcrr.ref @@ -1,4 +1,3 @@ - Processing run.C... TTP r1_N_0_0_0 ref: N_0_8 TTP r1_N_0_0_0 ref: N_0_8 GOOD! diff --git a/roottest/root/io/tree/test-rcrr123.ref b/roottest/root/io/tree/test-rcrr123.ref index 7a7c4e0763e85..f073c4ef52284 100644 --- a/roottest/root/io/tree/test-rcrr123.ref +++ b/roottest/root/io/tree/test-rcrr123.ref @@ -1,4 +1,3 @@ - Processing run.C... TTP r1_N_0_0_0 ref: N_0_8 TTP r1_N_0_0_0 ref: N_0_8 GOOD! diff --git a/roottest/root/io/tree/test-rcrr2.ref b/roottest/root/io/tree/test-rcrr2.ref index 789d9a39a8f79..10cae6eb4fd73 100644 --- a/roottest/root/io/tree/test-rcrr2.ref +++ b/roottest/root/io/tree/test-rcrr2.ref @@ -1,4 +1,3 @@ - Processing run.C... TTP r2_r1_0_0_0 ref: r1_N_0_8_8 TTP r2_r1_0_0_0 ref: r1_N_0_8_8 GOOD! diff --git a/roottest/root/io/tree/test-rcrr3.ref b/roottest/root/io/tree/test-rcrr3.ref index 9f4f5d2c416a7..f306358750c0e 100644 --- a/roottest/root/io/tree/test-rcrr3.ref +++ b/roottest/root/io/tree/test-rcrr3.ref @@ -1,4 +1,3 @@ - Processing run.C... TTP r3_N_0_0_0 ref: N_0_8 TTP r3_N_0_0_0 ref: N_0_8 GOOD! diff --git a/roottest/root/io/treeForeign/fulloutput.ref b/roottest/root/io/treeForeign/fulloutput.ref index 2c22f8fee1a50..52940d7ba5de7 100644 --- a/roottest/root/io/treeForeign/fulloutput.ref +++ b/roottest/root/io/treeForeign/fulloutput.ref @@ -1,4 +1,3 @@ - Processing Run.C... Warning in : no dictionary for class Wrapper is available Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/treeForeign/testForeignDrawLZ4.ref b/roottest/root/io/treeForeign/testForeignDrawLZ4.ref index e24f158e7db24..4b7f94090ef0a 100644 --- a/roottest/root/io/treeForeign/testForeignDrawLZ4.ref +++ b/roottest/root/io/treeForeign/testForeignDrawLZ4.ref @@ -1,4 +1,3 @@ - Processing Run.C... Warning in : no dictionary for class Wrapper is available Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/treeForeign/testForeignDrawZLIB.ref b/roottest/root/io/treeForeign/testForeignDrawZLIB.ref index 010d04742c2ee..154805466c60b 100644 --- a/roottest/root/io/treeForeign/testForeignDrawZLIB.ref +++ b/roottest/root/io/treeForeign/testForeignDrawZLIB.ref @@ -1,4 +1,3 @@ - Processing /local2/pcanal/cint_working/rootcling/root-ninja/roottest/root/io/treeForeign/Run.C... Warning in : no dictionary for class Wrapper is available Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/treeForeign/testForeignDrawZLIB_builtinzlib.ref b/roottest/root/io/treeForeign/testForeignDrawZLIB_builtinzlib.ref index f2abc1e38b523..0d43aa3fb3bd3 100644 --- a/roottest/root/io/treeForeign/testForeignDrawZLIB_builtinzlib.ref +++ b/roottest/root/io/treeForeign/testForeignDrawZLIB_builtinzlib.ref @@ -1,4 +1,3 @@ - Processing /home/oksana/CERN_sources/root/roottest/root/io/treeForeign/Run.C... Warning in : no dictionary for class Wrapper is available Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/io/treeproblem/reader.ref b/roottest/root/io/treeproblem/reader.ref index bcc844be7ecc7..f9dfd43e60ba7 100644 --- a/roottest/root/io/treeproblem/reader.ref +++ b/roottest/root/io/treeproblem/reader.ref @@ -1,4 +1,3 @@ - Processing reader.C... Foo # 0,0: 0 Foo # 0,1: 1 diff --git a/roottest/root/io/treeproblem/writer.ref b/roottest/root/io/treeproblem/writer.ref index a39acb2e2becd..96b5f74dcd89f 100644 --- a/roottest/root/io/treeproblem/writer.ref +++ b/roottest/root/io/treeproblem/writer.ref @@ -1,4 +1,3 @@ - Processing writer.C... ****************************************************************************** *Tree :tree : tree * diff --git a/roottest/root/io/tuple/execTuple.ref b/roottest/root/io/tuple/execTuple.ref index 1bba5ee1fa045..5408dd63fcfea 100644 --- a/roottest/root/io/tuple/execTuple.ref +++ b/roottest/root/io/tuple/execTuple.ref @@ -1,4 +1,3 @@ - Processing execTuple.cxx+... Writing tuple.root Reading tuple.root diff --git a/roottest/root/io/uniquePointer/aclic01.ref b/roottest/root/io/uniquePointer/aclic01.ref index 047b3c65bfdd9..a968576c0c4ec 100644 --- a/roottest/root/io/uniquePointer/aclic01.ref +++ b/roottest/root/io/uniquePointer/aclic01.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/uniquePointer/aclic01.C+... Class aclic01Class01 has a dictionary Class vector has a dictionary diff --git a/roottest/root/io/uniquePointer/checkDictionaries.ref b/roottest/root/io/uniquePointer/checkDictionaries.ref index 1d47a00a640bb..2f4665ef8576d 100644 --- a/roottest/root/io/uniquePointer/checkDictionaries.ref +++ b/roottest/root/io/uniquePointer/checkDictionaries.ref @@ -1,4 +1,3 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/uniquePointer/checkDictionaries.C... Class Class01 has a dictionary Class Class02 has a dictionary diff --git a/roottest/root/io/uniquePointer/simpleRead.ref b/roottest/root/io/uniquePointer/simpleRead.ref index 6bd153ab49081..3c8683024c438 100644 --- a/roottest/root/io/uniquePointer/simpleRead.ref +++ b/roottest/root/io/uniquePointer/simpleRead.ref @@ -1,4 +1,3 @@ - Processing /Users/pcanal/root_working/roottest/root/io/uniquePointer/rw.C(0)... Reading out.root [Read Row-wise] Histogram RowWise information: diff --git a/roottest/root/io/uniquePointer/simpleReadconst.ref b/roottest/root/io/uniquePointer/simpleReadconst.ref index c752fa43972e7..34855c253f8cb 100644 --- a/roottest/root/io/uniquePointer/simpleReadconst.ref +++ b/roottest/root/io/uniquePointer/simpleReadconst.ref @@ -1,3 +1,2 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/uniquePointer/rwconst.C(0)... (int) 0 diff --git a/roottest/root/io/uniquePointer/simpleWriteRead.ref b/roottest/root/io/uniquePointer/simpleWriteRead.ref index e7dcf19f68a62..2956cd0803e25 100644 --- a/roottest/root/io/uniquePointer/simpleWriteRead.ref +++ b/roottest/root/io/uniquePointer/simpleWriteRead.ref @@ -1,4 +1,3 @@ - Processing /Users/pcanal/root_working/roottest/root/io/uniquePointer/rw.C... Writing out.root [Write Row-wise] Histogram RowWise information: diff --git a/roottest/root/io/uniquePointer/simpleWriteReadconst.ref b/roottest/root/io/uniquePointer/simpleWriteReadconst.ref index aab25e2b8feef..96f8048267588 100644 --- a/roottest/root/io/uniquePointer/simpleWriteReadconst.ref +++ b/roottest/root/io/uniquePointer/simpleWriteReadconst.ref @@ -1,3 +1,2 @@ - Processing /home/dpiparo/RootDevel/Root6/head/roottest/root/io/uniquePointer/rwconst.C... (int) 0 diff --git a/roottest/root/io/uniquePointer/streamerInfoError.eref b/roottest/root/io/uniquePointer/streamerInfoError.eref index 64ec5ff40052b..88f0dea3dafaa 100644 --- a/roottest/root/io/uniquePointer/streamerInfoError.eref +++ b/roottest/root/io/uniquePointer/streamerInfoError.eref @@ -1,4 +1,3 @@ - Processing roottest/root/io/uniquePointer/streamerInfoError.C... Error in : The class "B" is compiled and for its data member "l" we do not have a dictionary for the collection "list". Because of this, we will not be able to read or write this data member. Error in : The class "B" is compiled and for its data member "fl" we do not have a dictionary for the collection "forward_list". Because of this, we will not be able to read or write this data member. diff --git a/roottest/root/io/unordered_set/setLong64Test.ref b/roottest/root/io/unordered_set/setLong64Test.ref index 439df866b3ccb..6c1da200214bc 100644 --- a/roottest/root/io/unordered_set/setLong64Test.ref +++ b/roottest/root/io/unordered_set/setLong64Test.ref @@ -1,3 +1,2 @@ - Processing set_problem.cxx+... (int) 0 diff --git a/roottest/root/io/vararyobj/readvararypolyp.good b/roottest/root/io/vararyobj/readvararypolyp.good index 299df0b821012..848fb501f225f 100644 --- a/roottest/root/io/vararyobj/readvararypolyp.good +++ b/roottest/root/io/vararyobj/readvararypolyp.good @@ -1,4 +1,3 @@ - Processing runreadvararypolyp.C+... x: 3 n: 1 diff --git a/roottest/root/io/vararyobj/varyingArrayRead_51508.good b/roottest/root/io/vararyobj/varyingArrayRead_51508.good index 94b2be3dedfe1..4300808f40034 100644 --- a/roottest/root/io/vararyobj/varyingArrayRead_51508.good +++ b/roottest/root/io/vararyobj/varyingArrayRead_51508.good @@ -1,4 +1,3 @@ - Processing runvaryingArrayRead_51508.C+... fN: 3 fM: 5 diff --git a/roottest/root/io/webfile/CloseTWebFile.ref b/roottest/root/io/webfile/CloseTWebFile.ref index 971fc32e51770..3dee0dd405a26 100644 --- a/roottest/root/io/webfile/CloseTWebFile.ref +++ b/roottest/root/io/webfile/CloseTWebFile.ref @@ -1,2 +1 @@ - Processing runCloseTWebFile.C... diff --git a/roottest/root/io/withoutDictionaries/execIOWithoutDictionaries.oref b/roottest/root/io/withoutDictionaries/execIOWithoutDictionaries.oref index 847e0923f20aa..8727b1c3b59a3 100644 --- a/roottest/root/io/withoutDictionaries/execIOWithoutDictionaries.oref +++ b/roottest/root/io/withoutDictionaries/execIOWithoutDictionaries.oref @@ -1,4 +1,3 @@ - Processing execIOWithoutDictionaries.C... Row-wise streaming Column-wise streaming diff --git a/roottest/root/io/withoutDictionaries/execIOWithoutDictionaries.ref b/roottest/root/io/withoutDictionaries/execIOWithoutDictionaries.ref index 8e917c30c25da..9a8960263bdfe 100644 --- a/roottest/root/io/withoutDictionaries/execIOWithoutDictionaries.ref +++ b/roottest/root/io/withoutDictionaries/execIOWithoutDictionaries.ref @@ -1,4 +1,3 @@ - Processing execIOWithoutDictionaries.C... Error in : The class requested (vector) for the key name "cwd1Instances" is an instance of an stl collection and does not have a compiled CollectionProxy. Please generate the dictionary for this collection (vector). No data will be written. Error in : The class requested (vector) for the branch "cwd1Instances" is an instance of an stl collection and does not have a compiled CollectionProxy. Please generate the dictionary for this collection (vector) to avoid to write corrupted data. diff --git a/roottest/root/io/withoutDictionaries/execRowWiseNoProxyWarning.ref b/roottest/root/io/withoutDictionaries/execRowWiseNoProxyWarning.ref index 194394b7b84fe..d17920300f4c2 100644 --- a/roottest/root/io/withoutDictionaries/execRowWiseNoProxyWarning.ref +++ b/roottest/root/io/withoutDictionaries/execRowWiseNoProxyWarning.ref @@ -1,4 +1,3 @@ - Processing execRowWiseNoProxyWarning.C... Error in : The class requested (vector) for the key name "cVec" is an instance of an stl collection and does not have a compiled CollectionProxy. Please generate the dictionary for this collection (vector). No data will be written. Error in : The class requested (list) for the key name "cList" is an instance of an stl collection and does not have a compiled CollectionProxy. Please generate the dictionary for this collection (list). No data will be written. diff --git a/roottest/root/io/withoutDictionaries/execVectorDMWriteWithoutDictionary.ref b/roottest/root/io/withoutDictionaries/execVectorDMWriteWithoutDictionary.ref index a61a594ed564c..8afdf07dde326 100644 --- a/roottest/root/io/withoutDictionaries/execVectorDMWriteWithoutDictionary.ref +++ b/roottest/root/io/withoutDictionaries/execVectorDMWriteWithoutDictionary.ref @@ -1,4 +1,3 @@ - Processing roottest/root/io/withoutDictionaries/execVectorDMWriteWithoutDictionary.C... 1 5 diff --git a/roottest/root/io/xml/PolyMarker.ref b/roottest/root/io/xml/PolyMarker.ref index d4b8bdfc675f2..f0a7c54faf344 100644 --- a/roottest/root/io/xml/PolyMarker.ref +++ b/roottest/root/io/xml/PolyMarker.ref @@ -1,4 +1,3 @@ - Processing runPolyMarker.C... diff --git a/roottest/root/io/xml/XmlDir.ref b/roottest/root/io/xml/XmlDir.ref index aa750a1dba737..0a7fc8a946799 100644 --- a/roottest/root/io/xml/XmlDir.ref +++ b/roottest/root/io/xml/XmlDir.ref @@ -1,4 +1,3 @@ - Processing runXmlDir.C... dir1/obj1: name1 title1 dir1/dir2/obj2: name2 title2 diff --git a/roottest/root/io/xml/basicxml.ref b/roottest/root/io/xml/basicxml.ref index 4b5c045aab30f..831c81dff630f 100644 --- a/roottest/root/io/xml/basicxml.ref +++ b/roottest/root/io/xml/basicxml.ref @@ -1,4 +1,3 @@ - Processing runbasicxml.C... Doing TXmlEx1 - basic data types diff --git a/roottest/root/io/xml/enginexml.ref b/roottest/root/io/xml/enginexml.ref index 2268e34e2622b..034e17841c641 100644 --- a/roottest/root/io/xml/enginexml.ref +++ b/roottest/root/io/xml/enginexml.ref @@ -1,4 +1,3 @@ - Processing runenginexml.C... node: main node: child1 diff --git a/roottest/root/io/xml/execSaxParserSimple.ref b/roottest/root/io/xml/execSaxParserSimple.ref index c409285ef436a..2b556bbfc089e 100644 --- a/roottest/root/io/xml/execSaxParserSimple.ref +++ b/roottest/root/io/xml/execSaxParserSimple.ref @@ -1,4 +1,3 @@ - Processing execSaxParserSimple.C... diff --git a/roottest/root/io/xml/filexml.ref b/roottest/root/io/xml/filexml.ref index e80a917773f28..0f311d1c6d312 100644 --- a/roottest/root/io/xml/filexml.ref +++ b/roottest/root/io/xml/filexml.ref @@ -1,4 +1,3 @@ - Processing runfilexml.C... Writing objects to file ex1 = Ok diff --git a/roottest/root/math/mathmore/testLoadLibMathMore.ref b/roottest/root/math/mathmore/testLoadLibMathMore.ref index 1f4842e659788..07b13f98054fd 100644 --- a/roottest/root/math/mathmore/testLoadLibMathMore.ref +++ b/roottest/root/math/mathmore/testLoadLibMathMore.ref @@ -1,4 +1,3 @@ - Processing testLoadLibMathMore.C... Info in : libMathMore has been loaded. 1.59064 diff --git a/roottest/root/meta/GetMissingDictionaries.ref b/roottest/root/meta/GetMissingDictionaries.ref index c696f71a733bf..08eb4fbb514c4 100644 --- a/roottest/root/meta/GetMissingDictionaries.ref +++ b/roottest/root/meta/GetMissingDictionaries.ref @@ -1,4 +1,3 @@ - Processing runGetMissingDictionaries.C... No recursion: Warning in : no dictionary for class ArrayTry is available diff --git a/roottest/root/meta/InterpClassDef.ref b/roottest/root/meta/InterpClassDef.ref index f8b1c99b20630..7dd7556911ce7 100644 --- a/roottest/root/meta/InterpClassDef.ref +++ b/roottest/root/meta/InterpClassDef.ref @@ -1,3 +1,2 @@ - Processing runInterpClassDef.C... (int) 0 diff --git a/roottest/root/meta/InterpreterValue.ref b/roottest/root/meta/InterpreterValue.ref index b7df204444f33..bdc9d6fd32de4 100644 --- a/roottest/root/meta/InterpreterValue.ref +++ b/roottest/root/meta/InterpreterValue.ref @@ -1,4 +1,3 @@ - Processing runInterpreterValue.C... WithDtor(): 1 About to return a WithDtor diff --git a/roottest/root/meta/MakeProject/aliceesd.ref b/roottest/root/meta/MakeProject/aliceesd.ref index 3f4f7775518eb..793a0d51f3626 100644 --- a/roottest/root/meta/MakeProject/aliceesd.ref +++ b/roottest/root/meta/MakeProject/aliceesd.ref @@ -1,4 +1,3 @@ - Processing runaliceesd.C... Warning in : no dictionary for class AliFMDMap is available Warning in : no dictionary for class AliESDRun is available diff --git a/roottest/root/meta/MakeProject/atlasaod.ref b/roottest/root/meta/MakeProject/atlasaod.ref index db4215f869779..23b6290b8f4f1 100644 --- a/roottest/root/meta/MakeProject/atlasaod.ref +++ b/roottest/root/meta/MakeProject/atlasaod.ref @@ -1,4 +1,3 @@ - Processing runatlasaod.C... Warning in : no dictionary for class IOVMetaDataContainer_p1 is available Warning in : no dictionary for class IOVPayloadContainer_p1 is available diff --git a/roottest/root/meta/MakeProject/cms310.ref b/roottest/root/meta/MakeProject/cms310.ref index ed06191b53350..13ec986e7181f 100644 --- a/roottest/root/meta/MakeProject/cms310.ref +++ b/roottest/root/meta/MakeProject/cms310.ref @@ -1,4 +1,3 @@ - Processing runcms310.C... Warning in : no dictionary for class edm::FileFormatVersion is available Warning in : no dictionary for class edm::FileID is available diff --git a/roottest/root/meta/MakeProject/create_makeproject_examples.ref b/roottest/root/meta/MakeProject/create_makeproject_examples.ref index fbaf76d2f78be..edcd37e6a87ef 100644 --- a/roottest/root/meta/MakeProject/create_makeproject_examples.ref +++ b/roottest/root/meta/MakeProject/create_makeproject_examples.ref @@ -1,2 +1 @@ - (int) 0 diff --git a/roottest/root/meta/MakeProject/foreign.ref b/roottest/root/meta/MakeProject/foreign.ref index 037d2fdbfbc8f..9d39cc64021d4 100644 --- a/roottest/root/meta/MakeProject/foreign.ref +++ b/roottest/root/meta/MakeProject/foreign.ref @@ -1,4 +1,3 @@ - Processing runforeign.C... Warning in : no dictionary for class ndtf::FinalStateParticle is available MakeProject has generated 1 classes in foreign diff --git a/roottest/root/meta/MakeProject/foreign_win32.ref b/roottest/root/meta/MakeProject/foreign_win32.ref index fc21fa680602d..b8fd78ecdc181 100644 --- a/roottest/root/meta/MakeProject/foreign_win32.ref +++ b/roottest/root/meta/MakeProject/foreign_win32.ref @@ -1,4 +1,3 @@ - Processing runforeign.C... Warning in : no dictionary for class ndtf::FinalStateParticle is available diff --git a/roottest/root/meta/MakeProject/foreign_win64.ref b/roottest/root/meta/MakeProject/foreign_win64.ref index fc21fa680602d..b8fd78ecdc181 100644 --- a/roottest/root/meta/MakeProject/foreign_win64.ref +++ b/roottest/root/meta/MakeProject/foreign_win64.ref @@ -1,4 +1,3 @@ - Processing runforeign.C... Warning in : no dictionary for class ndtf::FinalStateParticle is available diff --git a/roottest/root/meta/MakeProject/stl_example.ref b/roottest/root/meta/MakeProject/stl_example.ref index 5ac17db5539da..d757dce0d5539 100644 --- a/roottest/root/meta/MakeProject/stl_example.ref +++ b/roottest/root/meta/MakeProject/stl_example.ref @@ -1,3 +1,2 @@ - Processing create_makeproject_examples.C... (int) 0 diff --git a/roottest/root/meta/MakeProject/stltest2.ref b/roottest/root/meta/MakeProject/stltest2.ref index 2c38f4ae0ab78..75fe4c003c498 100644 --- a/roottest/root/meta/MakeProject/stltest2.ref +++ b/roottest/root/meta/MakeProject/stltest2.ref @@ -1,3 +1,2 @@ - Processing runstltest2.C... (int) 0 diff --git a/roottest/root/meta/MakeProject/teststlCTEST.ref b/roottest/root/meta/MakeProject/teststlCTEST.ref index a9ec9964458a1..423914533f031 100644 --- a/roottest/root/meta/MakeProject/teststlCTEST.ref +++ b/roottest/root/meta/MakeProject/teststlCTEST.ref @@ -1,4 +1,3 @@ - Processing runstltest.C... Warning in : no dictionary for class SillyStlEvent is available MakeProject has generated 1 classes in stltest diff --git a/roottest/root/meta/MakeProject/teststlCTEST_win32.ref b/roottest/root/meta/MakeProject/teststlCTEST_win32.ref index c4d0b98350316..7a81693e74165 100644 --- a/roottest/root/meta/MakeProject/teststlCTEST_win32.ref +++ b/roottest/root/meta/MakeProject/teststlCTEST_win32.ref @@ -1,4 +1,3 @@ - Processing runstltest.C... Warning in : no dictionary for class SillyStlEvent is available diff --git a/roottest/root/meta/MakeProject/teststlCTEST_win64.ref b/roottest/root/meta/MakeProject/teststlCTEST_win64.ref index c4d0b98350316..7a81693e74165 100644 --- a/roottest/root/meta/MakeProject/teststlCTEST_win64.ref +++ b/roottest/root/meta/MakeProject/teststlCTEST_win64.ref @@ -1,4 +1,3 @@ - Processing runstltest.C... Warning in : no dictionary for class SillyStlEvent is available diff --git a/roottest/root/meta/MemberComments.ref b/roottest/root/meta/MemberComments.ref index 8400913ce23c6..ac6b3bc4e4872 100644 --- a/roottest/root/meta/MemberComments.ref +++ b/roottest/root/meta/MemberComments.ref @@ -1,4 +1,3 @@ - Processing runMemberComments.C... TH1F::Class()->GetListOfAllPublicDataMembers(): diff --git a/roottest/root/meta/MemberComments_win32.ref b/roottest/root/meta/MemberComments_win32.ref index 0e757f7949501..67d1da4cedd81 100644 --- a/roottest/root/meta/MemberComments_win32.ref +++ b/roottest/root/meta/MemberComments_win32.ref @@ -1,4 +1,3 @@ - Processing runMemberComments.C... TH1F::Class()->GetListOfAllPublicDataMembers(): diff --git a/roottest/root/meta/MemberComments_win64.ref b/roottest/root/meta/MemberComments_win64.ref index 0e757f7949501..67d1da4cedd81 100644 --- a/roottest/root/meta/MemberComments_win64.ref +++ b/roottest/root/meta/MemberComments_win64.ref @@ -1,4 +1,3 @@ - Processing runMemberComments.C... TH1F::Class()->GetListOfAllPublicDataMembers(): diff --git a/roottest/root/meta/PublicDataMembers.ref b/roottest/root/meta/PublicDataMembers.ref index a3d4955367e7d..8d49890f22b4d 100644 --- a/roottest/root/meta/PublicDataMembers.ref +++ b/roottest/root/meta/PublicDataMembers.ref @@ -1,3 +1,2 @@ - Processing /Users/pcanal/root_working/roottest/root/meta/runPublicDataMembers.C... (int) 0 diff --git a/roottest/root/meta/ROOT-10804/execROOT10804.oref b/roottest/root/meta/ROOT-10804/execROOT10804.oref index e6dcd23a34059..4d491c9cc7dd7 100644 --- a/roottest/root/meta/ROOT-10804/execROOT10804.oref +++ b/roottest/root/meta/ROOT-10804/execROOT10804.oref @@ -1,3 +1,2 @@ - Processing execROOT10804.C... (int) 0 diff --git a/roottest/root/meta/ROOT-5694/execLoadLibs.oref b/roottest/root/meta/ROOT-5694/execLoadLibs.oref index cabe73db43a28..4e9f024df73e0 100644 --- a/roottest/root/meta/ROOT-5694/execLoadLibs.oref +++ b/roottest/root/meta/ROOT-5694/execLoadLibs.oref @@ -1,3 +1,2 @@ - Processing execLoadLibs.C... (int) 0 diff --git a/roottest/root/meta/ROOT-5694/execLoadLibs.ref b/roottest/root/meta/ROOT-5694/execLoadLibs.ref index aa136994cd6d2..6f985cf34f760 100644 --- a/roottest/root/meta/ROOT-5694/execLoadLibs.ref +++ b/roottest/root/meta/ROOT-5694/execLoadLibs.ref @@ -1,4 +1,3 @@ - Processing execLoadLibs.C... Warning in : class A already in TClassTable (int) 0 diff --git a/roottest/root/meta/ROOT-7462/execInvalidDeclRecoveryCI.ref b/roottest/root/meta/ROOT-7462/execInvalidDeclRecoveryCI.ref index ad1ecc308df07..95549b73ac480 100644 --- a/roottest/root/meta/ROOT-7462/execInvalidDeclRecoveryCI.ref +++ b/roottest/root/meta/ROOT-7462/execInvalidDeclRecoveryCI.ref @@ -1,3 +1,2 @@ - Processing execInvalidDeclRecoveryCI.C... (int) 0 diff --git a/roottest/root/meta/ROOT-7462/execTest.ref b/roottest/root/meta/ROOT-7462/execTest.ref index bbd5fe7535b42..6e0d85d0c1bbb 100644 --- a/roottest/root/meta/ROOT-7462/execTest.ref +++ b/roottest/root/meta/ROOT-7462/execTest.ref @@ -1,4 +1,3 @@ - Processing execTest.C... Name of real 'variable' seen as: 'fContent.' Info: ClassInfo is not valid diff --git a/roottest/root/meta/ROOT-7462/execWriteFile.ref b/roottest/root/meta/ROOT-7462/execWriteFile.ref index 347c6e1180f37..b51c92e3b543d 100644 --- a/roottest/root/meta/ROOT-7462/execWriteFile.ref +++ b/roottest/root/meta/ROOT-7462/execWriteFile.ref @@ -1,2 +1 @@ - Processing execWriteFile.C... diff --git a/roottest/root/meta/SignalSlots.ref b/roottest/root/meta/SignalSlots.ref index 181bf50deaaa3..dc2ff75eabf0e 100644 --- a/roottest/root/meta/SignalSlots.ref +++ b/roottest/root/meta/SignalSlots.ref @@ -1,4 +1,3 @@ - Processing runSignalSlots.C... value set to 11 A: 0 diff --git a/roottest/root/meta/TEnum.ref b/roottest/root/meta/TEnum.ref index ba09cd60d13f8..e6f5211924d46 100644 --- a/roottest/root/meta/TEnum.ref +++ b/roottest/root/meta/TEnum.ref @@ -1,4 +1,3 @@ - Processing runTEnum.C... Enums in A::B::C: Collection name='TListOfEnums', class='TListOfEnums', size=2 diff --git a/roottest/root/meta/autoload.ref b/roottest/root/meta/autoload.ref index 0158a6ab3c168..a41c42da05d8d 100644 --- a/roottest/root/meta/autoload.ref +++ b/roottest/root/meta/autoload.ref @@ -1,2 +1 @@ - Processing runautoload.C... diff --git a/roottest/root/meta/autoload_win32.ref b/roottest/root/meta/autoload_win32.ref index f25d788a55787..9baa52c3ef2cc 100644 --- a/roottest/root/meta/autoload_win32.ref +++ b/roottest/root/meta/autoload_win32.ref @@ -1,5 +1,4 @@ Processing C:/Users/bellenot/github/roottest/root/meta/runautoload.C... - Error in : failure loading library libCore.so for NotReal Error in : failure loading library libCore.so for NotReal Error in : failure loading library libCore.so for NotReal diff --git a/roottest/root/meta/autoload_win64.ref b/roottest/root/meta/autoload_win64.ref index f25d788a55787..9baa52c3ef2cc 100644 --- a/roottest/root/meta/autoload_win64.ref +++ b/roottest/root/meta/autoload_win64.ref @@ -1,5 +1,4 @@ Processing C:/Users/bellenot/github/roottest/root/meta/runautoload.C... - Error in : failure loading library libCore.so for NotReal Error in : failure loading library libCore.so for NotReal Error in : failure loading library libCore.so for NotReal diff --git a/roottest/root/meta/autoloading/MissingEntriesROOT-5759.ref b/roottest/root/meta/autoloading/MissingEntriesROOT-5759.ref index 87c5f76fb36d5..29273aa8ea342 100644 --- a/roottest/root/meta/autoloading/MissingEntriesROOT-5759.ref +++ b/roottest/root/meta/autoloading/MissingEntriesROOT-5759.ref @@ -1,4 +1,3 @@ - Processing runFullMissingEntriesROOT-5759.C... input_line_FILTERED:1:10: fatal error: 'does_not_exist.h' file not found #include "does_not_exist.h" diff --git a/roottest/root/meta/autoloading/NestedClasses/execNestedClasses.ref b/roottest/root/meta/autoloading/NestedClasses/execNestedClasses.ref index c7310b1af8a76..f1db6dff47fcb 100644 --- a/roottest/root/meta/autoloading/NestedClasses/execNestedClasses.ref +++ b/roottest/root/meta/autoloading/NestedClasses/execNestedClasses.ref @@ -1,4 +1,3 @@ - Processing execNestedClasses.C... RootmapContent: { decls } diff --git a/roottest/root/meta/autoloading/NestedClasses/execNestedClasses_win32.ref b/roottest/root/meta/autoloading/NestedClasses/execNestedClasses_win32.ref index 638fe04dbea6d..77e56e237b10c 100644 --- a/roottest/root/meta/autoloading/NestedClasses/execNestedClasses_win32.ref +++ b/roottest/root/meta/autoloading/NestedClasses/execNestedClasses_win32.ref @@ -1,4 +1,3 @@ - Processing execNestedClasses.C... RootmapContent: { decls } diff --git a/roottest/root/meta/autoloading/NestedClasses/execNestedClasses_win64.ref b/roottest/root/meta/autoloading/NestedClasses/execNestedClasses_win64.ref index 638fe04dbea6d..77e56e237b10c 100644 --- a/roottest/root/meta/autoloading/NestedClasses/execNestedClasses_win64.ref +++ b/roottest/root/meta/autoloading/NestedClasses/execNestedClasses_win64.ref @@ -1,4 +1,3 @@ - Processing execNestedClasses.C... RootmapContent: { decls } diff --git a/roottest/root/meta/autoloading/NestedClasses/nestedTemplate.ref b/roottest/root/meta/autoloading/NestedClasses/nestedTemplate.ref index 8b137891791fe..e69de29bb2d1d 100644 --- a/roottest/root/meta/autoloading/NestedClasses/nestedTemplate.ref +++ b/roottest/root/meta/autoloading/NestedClasses/nestedTemplate.ref @@ -1 +0,0 @@ - diff --git a/roottest/root/meta/autoloading/avoidAutoParsing/avoidParsing.ref b/roottest/root/meta/autoloading/avoidAutoParsing/avoidParsing.ref index 8b137891791fe..e69de29bb2d1d 100644 --- a/roottest/root/meta/autoloading/avoidAutoParsing/avoidParsing.ref +++ b/roottest/root/meta/autoloading/avoidAutoParsing/avoidParsing.ref @@ -1 +0,0 @@ - diff --git a/roottest/root/meta/autoloading/classInNamespace/execClassInNamespace.ref b/roottest/root/meta/autoloading/classInNamespace/execClassInNamespace.ref index 61fcfc8f7e962..043ccf9262561 100644 --- a/roottest/root/meta/autoloading/classInNamespace/execClassInNamespace.ref +++ b/roottest/root/meta/autoloading/classInNamespace/execClassInNamespace.ref @@ -1,3 +1,2 @@ - Processing execClassInNamespace.C... Constructor of ns1::ns2::ns3::ns4::A! diff --git a/roottest/root/meta/autoloading/execAutoLoadEntriesAsSelected.ref b/roottest/root/meta/autoloading/execAutoLoadEntriesAsSelected.ref index 2e60504c89541..bb8701f31bfdf 100644 --- a/roottest/root/meta/autoloading/execAutoLoadEntriesAsSelected.ref +++ b/roottest/root/meta/autoloading/execAutoLoadEntriesAsSelected.ref @@ -1,3 +1,2 @@ - Processing execAutoLoadEntriesAsSelected.C... The name as written in the linkDef,ROOT::Math::DisplacementVector2D >, triggered autoloading and the tclass entry is identical to the one specified by the normalised name. diff --git a/roottest/root/meta/autoloading/execAutoloadOnInclusion.ref b/roottest/root/meta/autoloading/execAutoloadOnInclusion.ref index 2c5a5c657fcd3..c5e42f2f42b9e 100644 --- a/roottest/root/meta/autoloading/execAutoloadOnInclusion.ref +++ b/roottest/root/meta/autoloading/execAutoloadOnInclusion.ref @@ -1,3 +1,2 @@ - Processing execAutoloadOnInclusion.C... libHist.so already loaded through header inclusion! diff --git a/roottest/root/meta/autoloading/execTriggerTypedefs.ref b/roottest/root/meta/autoloading/execTriggerTypedefs.ref index de766ecc4a518..f26f8c8fef2c8 100644 --- a/roottest/root/meta/autoloading/execTriggerTypedefs.ref +++ b/roottest/root/meta/autoloading/execTriggerTypedefs.ref @@ -1,4 +1,3 @@ - Processing execTriggerTypedefs.C... Enum: TriggerObjectType - Constant TriggerL1Mu has value -81 diff --git a/roottest/root/meta/autoloading/execTypeinfo.ref b/roottest/root/meta/autoloading/execTypeinfo.ref index 259ddd2c5781c..78087dcb87aa2 100644 --- a/roottest/root/meta/autoloading/execTypeinfo.ref +++ b/roottest/root/meta/autoloading/execTypeinfo.ref @@ -1,3 +1,2 @@ - Processing execTypeinfo.cxx+... (int) 0 diff --git a/roottest/root/meta/autoloading/exectypeDefAutoloading.ref b/roottest/root/meta/autoloading/exectypeDefAutoloading.ref index 24f37cced4c33..655e7121b93a6 100644 --- a/roottest/root/meta/autoloading/exectypeDefAutoloading.ref +++ b/roottest/root/meta/autoloading/exectypeDefAutoloading.ref @@ -1,2 +1 @@ - Processing exectypeDefAutoloading.C... diff --git a/roottest/root/meta/autoloading/headerParsingOnDemand/execCheckComplexTypedefs.ref b/roottest/root/meta/autoloading/headerParsingOnDemand/execCheckComplexTypedefs.ref index ae107b6957436..835106861d176 100644 --- a/roottest/root/meta/autoloading/headerParsingOnDemand/execCheckComplexTypedefs.ref +++ b/roottest/root/meta/autoloading/headerParsingOnDemand/execCheckComplexTypedefs.ref @@ -1,3 +1,2 @@ - Processing execCheckComplexTypedefs.C... (int) 0 diff --git a/roottest/root/meta/autoloading/headerParsingOnDemand/execLDAPAttribute.ref b/roottest/root/meta/autoloading/headerParsingOnDemand/execLDAPAttribute.ref index e16a9cba218ca..af44b7faac5c4 100644 --- a/roottest/root/meta/autoloading/headerParsingOnDemand/execLDAPAttribute.ref +++ b/roottest/root/meta/autoloading/headerParsingOnDemand/execLDAPAttribute.ref @@ -1,2 +1 @@ - Processing execLDAPAttribute.C... diff --git a/roottest/root/meta/autoloading/headerParsingOnDemand/headerParsingOnDemand.ref b/roottest/root/meta/autoloading/headerParsingOnDemand/headerParsingOnDemand.ref index 24e87f4083604..36943e5f2cca4 100644 --- a/roottest/root/meta/autoloading/headerParsingOnDemand/headerParsingOnDemand.ref +++ b/roottest/root/meta/autoloading/headerParsingOnDemand/headerParsingOnDemand.ref @@ -1,4 +1,3 @@ - Processing runFullheaderParsingOnDemand.C... Class name myClass0 Info in : loaded library libFullheaderParsingOnDemand_dictrflx.so for myClass0 diff --git a/roottest/root/meta/autoloading/headerParsingOnDemand/scopedEnums.ref b/roottest/root/meta/autoloading/headerParsingOnDemand/scopedEnums.ref index d689782f05a75..e14cadb052aa5 100644 --- a/roottest/root/meta/autoloading/headerParsingOnDemand/scopedEnums.ref +++ b/roottest/root/meta/autoloading/headerParsingOnDemand/scopedEnums.ref @@ -1,4 +1,3 @@ - Processing runscopedEnums.C... OK: enumerator cond::IOVSequence::ScopeTypenot found OK: class cond::IOVSequence should not be in the list of classes diff --git a/roottest/root/meta/autoloading/templates/execTemplateAutoloading.ref b/roottest/root/meta/autoloading/templates/execTemplateAutoloading.ref index a3c7d9f3aa142..87b25c826fcae 100644 --- a/roottest/root/meta/autoloading/templates/execTemplateAutoloading.ref +++ b/roottest/root/meta/autoloading/templates/execTemplateAutoloading.ref @@ -1,3 +1,2 @@ - Processing execTemplateAutoloading.C... (int) 0 diff --git a/roottest/root/meta/callfunc/execResolveAt.ref b/roottest/root/meta/callfunc/execResolveAt.ref index 639811feb2a30..71c6352c0252a 100644 --- a/roottest/root/meta/callfunc/execResolveAt.ref +++ b/roottest/root/meta/callfunc/execResolveAt.ref @@ -1,4 +1,3 @@ - Processing execResolveAt.C... running resolve_at is valid vector<_Tp,_Alloc>::size_type: 0 diff --git a/roottest/root/meta/callfunc/memberFunc.ref b/roottest/root/meta/callfunc/memberFunc.ref index 91ae98d646b85..f15cf8850cbc3 100644 --- a/roottest/root/meta/callfunc/memberFunc.ref +++ b/roottest/root/meta/callfunc/memberFunc.ref @@ -1,4 +1,3 @@ - Processing runmemberFunc.C... Running through TInterpreter public interfaces... A::inlineNoArgsNoReturn diff --git a/roottest/root/meta/callfunc/simpleFunc.ref b/roottest/root/meta/callfunc/simpleFunc.ref index 6f396de0b669f..22ee39be1a86c 100644 --- a/roottest/root/meta/callfunc/simpleFunc.ref +++ b/roottest/root/meta/callfunc/simpleFunc.ref @@ -1,4 +1,3 @@ - Processing runsimpleFunc.C... Running through TInterpreter public interfaces... void VoidFuncNoArgs(). diff --git a/roottest/root/meta/clingTErrorDiagnostics.ref b/roottest/root/meta/clingTErrorDiagnostics.ref index a7aed3787def9..521deac58832f 100644 --- a/roottest/root/meta/clingTErrorDiagnostics.ref +++ b/roottest/root/meta/clingTErrorDiagnostics.ref @@ -1,4 +1,3 @@ - input_line_26:1:12: error: non-void function 'f1' should return a value [-Wreturn-mismatch] int f1() { return; } ^ diff --git a/roottest/root/meta/cmsUnload/case1.ref b/roottest/root/meta/cmsUnload/case1.ref index 7ee8ca0993f84..0dbfd15115872 100644 --- a/roottest/root/meta/cmsUnload/case1.ref +++ b/roottest/root/meta/cmsUnload/case1.ref @@ -1,2 +1 @@ - Processing runscript.C... diff --git a/roottest/root/meta/cmsUnload/case2.ref b/roottest/root/meta/cmsUnload/case2.ref index 034b1c4c17eca..cd1b61959db02 100644 --- a/roottest/root/meta/cmsUnload/case2.ref +++ b/roottest/root/meta/cmsUnload/case2.ref @@ -1,4 +1,3 @@ - Processing runscript.C... dest dest diff --git a/roottest/root/meta/cmsUnload/case3.ref b/roottest/root/meta/cmsUnload/case3.ref index a42649b57a485..51a0cd44e4067 100644 --- a/roottest/root/meta/cmsUnload/case3.ref +++ b/roottest/root/meta/cmsUnload/case3.ref @@ -1,4 +1,3 @@ - Processing runscript.C... dest The [almost] end. diff --git a/roottest/root/meta/cmsUnload/rmap-case1.ref b/roottest/root/meta/cmsUnload/rmap-case1.ref index 7ee8ca0993f84..0dbfd15115872 100644 --- a/roottest/root/meta/cmsUnload/rmap-case1.ref +++ b/roottest/root/meta/cmsUnload/rmap-case1.ref @@ -1,2 +1 @@ - Processing runscript.C... diff --git a/roottest/root/meta/cmsUnload/rmap-case2.ref b/roottest/root/meta/cmsUnload/rmap-case2.ref index 034b1c4c17eca..cd1b61959db02 100644 --- a/roottest/root/meta/cmsUnload/rmap-case2.ref +++ b/roottest/root/meta/cmsUnload/rmap-case2.ref @@ -1,4 +1,3 @@ - Processing runscript.C... dest dest diff --git a/roottest/root/meta/cmsUnload/rmap-case3.ref b/roottest/root/meta/cmsUnload/rmap-case3.ref index a42649b57a485..51a0cd44e4067 100644 --- a/roottest/root/meta/cmsUnload/rmap-case3.ref +++ b/roottest/root/meta/cmsUnload/rmap-case3.ref @@ -1,4 +1,3 @@ - Processing runscript.C... dest The [almost] end. diff --git a/roottest/root/meta/dictSelection/execAtlasTest.ref b/roottest/root/meta/dictSelection/execAtlasTest.ref index 36ddf439e149f..b4a7a5b126aee 100644 --- a/roottest/root/meta/dictSelection/execAtlasTest.ref +++ b/roottest/root/meta/dictSelection/execAtlasTest.ref @@ -1,4 +1,3 @@ - Processing execAtlasTest.C... Checking normalisation of names: std::string --> string diff --git a/roottest/root/meta/dictSelection/execAtlasTest2.ref b/roottest/root/meta/dictSelection/execAtlasTest2.ref index f5b5cebab0bf9..75396369d4b6a 100644 --- a/roottest/root/meta/dictSelection/execAtlasTest2.ref +++ b/roottest/root/meta/dictSelection/execAtlasTest2.ref @@ -1,4 +1,3 @@ - Processing execAtlasTest2.C... Members of class Atlas::ClassA - Atlas::ClassB* m_variable; // persistent = Yes diff --git a/roottest/root/meta/dictSelection/execDictSelection.ref b/roottest/root/meta/dictSelection/execDictSelection.ref index 362a34cab393a..ccc761ab5e1bd 100644 --- a/roottest/root/meta/dictSelection/execDictSelection.ref +++ b/roottest/root/meta/dictSelection/execDictSelection.ref @@ -1,4 +1,3 @@ - Processing execDictSelection.C... *** Stress TClass with DictSelection *** Loading library libclassesDictSelection_dictrflx diff --git a/roottest/root/meta/enums/execEnumsTest.ref b/roottest/root/meta/enums/execEnumsTest.ref index 4180681655fb8..bbe3a15f800e7 100644 --- a/roottest/root/meta/enums/execEnumsTest.ref +++ b/roottest/root/meta/enums/execEnumsTest.ref @@ -1,4 +1,3 @@ - Processing execEnumsTest.C... Begin test Checking enumerators... diff --git a/roottest/root/meta/enums/execQualifiedNames.ref b/roottest/root/meta/enums/execQualifiedNames.ref index 30e53a83ed2cc..a3183e83bc67e 100644 --- a/roottest/root/meta/enums/execQualifiedNames.ref +++ b/roottest/root/meta/enums/execQualifiedNames.ref @@ -1,4 +1,3 @@ - Processing execQualifiedNames.C... Name/Title: en/ QualName: en diff --git a/roottest/root/meta/enums/execTEnumGetEnum.ref b/roottest/root/meta/enums/execTEnumGetEnum.ref index e70b1acbfda18..1987d41081e01 100644 --- a/roottest/root/meta/enums/execTEnumGetEnum.ref +++ b/roottest/root/meta/enums/execTEnumGetEnum.ref @@ -1,4 +1,3 @@ - Processing execTEnumGetEnum.C... Constant found with value 0 Constant found with value 0 diff --git a/roottest/root/meta/enums/execduplicateEnums.ref b/roottest/root/meta/enums/execduplicateEnums.ref index cd826d1413b3f..6407a88fe1735 100644 --- a/roottest/root/meta/enums/execduplicateEnums.ref +++ b/roottest/root/meta/enums/execduplicateEnums.ref @@ -1,3 +1,2 @@ - Processing execduplicateEnums.C... Number of enums: 1 diff --git a/roottest/root/meta/enums/execenumSize.ref b/roottest/root/meta/enums/execenumSize.ref index 8162d5552db61..029832ce75622 100644 --- a/roottest/root/meta/enums/execenumSize.ref +++ b/roottest/root/meta/enums/execenumSize.ref @@ -1,3 +1,2 @@ - Processing /Users/pcanal/root_working/roottest/root/meta/enums/execenumSize.C... (int) 0 diff --git a/roottest/root/meta/enums/execenumsInNamespaces.ref b/roottest/root/meta/enums/execenumsInNamespaces.ref index 17f5eae68aa31..c5b2fa0488d76 100644 --- a/roottest/root/meta/enums/execenumsInNamespaces.ref +++ b/roottest/root/meta/enums/execenumsInNamespaces.ref @@ -1,4 +1,3 @@ - Processing execenumsInNamespaces.C... Creating empty Namespace Enum myNamespace::A not found! diff --git a/roottest/root/meta/enums/execenumsInNamespaces2.ref b/roottest/root/meta/enums/execenumsInNamespaces2.ref index d4b2c459f83b3..f92bd33f05bae 100644 --- a/roottest/root/meta/enums/execenumsInNamespaces2.ref +++ b/roottest/root/meta/enums/execenumsInNamespaces2.ref @@ -1,4 +1,3 @@ - Processing execenumsInNamespaces2.C... Enum first defined in the interpreter and then loaded from protoclass Size of list of enums before loading the library: 1, after 1 diff --git a/roottest/root/meta/enums/execfclassVal.ref b/roottest/root/meta/enums/execfclassVal.ref index 249d6c650cb26..da2a905d687ad 100644 --- a/roottest/root/meta/enums/execfclassVal.ref +++ b/roottest/root/meta/enums/execfclassVal.ref @@ -1,4 +1,3 @@ - Processing execfclassVal.C... en: fClass is NOT kObjectAllocMemValue a::en: fClass is NOT kObjectAllocMemValue diff --git a/roottest/root/meta/enums/test_usingenum.ref b/roottest/root/meta/enums/test_usingenum.ref index ea62ff523c5a5..aaf5027242b58 100644 --- a/roottest/root/meta/enums/test_usingenum.ref +++ b/roottest/root/meta/enums/test_usingenum.ref @@ -1,3 +1,2 @@ - Processing roottest/root/meta/enums/test_usingenum.cxx... (int) 0 diff --git a/roottest/root/meta/evolution/baseClass_53410_v1.ref b/roottest/root/meta/evolution/baseClass_53410_v1.ref index 65c4b357c1495..16a9e0c651d1f 100644 --- a/roottest/root/meta/evolution/baseClass_53410_v1.ref +++ b/roottest/root/meta/evolution/baseClass_53410_v1.ref @@ -1,2 +1 @@ - Processing execBaseClass_v2.cxx+("baseClass_53410_v1.root")... diff --git a/roottest/root/meta/evolution/baseClass_53410_v2.ref b/roottest/root/meta/evolution/baseClass_53410_v2.ref index 28d1a9322d0a6..f7e5412cf599f 100644 --- a/roottest/root/meta/evolution/baseClass_53410_v2.ref +++ b/roottest/root/meta/evolution/baseClass_53410_v2.ref @@ -1,2 +1 @@ - Processing execBaseClass_v2.cxx+("baseClass_53410_v2.root")... diff --git a/roottest/root/meta/evolution/baseClass_merge1.ref b/roottest/root/meta/evolution/baseClass_merge1.ref index 859d5ccf3fe70..0fd702d8693f8 100644 --- a/roottest/root/meta/evolution/baseClass_merge1.ref +++ b/roottest/root/meta/evolution/baseClass_merge1.ref @@ -1,2 +1 @@ - Processing execBaseClass_v2.cxx+("baseClass_merge1.root")... diff --git a/roottest/root/meta/evolution/baseClass_merge2.ref b/roottest/root/meta/evolution/baseClass_merge2.ref index e8b60910b0ce2..0ea5cce9b0e39 100644 --- a/roottest/root/meta/evolution/baseClass_merge2.ref +++ b/roottest/root/meta/evolution/baseClass_merge2.ref @@ -1,2 +1 @@ - Processing execBaseClass_v2.cxx+("baseClass_merge2.root")... diff --git a/roottest/root/meta/evolution/execBaseClass_v1.ref b/roottest/root/meta/evolution/execBaseClass_v1.ref index 328678b4fa6bc..7d32bb89e29fb 100644 --- a/roottest/root/meta/evolution/execBaseClass_v1.ref +++ b/roottest/root/meta/evolution/execBaseClass_v1.ref @@ -1,2 +1 @@ - Processing execBaseClass_v1.cxx+... diff --git a/roottest/root/meta/evolution/execBaseClass_v2.ref b/roottest/root/meta/evolution/execBaseClass_v2.ref index 37152f3214446..129a8309a9841 100644 --- a/roottest/root/meta/evolution/execBaseClass_v2.ref +++ b/roottest/root/meta/evolution/execBaseClass_v2.ref @@ -1,2 +1 @@ - Processing execBaseClass_v2.cxx+... diff --git a/roottest/root/meta/evolution/execCheckSum.ref b/roottest/root/meta/evolution/execCheckSum.ref index c04643b41d78d..f21d13bfd6c11 100644 --- a/roottest/root/meta/evolution/execCheckSum.ref +++ b/roottest/root/meta/evolution/execCheckSum.ref @@ -1,4 +1,3 @@ - Processing execCheckSum.cxx+... In memory the checksum is: 0xf7b935b7 On file the checksum is: 0x99f332b1 diff --git a/roottest/root/meta/evolution/execForeignVec.ref b/roottest/root/meta/evolution/execForeignVec.ref index c41a1b7417ee7..8d83cc0966f3a 100644 --- a/roottest/root/meta/evolution/execForeignVec.ref +++ b/roottest/root/meta/evolution/execForeignVec.ref @@ -1,3 +1,2 @@ - Processing execForeignVec.cxx+... (int) 0 diff --git a/roottest/root/meta/evolution/execMissingCheckSum.ref b/roottest/root/meta/evolution/execMissingCheckSum.ref index ed87622b9a27b..3022116851ca3 100644 --- a/roottest/root/meta/evolution/execMissingCheckSum.ref +++ b/roottest/root/meta/evolution/execMissingCheckSum.ref @@ -1,2 +1 @@ - Processing execMissingCheckSum.cxx+... diff --git a/roottest/root/meta/evolution/execMixedBaseClass_v1.ref b/roottest/root/meta/evolution/execMixedBaseClass_v1.ref index b0e02b4f48037..6c44704fa3ea9 100644 --- a/roottest/root/meta/evolution/execMixedBaseClass_v1.ref +++ b/roottest/root/meta/evolution/execMixedBaseClass_v1.ref @@ -1,2 +1 @@ - Processing execMixedBaseClass_v1.cxx+... diff --git a/roottest/root/meta/evolution/execMixedBaseClass_v2.ref b/roottest/root/meta/evolution/execMixedBaseClass_v2.ref index e5129db52db39..d7f4deeceb833 100644 --- a/roottest/root/meta/evolution/execMixedBaseClass_v2.ref +++ b/roottest/root/meta/evolution/execMixedBaseClass_v2.ref @@ -1,4 +1,3 @@ - Processing execMixedBaseClass_v2.cxx+... Warning in : The StreamerInfo of class ParticleImplVec read from file mixedBase_v1.root has the same version (=10) as the active class but a different checksum. diff --git a/roottest/root/meta/evolution/execReadOldCSC.ref b/roottest/root/meta/evolution/execReadOldCSC.ref index 83517eb8667eb..af29d212fd13f 100644 --- a/roottest/root/meta/evolution/execReadOldCSC.ref +++ b/roottest/root/meta/evolution/execReadOldCSC.ref @@ -1,4 +1,3 @@ - Processing execReadOldCSC.C... Warning in : no dictionary for class TCSCEventInfo is available Warning in : no dictionary for class TCSCTrack is available diff --git a/roottest/root/meta/evolution/foreign.ref32 b/roottest/root/meta/evolution/foreign.ref32 index c03b01ddfdc09..2092e9fe7a18b 100644 --- a/roottest/root/meta/evolution/foreign.ref32 +++ b/roottest/root/meta/evolution/foreign.ref32 @@ -1,4 +1,3 @@ - Processing runforeign.C... Warning in : no dictionary for class data is available Warning in : no dictionary for class Tdata is available diff --git a/roottest/root/meta/evolution/foreign.ref64 b/roottest/root/meta/evolution/foreign.ref64 index 4f1f6796cd222..07d53ae5c96f1 100644 --- a/roottest/root/meta/evolution/foreign.ref64 +++ b/roottest/root/meta/evolution/foreign.ref64 @@ -1,4 +1,3 @@ - Processing runforeign.C... Warning in : no dictionary for class data is available Warning in : no dictionary for class Tdata is available diff --git a/roottest/root/meta/evolution/mixedBase_53410_v1.ref b/roottest/root/meta/evolution/mixedBase_53410_v1.ref index ecdddfc446dce..478811350f0c5 100644 --- a/roottest/root/meta/evolution/mixedBase_53410_v1.ref +++ b/roottest/root/meta/evolution/mixedBase_53410_v1.ref @@ -1,4 +1,3 @@ - Processing execMixedBaseClass_v2.cxx+("mixedBase_53410_v1.root")... Error in : object of class vector read too many bytes: 56 instead of 44 Warning in : vector::Streamer() not in sync with data on file mixedBase_53410_v1.root, fix Streamer() diff --git a/roottest/root/meta/evolution/mixedBase_53410_v2.ref b/roottest/root/meta/evolution/mixedBase_53410_v2.ref index fbdaea1354676..a371b4d536dd3 100644 --- a/roottest/root/meta/evolution/mixedBase_53410_v2.ref +++ b/roottest/root/meta/evolution/mixedBase_53410_v2.ref @@ -1,2 +1 @@ - Processing execMixedBaseClass_v2.cxx+("mixedBase_53410_v2.root")... diff --git a/roottest/root/meta/evolution/mixedBase_merge1.ref b/roottest/root/meta/evolution/mixedBase_merge1.ref index 38507aafa6efb..242661744f3fe 100644 --- a/roottest/root/meta/evolution/mixedBase_merge1.ref +++ b/roottest/root/meta/evolution/mixedBase_merge1.ref @@ -1,4 +1,3 @@ - Processing execMixedBaseClass_v2.cxx+("mixedBase_merge1.root")... Warning in : The StreamerInfo of class ParticleImplVec read from file mixedBase_merge1.root has the same version (=10) as the active class but a different checksum. diff --git a/roottest/root/meta/evolution/mixedBase_merge2.ref b/roottest/root/meta/evolution/mixedBase_merge2.ref index 08517ba5a73a0..e69bb42b3e632 100644 --- a/roottest/root/meta/evolution/mixedBase_merge2.ref +++ b/roottest/root/meta/evolution/mixedBase_merge2.ref @@ -1,2 +1 @@ - Processing execMixedBaseClass_v2.cxx+("mixedBase_merge2.root")... diff --git a/roottest/root/meta/evolution/version5/execNestedColl.ref b/roottest/root/meta/evolution/version5/execNestedColl.ref index 8c8ed5578b820..1941706f4c873 100644 --- a/roottest/root/meta/evolution/version5/execNestedColl.ref +++ b/roottest/root/meta/evolution/version5/execNestedColl.ref @@ -1,4 +1,3 @@ - Processing execNestedColl.cxx+... fAlias[0] : 1 1.00 fValue[0] : 2 2.00 diff --git a/roottest/root/meta/evolution/warning.ref b/roottest/root/meta/evolution/warning.ref index f74f4f19257cb..31241c87affc0 100644 --- a/roottest/root/meta/evolution/warning.ref +++ b/roottest/root/meta/evolution/warning.ref @@ -1,4 +1,3 @@ - Processing checkWarn.C(0)... Warning in : no dictionary for class data is available Warning in : no dictionary for class Tdata is available diff --git a/roottest/root/meta/evolution/warning0.oref b/roottest/root/meta/evolution/warning0.oref index dd0a026ac4c74..cd72c71b08036 100644 --- a/roottest/root/meta/evolution/warning0.oref +++ b/roottest/root/meta/evolution/warning0.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(0)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning1.oref b/roottest/root/meta/evolution/warning1.oref index bf69a85d0f629..7603025aabbc5 100644 --- a/roottest/root/meta/evolution/warning1.oref +++ b/roottest/root/meta/evolution/warning1.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(1)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning10.oref b/roottest/root/meta/evolution/warning10.oref index 36c942ed3ea7c..9fb8e6a74e41f 100644 --- a/roottest/root/meta/evolution/warning10.oref +++ b/roottest/root/meta/evolution/warning10.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(10)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning11.oref b/roottest/root/meta/evolution/warning11.oref index 6e6c812ce7112..d30e3d5adfae1 100644 --- a/roottest/root/meta/evolution/warning11.oref +++ b/roottest/root/meta/evolution/warning11.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(11)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning12.oref b/roottest/root/meta/evolution/warning12.oref index 221814b0fb99f..6bc67ac6b4f1c 100644 --- a/roottest/root/meta/evolution/warning12.oref +++ b/roottest/root/meta/evolution/warning12.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(12)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning13.oref b/roottest/root/meta/evolution/warning13.oref index aa3d44f6d5370..85b32dd7ee1df 100644 --- a/roottest/root/meta/evolution/warning13.oref +++ b/roottest/root/meta/evolution/warning13.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(13)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning14.oref b/roottest/root/meta/evolution/warning14.oref index 7a45676baf7d4..568e921a6c66c 100644 --- a/roottest/root/meta/evolution/warning14.oref +++ b/roottest/root/meta/evolution/warning14.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(14)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning15.oref b/roottest/root/meta/evolution/warning15.oref index 2edabf0256112..1d3a5174a9c22 100644 --- a/roottest/root/meta/evolution/warning15.oref +++ b/roottest/root/meta/evolution/warning15.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(15)... StreamerInfo for class: Tdata, version=1, checksum=0x30d1fe9d diff --git a/roottest/root/meta/evolution/warning16.oref b/roottest/root/meta/evolution/warning16.oref index 03003f2a2f558..241531e5eae94 100644 --- a/roottest/root/meta/evolution/warning16.oref +++ b/roottest/root/meta/evolution/warning16.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(16)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning17.oref b/roottest/root/meta/evolution/warning17.oref index 27e6069b3016c..f5909459d3cbc 100644 --- a/roottest/root/meta/evolution/warning17.oref +++ b/roottest/root/meta/evolution/warning17.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(17)... StreamerInfo for class: Tdata, version=1, checksum=0x30d1fe9d diff --git a/roottest/root/meta/evolution/warning18.oref b/roottest/root/meta/evolution/warning18.oref index b1fb694568fbd..06139e64274fa 100644 --- a/roottest/root/meta/evolution/warning18.oref +++ b/roottest/root/meta/evolution/warning18.oref @@ -1,3 +1,2 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(18)... Test not implemented diff --git a/roottest/root/meta/evolution/warning2.oref b/roottest/root/meta/evolution/warning2.oref index e12b4dac11ff8..ad65b09eee4c5 100644 --- a/roottest/root/meta/evolution/warning2.oref +++ b/roottest/root/meta/evolution/warning2.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(2)... StreamerInfo for class: Tdata, version=1, checksum=0x589374f7 diff --git a/roottest/root/meta/evolution/warning3.oref b/roottest/root/meta/evolution/warning3.oref index 0280630fc9dba..e9db9c751485e 100644 --- a/roottest/root/meta/evolution/warning3.oref +++ b/roottest/root/meta/evolution/warning3.oref @@ -1,4 +1,3 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(3)... StreamerInfo for class: Tdata, version=1, checksum=0x30d1fe9d diff --git a/roottest/root/meta/evolution/warning4.oref b/roottest/root/meta/evolution/warning4.oref index 681aa773d537c..0d5cdd18380fa 100644 --- a/roottest/root/meta/evolution/warning4.oref +++ b/roottest/root/meta/evolution/warning4.oref @@ -1,2 +1 @@ - Processing /Users/mato/Development/ROOT/roottest.git/root/meta/evolution/checkWarn.C(4)... diff --git a/roottest/root/meta/execExecuteObjArray.ref b/roottest/root/meta/execExecuteObjArray.ref index 7ca6a3cd09e92..0b0ea14026735 100644 --- a/roottest/root/meta/execExecuteObjArray.ref +++ b/roottest/root/meta/execExecuteObjArray.ref @@ -1,4 +1,3 @@ - Processing execExecuteObjArray.C... Error in : Too many parameters to call Sizeof, got 1 but expected at most 0. Error in : Too many parameters to call Reset, got 2 but expected at most 1. diff --git a/roottest/root/meta/execString.ref b/roottest/root/meta/execString.ref index 73fa7ece0ca46..a90465c298ab4 100644 --- a/roottest/root/meta/execString.ref +++ b/roottest/root/meta/execString.ref @@ -1,3 +1,2 @@ - Processing execString.cxx+... (int) 0 diff --git a/roottest/root/meta/execTypedefList.ref b/roottest/root/meta/execTypedefList.ref index ad0506973788c..6f3dfedd8f51e 100644 --- a/roottest/root/meta/execTypedefList.ref +++ b/roottest/root/meta/execTypedefList.ref @@ -1,3 +1,2 @@ - Processing execTypedefList.C... (int) 0 diff --git a/roottest/root/meta/execUnloading.ref b/roottest/root/meta/execUnloading.ref index 5f005100c4bf9..be48c7bf31caf 100644 --- a/roottest/root/meta/execUnloading.ref +++ b/roottest/root/meta/execUnloading.ref @@ -1,4 +1,3 @@ - Processing execUnloading.C... Unloading of globals: VarDecl and EnumConstDecl. Check validity before unloading, expected: true. diff --git a/roottest/root/meta/execpragmasTest.ref b/roottest/root/meta/execpragmasTest.ref index 9fb24fb28f27e..8c1f288282ebc 100644 --- a/roottest/root/meta/execpragmasTest.ref +++ b/roottest/root/meta/execpragmasTest.ref @@ -1,3 +1,2 @@ - Processing execpragmasTest.C... (int) 0 diff --git a/roottest/root/meta/expressiveErrorMessages.ref b/roottest/root/meta/expressiveErrorMessages.ref index 9d6e6095fc999..2d481b4b88234 100644 --- a/roottest/root/meta/expressiveErrorMessages.ref +++ b/roottest/root/meta/expressiveErrorMessages.ref @@ -1,4 +1,3 @@ - Processing expressiveErrorMessages.C... expressiveErrorMessages dictionary payload:48:1: error: unknown type name 'bla' bla diff --git a/roottest/root/meta/fwdDecls/execfwdDeclarations.ref b/roottest/root/meta/fwdDecls/execfwdDeclarations.ref index 221657496365b..c411dbe67577b 100644 --- a/roottest/root/meta/fwdDecls/execfwdDeclarations.ref +++ b/roottest/root/meta/fwdDecls/execfwdDeclarations.ref @@ -1,3 +1,2 @@ - Processing execfwdDeclarations.C... Type e_int is not defined diff --git a/roottest/root/meta/genreflex/ROOT-5594/execdummy.ref b/roottest/root/meta/genreflex/ROOT-5594/execdummy.ref index 36341129c04a3..737079a44cbb0 100644 --- a/roottest/root/meta/genreflex/ROOT-5594/execdummy.ref +++ b/roottest/root/meta/genreflex/ROOT-5594/execdummy.ref @@ -1,3 +1,2 @@ - Processing execdummy.C... (int) 0 diff --git a/roottest/root/meta/genreflex/ROOT-5626/execdummy.ref b/roottest/root/meta/genreflex/ROOT-5626/execdummy.ref index 36341129c04a3..737079a44cbb0 100644 --- a/roottest/root/meta/genreflex/ROOT-5626/execdummy.ref +++ b/roottest/root/meta/genreflex/ROOT-5626/execdummy.ref @@ -1,3 +1,2 @@ - Processing execdummy.C... (int) 0 diff --git a/roottest/root/meta/genreflex/ROOT-5627/exec5627.ref b/roottest/root/meta/genreflex/ROOT-5627/exec5627.ref index 65c0f9a8983c2..d4c16d86c32f6 100644 --- a/roottest/root/meta/genreflex/ROOT-5627/exec5627.ref +++ b/roottest/root/meta/genreflex/ROOT-5627/exec5627.ref @@ -1,2 +1 @@ - Processing exec5627.C... diff --git a/roottest/root/meta/genreflex/ROOT-5657/execloadLib.ref b/roottest/root/meta/genreflex/ROOT-5657/execloadLib.ref index ef8e4cb833a07..fb18b4786ac94 100644 --- a/roottest/root/meta/genreflex/ROOT-5657/execloadLib.ref +++ b/roottest/root/meta/genreflex/ROOT-5657/execloadLib.ref @@ -1,2 +1 @@ - Processing execloadLib.C... diff --git a/roottest/root/meta/genreflex/ROOT-5690/execdummy.ref b/roottest/root/meta/genreflex/ROOT-5690/execdummy.ref index 36341129c04a3..737079a44cbb0 100644 --- a/roottest/root/meta/genreflex/ROOT-5690/execdummy.ref +++ b/roottest/root/meta/genreflex/ROOT-5690/execdummy.ref @@ -1,3 +1,2 @@ - Processing execdummy.C... (int) 0 diff --git a/roottest/root/meta/genreflex/ROOT-5696/exec5596.ref b/roottest/root/meta/genreflex/ROOT-5696/exec5596.ref index 563e756d790d7..59cf26195fa57 100644 --- a/roottest/root/meta/genreflex/ROOT-5696/exec5596.ref +++ b/roottest/root/meta/genreflex/ROOT-5696/exec5596.ref @@ -1,2 +1 @@ - Processing exec5596.C... diff --git a/roottest/root/meta/genreflex/ROOT-5709/execLibLoad.ref b/roottest/root/meta/genreflex/ROOT-5709/execLibLoad.ref index a6022b5a89f57..565bfb363748f 100644 --- a/roottest/root/meta/genreflex/ROOT-5709/execLibLoad.ref +++ b/roottest/root/meta/genreflex/ROOT-5709/execLibLoad.ref @@ -1,4 +1,3 @@ - Processing execLibLoad.C... Dictionary found for pat::Tau! Dictionary not found for pat::TauJetCorrFactors! diff --git a/roottest/root/meta/genreflex/ROOT-5756/execLibLoad.ref b/roottest/root/meta/genreflex/ROOT-5756/execLibLoad.ref index d81faa317b8e0..467c977c86712 100644 --- a/roottest/root/meta/genreflex/ROOT-5756/execLibLoad.ref +++ b/roottest/root/meta/genreflex/ROOT-5756/execLibLoad.ref @@ -1,4 +1,3 @@ - Processing execLibLoad.C... Dictionary found for A Dictionary found for B diff --git a/roottest/root/meta/genreflex/ROOT-5764/execLibLoad.ref b/roottest/root/meta/genreflex/ROOT-5764/execLibLoad.ref index fb877c4639028..2b20c2d3f2a27 100644 --- a/roottest/root/meta/genreflex/ROOT-5764/execLibLoad.ref +++ b/roottest/root/meta/genreflex/ROOT-5764/execLibLoad.ref @@ -1,4 +1,3 @@ - Processing execLibLoad.C... Dictionary found for MyClass Dictionary not found for std::list diff --git a/roottest/root/meta/genreflex/ROOT-5881/execstringI.ref b/roottest/root/meta/genreflex/ROOT-5881/execstringI.ref index 8de9d97a43e02..05a90edd3a64e 100644 --- a/roottest/root/meta/genreflex/ROOT-5881/execstringI.ref +++ b/roottest/root/meta/genreflex/ROOT-5881/execstringI.ref @@ -1,4 +1,3 @@ - Processing execstringI.C... Entry 0 myString_0 Entry 1 myString_1 diff --git a/roottest/root/meta/genreflex/ROOT-6796/execattributesFromTypedef.ref b/roottest/root/meta/genreflex/ROOT-6796/execattributesFromTypedef.ref index 434e4ca251c0d..4c7dae01f86fc 100644 --- a/roottest/root/meta/genreflex/ROOT-6796/execattributesFromTypedef.ref +++ b/roottest/root/meta/genreflex/ROOT-6796/execattributesFromTypedef.ref @@ -1,3 +1,2 @@ - Processing execattributesFromTypedef.C... Class RootType did not end in the rootmap! diff --git a/roottest/root/meta/genreflex/TClass/execbasic.ref b/roottest/root/meta/genreflex/TClass/execbasic.ref index 7f8bf1f35cbe0..ebd1391a178ef 100644 --- a/roottest/root/meta/genreflex/TClass/execbasic.ref +++ b/roottest/root/meta/genreflex/TClass/execbasic.ref @@ -1,4 +1,3 @@ - Processing execbasic.C... *** Stress TClass *** Loading library libbasic_allClasses_dictrflx diff --git a/roottest/root/meta/genreflex/execAttributesCheck.ref b/roottest/root/meta/genreflex/execAttributesCheck.ref index e840f2a3a3355..38f598d991961 100644 --- a/roottest/root/meta/genreflex/execAttributesCheck.ref +++ b/roottest/root/meta/genreflex/execAttributesCheck.ref @@ -1,4 +1,3 @@ - Processing execAttributesCheck.C... Found property "mapping" and its value is blob Found property "persistency" and its value is loose_on_writing diff --git a/roottest/root/meta/genreflex/execCheckComplicatedAllocator.ref b/roottest/root/meta/genreflex/execCheckComplicatedAllocator.ref index 22fdc936a8a0b..6f50b82f5ea5c 100644 --- a/roottest/root/meta/genreflex/execCheckComplicatedAllocator.ref +++ b/roottest/root/meta/genreflex/execCheckComplicatedAllocator.ref @@ -1,3 +1,2 @@ - Processing execCheckComplicatedAllocator.C... Dictionary found! diff --git a/roottest/root/meta/genreflex/execTypedefSelection.ref b/roottest/root/meta/genreflex/execTypedefSelection.ref index d83ec6dbecf70..c37f3dab50220 100644 --- a/roottest/root/meta/genreflex/execTypedefSelection.ref +++ b/roottest/root/meta/genreflex/execTypedefSelection.ref @@ -1,4 +1,3 @@ - Processing execTypedefSelection.C... Warning in : no dictionary for class B is available Warning in : no dictionary for class ns::D is available diff --git a/roottest/root/meta/genreflex/execmangledTest.ref b/roottest/root/meta/genreflex/execmangledTest.ref index 40df1f2f95a65..e9b423832cb49 100644 --- a/roottest/root/meta/genreflex/execmangledTest.ref +++ b/roottest/root/meta/genreflex/execmangledTest.ref @@ -1,3 +1,2 @@ - Processing execmangledTest.C... SUCCESS: mangledTest class found diff --git a/roottest/root/meta/genreflex/execns.ref b/roottest/root/meta/genreflex/execns.ref index e5b47e6697128..e26fb8310650c 100644 --- a/roottest/root/meta/genreflex/execns.ref +++ b/roottest/root/meta/genreflex/execns.ref @@ -1,3 +1,2 @@ - Processing execns.C... Namespace the_ns found diff --git a/roottest/root/meta/genreflex/execreadTree.ref b/roottest/root/meta/genreflex/execreadTree.ref index 13dfc24ee3d28..902ff19929934 100644 --- a/roottest/root/meta/genreflex/execreadTree.ref +++ b/roottest/root/meta/genreflex/execreadTree.ref @@ -1,4 +1,3 @@ - Processing execreadTree.C... rule reading class version: 1 Cont is 1 diff --git a/roottest/root/meta/genreflex/execstlPatternSelection.ref b/roottest/root/meta/genreflex/execstlPatternSelection.ref index 08881b904a1fb..3a29dfc1e15d0 100644 --- a/roottest/root/meta/genreflex/execstlPatternSelection.ref +++ b/roottest/root/meta/genreflex/execstlPatternSelection.ref @@ -1,3 +1,2 @@ - Processing execstlPatternSelection.C... std::multimap was not selected !Note that std::multimap is expected not to be found. diff --git a/roottest/root/meta/genreflex/execwriteFirstRootmap.ref b/roottest/root/meta/genreflex/execwriteFirstRootmap.ref index 56906c27ac6f3..4f4b055ab875e 100644 --- a/roottest/root/meta/genreflex/execwriteFirstRootmap.ref +++ b/roottest/root/meta/genreflex/execwriteFirstRootmap.ref @@ -1,2 +1 @@ - Processing execwriteFirstRootmap.C... diff --git a/roottest/root/meta/genreflex/execwriteTree.ref b/roottest/root/meta/genreflex/execwriteTree.ref index 3520a14aaa8c2..eec43d66ba53b 100644 --- a/roottest/root/meta/genreflex/execwriteTree.ref +++ b/roottest/root/meta/genreflex/execwriteTree.ref @@ -1,3 +1,2 @@ - Processing execwriteTree.C... MyClass::Print ver: 1 diff --git a/roottest/root/meta/genreflex/headersDuplicateKeys/execduplicateHeaders.ref b/roottest/root/meta/genreflex/headersDuplicateKeys/execduplicateHeaders.ref index 9483c32b30be1..6ad91e767bfe0 100644 --- a/roottest/root/meta/genreflex/headersDuplicateKeys/execduplicateHeaders.ref +++ b/roottest/root/meta/genreflex/headersDuplicateKeys/execduplicateHeaders.ref @@ -1,3 +1,2 @@ - Processing execduplicateHeaders.C... Nothing to do: this test just reads rootmaps. diff --git a/roottest/root/meta/genreflex/iorules/execSimpleIoRule.ref b/roottest/root/meta/genreflex/iorules/execSimpleIoRule.ref index 1484694c44ff0..5ea5c271f6605 100644 --- a/roottest/root/meta/genreflex/iorules/execSimpleIoRule.ref +++ b/roottest/root/meta/genreflex/iorules/execSimpleIoRule.ref @@ -1,2 +1 @@ - Processing execSimpleIoRule.C... diff --git a/roottest/root/meta/genreflex/noStreamer_noInputOperator/customStreamer.ref b/roottest/root/meta/genreflex/noStreamer_noInputOperator/customStreamer.ref index 1792e4d233d9c..6e360408ae978 100644 --- a/roottest/root/meta/genreflex/noStreamer_noInputOperator/customStreamer.ref +++ b/roottest/root/meta/genreflex/noStreamer_noInputOperator/customStreamer.ref @@ -1,4 +1,3 @@ - Processing customStreamer.C... Custom streamer reading Custom streamer writing diff --git a/roottest/root/meta/hello_ROOT_C_dll.ref b/roottest/root/meta/hello_ROOT_C_dll.ref index f8ffc1bb070d9..d3fa0e0a51db1 100644 --- a/roottest/root/meta/hello_ROOT_C_dll.ref +++ b/roottest/root/meta/hello_ROOT_C_dll.ref @@ -1,3 +1,2 @@ - Processing hello_ROOT_C.dll... Hello ROOT! diff --git a/roottest/root/meta/hello_ROOT_C_so.ref b/roottest/root/meta/hello_ROOT_C_so.ref index 82ca1568df1b1..2c91420d8e61f 100644 --- a/roottest/root/meta/hello_ROOT_C_so.ref +++ b/roottest/root/meta/hello_ROOT_C_so.ref @@ -1,3 +1,2 @@ - Processing hello_ROOT_C.so... Hello ROOT! diff --git a/roottest/root/meta/iotypeioname/execionameiotype.ref b/roottest/root/meta/iotypeioname/execionameiotype.ref index b831b3cdd783e..abd732a17bc0d 100644 --- a/roottest/root/meta/iotypeioname/execionameiotype.ref +++ b/roottest/root/meta/iotypeioname/execionameiotype.ref @@ -1,4 +1,3 @@ - Processing execionameiotype.C... SuperCluster::energy2 type is Double32_t Particle::vertex type is ROOT::Math::Cartesian3D diff --git a/roottest/root/meta/method/exactMatch.ref b/roottest/root/meta/method/exactMatch.ref index 12a20e63d761d..04d8f16849097 100644 --- a/roottest/root/meta/method/exactMatch.ref +++ b/roottest/root/meta/method/exactMatch.ref @@ -1,3 +1,2 @@ - Processing runexactMatch.C... (int) 0 diff --git a/roottest/root/meta/method/execConstMethod.ref b/roottest/root/meta/method/execConstMethod.ref index dffc37b1c80c2..03af248ef05b1 100644 --- a/roottest/root/meta/method/execConstMethod.ref +++ b/roottest/root/meta/method/execConstMethod.ref @@ -1,4 +1,3 @@ - Processing execConstMethod.cxx+... OBJ: TObject TObject Basic ROOT object (int) 0 diff --git a/roottest/root/meta/method/execConstructor.ref b/roottest/root/meta/method/execConstructor.ref index e89fdcae8912c..d7cceb0966fa5 100644 --- a/roottest/root/meta/method/execConstructor.ref +++ b/roottest/root/meta/method/execConstructor.ref @@ -1,3 +1,2 @@ - Processing execConstructor.cxx+... (int) 0 diff --git a/roottest/root/meta/method/execCreateString.ref b/roottest/root/meta/method/execCreateString.ref index 0f576e1dcd6af..4ee27f33a4eea 100644 --- a/roottest/root/meta/method/execCreateString.ref +++ b/roottest/root/meta/method/execCreateString.ref @@ -1,4 +1,3 @@ - Processing execCreateString.C... running create_string Bug 1: diff --git a/roottest/root/meta/method/execInlined.ref b/roottest/root/meta/method/execInlined.ref index 2dbca492fbc18..bcac443538cf4 100644 --- a/roottest/root/meta/method/execInlined.ref +++ b/roottest/root/meta/method/execInlined.ref @@ -1,3 +1,2 @@ - Processing execInlined.cxx+... (int) 0 diff --git a/roottest/root/meta/method/execReuseMethod.ref b/roottest/root/meta/method/execReuseMethod.ref index 7a99ef8b71302..bc0040687957f 100644 --- a/roottest/root/meta/method/execReuseMethod.ref +++ b/roottest/root/meta/method/execReuseMethod.ref @@ -1,3 +1,2 @@ - Processing execReuseMethod.cxx... (int) 0 diff --git a/roottest/root/meta/method/execTemplate.ref b/roottest/root/meta/method/execTemplate.ref index 42f8ad75365a6..d055605138be7 100644 --- a/roottest/root/meta/method/execTemplate.ref +++ b/roottest/root/meta/method/execTemplate.ref @@ -1,4 +1,3 @@ - Processing execTemplate.C... Looking at UserClass. OBJ: TListOfFunctions TListOfFunctions List of TFunctions for a class : 0 diff --git a/roottest/root/meta/method/offset/execmethodtest.ref b/roottest/root/meta/method/offset/execmethodtest.ref index 30dba93b623c0..effeb5457f6d5 100644 --- a/roottest/root/meta/method/offset/execmethodtest.ref +++ b/roottest/root/meta/method/offset/execmethodtest.ref @@ -1,4 +1,3 @@ - Processing execmethodtest.cxx+...
Calling method foo of TestObj... diff --git a/roottest/root/meta/missingInfo.ref b/roottest/root/meta/missingInfo.ref index b2fc42cd49980..39b58a1dade1c 100644 --- a/roottest/root/meta/missingInfo.ref +++ b/roottest/root/meta/missingInfo.ref @@ -1,4 +1,3 @@ - Processing runmissingInfo.C... For toplevel found OBJ: TClass TopLevel diff --git a/roottest/root/meta/namespace.ref b/roottest/root/meta/namespace.ref index 06cde8009517b..5b9e28bebe009 100644 --- a/roottest/root/meta/namespace.ref +++ b/roottest/root/meta/namespace.ref @@ -1,4 +1,3 @@ - Processing runnamespace.C... OBJ: TClass MySpace::MyClass OBJ: TClass MySpace::MyClass diff --git a/roottest/root/meta/namespace.ref32 b/roottest/root/meta/namespace.ref32 index 2cc0e1e1cb17f..b126025659231 100644 --- a/roottest/root/meta/namespace.ref32 +++ b/roottest/root/meta/namespace.ref32 @@ -1,4 +1,3 @@ - Processing runnamespace.C... OBJ: TClass MySpace::MyClass OBJ: TClass MySpace::MyClass diff --git a/roottest/root/meta/naming/execCheckNaming.ref b/roottest/root/meta/naming/execCheckNaming.ref index 2607680ee05e5..1fe4454347828 100644 --- a/roottest/root/meta/naming/execCheckNaming.ref +++ b/roottest/root/meta/naming/execCheckNaming.ref @@ -1,4 +1,3 @@ - Processing execCheckNaming.C... Check TClassEdit::ResolveTypedef @const Something_t&@ --> @const std::Something&@ diff --git a/roottest/root/meta/naming/execCheckNaming_win32.ref b/roottest/root/meta/naming/execCheckNaming_win32.ref index aabae29135d8a..92ad42f13a6ab 100644 --- a/roottest/root/meta/naming/execCheckNaming_win32.ref +++ b/roottest/root/meta/naming/execCheckNaming_win32.ref @@ -1,5 +1,4 @@ Processing execCheckNaming.C... - Check TClassEdit::ResolveTypedef @const Something_t&@ --> @const std::Something&@ @const std::Something&@ --> @const std::Something&@ diff --git a/roottest/root/meta/naming/execCheckNaming_win64.ref b/roottest/root/meta/naming/execCheckNaming_win64.ref index aabae29135d8a..92ad42f13a6ab 100644 --- a/roottest/root/meta/naming/execCheckNaming_win64.ref +++ b/roottest/root/meta/naming/execCheckNaming_win64.ref @@ -1,5 +1,4 @@ Processing execCheckNaming.C... - Check TClassEdit::ResolveTypedef @const Something_t&@ --> @const std::Something&@ @const std::Something&@ --> @const std::Something&@ diff --git a/roottest/root/meta/naming/execClassEditNormalize.ref b/roottest/root/meta/naming/execClassEditNormalize.ref index 677df77c222bf..5a76aaa5382b9 100644 --- a/roottest/root/meta/naming/execClassEditNormalize.ref +++ b/roottest/root/meta/naming/execClassEditNormalize.ref @@ -1,3 +1,2 @@ - Processing execClassEditNormalize.C... (int) 0 diff --git a/roottest/root/meta/naming/execNamingMatches.ref b/roottest/root/meta/naming/execNamingMatches.ref index c532859025bfe..106963886f3bf 100644 --- a/roottest/root/meta/naming/execNamingMatches.ref +++ b/roottest/root/meta/naming/execNamingMatches.ref @@ -1,3 +1,2 @@ - Processing execNamingMatches.cxx+... (int) 0 diff --git a/roottest/root/meta/naming/execNamingMatchesNoHeader.ref b/roottest/root/meta/naming/execNamingMatchesNoHeader.ref index db45ece24cc53..5ad125960b1f6 100644 --- a/roottest/root/meta/naming/execNamingMatchesNoHeader.ref +++ b/roottest/root/meta/naming/execNamingMatchesNoHeader.ref @@ -1,3 +1,2 @@ - Processing execNamingMatchesNoHeader.cxx+... (int) 0 diff --git a/roottest/root/meta/naming/execParamPack.ref b/roottest/root/meta/naming/execParamPack.ref index aaacf16677cff..351e9b8a78777 100644 --- a/roottest/root/meta/naming/execParamPack.ref +++ b/roottest/root/meta/naming/execParamPack.ref @@ -1,3 +1,2 @@ - Processing execParamPack.C... (std::map > > &) {} diff --git a/roottest/root/meta/naming/execResolveTypedef.ref b/roottest/root/meta/naming/execResolveTypedef.ref index 888d0a0881773..f1010a164e983 100644 --- a/roottest/root/meta/naming/execResolveTypedef.ref +++ b/roottest/root/meta/naming/execResolveTypedef.ref @@ -1,4 +1,3 @@ - Processing execResolveTypedef.cxx... Test 1 The result is correct: const int Test 2 The result is correct: const int diff --git a/roottest/root/meta/naming/issue-18363/templateNameTest.ref b/roottest/root/meta/naming/issue-18363/templateNameTest.ref index d9733f30a26d7..b5040c6c06d44 100644 --- a/roottest/root/meta/naming/issue-18363/templateNameTest.ref +++ b/roottest/root/meta/naming/issue-18363/templateNameTest.ref @@ -1,4 +1,3 @@ - Processing templateNameTest.C... Collection name='TObjArray', class='TObjArray', size=16 OBJ: TProtoClass PFRecHitSoALayout<128> diff --git a/roottest/root/meta/nospace.ref b/roottest/root/meta/nospace.ref index 31a4b5c989065..82f09fb63c44d 100644 --- a/roottest/root/meta/nospace.ref +++ b/roottest/root/meta/nospace.ref @@ -1,2 +1 @@ - Processing runnospace.C... diff --git a/roottest/root/meta/redeclUnload/TemplateRedeclUnload.ref b/roottest/root/meta/redeclUnload/TemplateRedeclUnload.ref index 8b137891791fe..e69de29bb2d1d 100644 --- a/roottest/root/meta/redeclUnload/TemplateRedeclUnload.ref +++ b/roottest/root/meta/redeclUnload/TemplateRedeclUnload.ref @@ -1 +0,0 @@ - diff --git a/roottest/root/meta/rootcling/ROOT-7695/execdummy.ref b/roottest/root/meta/rootcling/ROOT-7695/execdummy.ref index 36341129c04a3..737079a44cbb0 100644 --- a/roottest/root/meta/rootcling/ROOT-7695/execdummy.ref +++ b/roottest/root/meta/rootcling/ROOT-7695/execdummy.ref @@ -1,3 +1,2 @@ - Processing execdummy.C... (int) 0 diff --git a/roottest/root/meta/rootmap/spaces.ref b/roottest/root/meta/rootmap/spaces.ref index 71231f7bd406b..8525bc0ccdaf5 100644 --- a/roottest/root/meta/rootmap/spaces.ref +++ b/roottest/root/meta/rootmap/spaces.ref @@ -1,2 +1 @@ - Processing runspaces.C... diff --git a/roottest/root/meta/tclass/classref.ref b/roottest/root/meta/tclass/classref.ref index 7c043c86becdf..78002e63258e7 100644 --- a/roottest/root/meta/tclass/classref.ref +++ b/roottest/root/meta/tclass/classref.ref @@ -1,3 +1,2 @@ - Processing runclassref.C... Warning in : no dictionary for class MyClass is available diff --git a/roottest/root/meta/tclass/execBrowseNonAccessibleType.ref b/roottest/root/meta/tclass/execBrowseNonAccessibleType.ref index 0817996899a4d..76f1cb366f7cf 100644 --- a/roottest/root/meta/tclass/execBrowseNonAccessibleType.ref +++ b/roottest/root/meta/tclass/execBrowseNonAccessibleType.ref @@ -1,3 +1,2 @@ - Processing execBrowseNonAccessibleType.C... Warning in : The ROOT browser cannot run in batch mode diff --git a/roottest/root/meta/tclass/execDuplicate.ref b/roottest/root/meta/tclass/execDuplicate.ref index 98a55430b46c4..a3abb03daf308 100644 --- a/roottest/root/meta/tclass/execDuplicate.ref +++ b/roottest/root/meta/tclass/execDuplicate.ref @@ -1,2 +1 @@ - Processing execDuplicate.C... diff --git a/roottest/root/meta/tclass/execInitOrder.ref b/roottest/root/meta/tclass/execInitOrder.ref index 12ab594bad161..f0de03dfedc4d 100644 --- a/roottest/root/meta/tclass/execInitOrder.ref +++ b/roottest/root/meta/tclass/execInitOrder.ref @@ -1,4 +1,3 @@ - Processing /local2/pcanal/cint_working/rootcling/root/roottest/root/meta/tclass/execInitOrder.cxx+... Info in : creating shared library /home/pcanal/root_builds/master/cpp17/roottest/root/meta/tclass/execInitOrder_cxx.so Error in : no interpreter information for class Derived is available even though it has a TClass initialization routine. diff --git a/roottest/root/meta/tclass/execInterpClassNew.ref b/roottest/root/meta/tclass/execInterpClassNew.ref index 70419e98d301b..3239ba60e61f2 100644 --- a/roottest/root/meta/tclass/execInterpClassNew.ref +++ b/roottest/root/meta/tclass/execInterpClassNew.ref @@ -1,3 +1,2 @@ - Processing execInterpClassNew.C... (int) 0 diff --git a/roottest/root/meta/tclass/execProperties.ref b/roottest/root/meta/tclass/execProperties.ref index 625d4db5180dc..338a3751456d2 100644 --- a/roottest/root/meta/tclass/execProperties.ref +++ b/roottest/root/meta/tclass/execProperties.ref @@ -1,3 +1,2 @@ - Processing execProperties.C... (int)0 diff --git a/roottest/root/meta/tclass/execReadSimplePair.ref b/roottest/root/meta/tclass/execReadSimplePair.ref index 5c39c1514459d..fc99fecd9beb8 100644 --- a/roottest/root/meta/tclass/execReadSimplePair.ref +++ b/roottest/root/meta/tclass/execReadSimplePair.ref @@ -1,2 +1 @@ - Processing execReadSimplePair.C... diff --git a/roottest/root/meta/tclass/execReadTmplt.ref b/roottest/root/meta/tclass/execReadTmplt.ref index d633a26cb044f..83514f8cc1d58 100644 --- a/roottest/root/meta/tclass/execReadTmplt.ref +++ b/roottest/root/meta/tclass/execReadTmplt.ref @@ -1,4 +1,3 @@ - Processing execReadTmplt.cxx+... Warning in : no dictionary for class Holder is available Warning in : no dictionary for class Wrapper is available diff --git a/roottest/root/meta/tclass/execSharedPtr.ref b/roottest/root/meta/tclass/execSharedPtr.ref index be4babcc95a9f..f84a8ab3efd04 100644 --- a/roottest/root/meta/tclass/execSharedPtr.ref +++ b/roottest/root/meta/tclass/execSharedPtr.ref @@ -1,3 +1,2 @@ - Processing execSharedPtr.C... (int) 0 diff --git a/roottest/root/meta/tclass/execSimpleVector.ref b/roottest/root/meta/tclass/execSimpleVector.ref index f24328b14b817..d01d16969e1fc 100644 --- a/roottest/root/meta/tclass/execSimpleVector.ref +++ b/roottest/root/meta/tclass/execSimpleVector.ref @@ -1,3 +1,2 @@ - Processing execSimpleVector.C... Test successful: autoparse did not happen during checksumming. diff --git a/roottest/root/meta/tclass/execState.ref b/roottest/root/meta/tclass/execState.ref index 19dc668ef1d10..4255cabacbad2 100644 --- a/roottest/root/meta/tclass/execState.ref +++ b/roottest/root/meta/tclass/execState.ref @@ -1,4 +1,3 @@ - Processing execState.C... Warning in : no dictionary for class Event is available (int) 0 diff --git a/roottest/root/meta/tclass/execTClassAtTearDown.ref b/roottest/root/meta/tclass/execTClassAtTearDown.ref index 8b137891791fe..e69de29bb2d1d 100644 --- a/roottest/root/meta/tclass/execTClassAtTearDown.ref +++ b/roottest/root/meta/tclass/execTClassAtTearDown.ref @@ -1 +0,0 @@ - diff --git a/roottest/root/meta/tclass/execTmpltD.ref b/roottest/root/meta/tclass/execTmpltD.ref index 0f9950bbcaea2..701becd14f02a 100644 --- a/roottest/root/meta/tclass/execTmpltD.ref +++ b/roottest/root/meta/tclass/execTmpltD.ref @@ -1,3 +1,2 @@ - Processing execTmpltD.cxx+... (int) 0 diff --git a/roottest/root/meta/tclass/execTmpltD32.ref b/roottest/root/meta/tclass/execTmpltD32.ref index 3e448ec8b5526..ff206e5ff2cc0 100644 --- a/roottest/root/meta/tclass/execTmpltD32.ref +++ b/roottest/root/meta/tclass/execTmpltD32.ref @@ -1,3 +1,2 @@ - Processing execTmpltD32.cxx+... (int) 0 diff --git a/roottest/root/meta/tclass/issue-6767/repro.ref b/roottest/root/meta/tclass/issue-6767/repro.ref index 4740e5dc86931..5b1f0b050fef0 100644 --- a/roottest/root/meta/tclass/issue-6767/repro.ref +++ b/roottest/root/meta/tclass/issue-6767/repro.ref @@ -1,4 +1,3 @@ - Processing /Users/pcanal/root_working/roottest/root/meta/tclass/issue-6767/repro.C... Info in : R__ASSERT(! (prop&kIsClass) && "Impossible code path") would have triggered Warning in : no dictionary for class CaloTowerTest is available diff --git a/roottest/root/meta/tclass/issue-6840/execPair.ref b/roottest/root/meta/tclass/issue-6840/execPair.ref index eb622fadcecdc..6caddd7f3d58e 100644 --- a/roottest/root/meta/tclass/issue-6840/execPair.ref +++ b/roottest/root/meta/tclass/issue-6840/execPair.ref @@ -1,4 +1,3 @@ - Processing /Users/pcanal/root_working/roottest/root/meta/tclass/issue-6840/execPair.C... Warning in : no dictionary for class pair is available Warning in : no dictionary for class SameAsShort is available diff --git a/roottest/root/meta/tclass/issue-6840/pairWrite.ref b/roottest/root/meta/tclass/issue-6840/pairWrite.ref index a949bb50f10c2..88b727214b2a1 100644 --- a/roottest/root/meta/tclass/issue-6840/pairWrite.ref +++ b/roottest/root/meta/tclass/issue-6840/pairWrite.ref @@ -1,3 +1,2 @@ - Processing /Users/pcanal/root_working/roottest/root/meta/tclass/issue-6840/pairWrite.C... (int) 0 diff --git a/roottest/root/meta/tclass/pairs.ref b/roottest/root/meta/tclass/pairs.ref index 66b036e90adab..a4033b9a1c075 100644 --- a/roottest/root/meta/tclass/pairs.ref +++ b/roottest/root/meta/tclass/pairs.ref @@ -1,2 +1 @@ - Processing runpairs.C+... diff --git a/roottest/root/meta/tclass/regression/ROOT-6020.ref b/roottest/root/meta/tclass/regression/ROOT-6020.ref index ff7d9ab2781d9..a861e213291c0 100644 --- a/roottest/root/meta/tclass/regression/ROOT-6020.ref +++ b/roottest/root/meta/tclass/regression/ROOT-6020.ref @@ -1,2 +1 @@ - Processing runROOT-6020.C... diff --git a/roottest/root/meta/tclass/regression/execNormalizationInf.ref b/roottest/root/meta/tclass/regression/execNormalizationInf.ref index 49c16d03ea682..64310bce179fd 100644 --- a/roottest/root/meta/tclass/regression/execNormalizationInf.ref +++ b/roottest/root/meta/tclass/regression/execNormalizationInf.ref @@ -1,2 +1 @@ - Processing execNormalizationInf.C... diff --git a/roottest/root/meta/tclass/regression/execROOT_6019.ref b/roottest/root/meta/tclass/regression/execROOT_6019.ref index f8d5a317f8397..0efc05fa66ba6 100644 --- a/roottest/root/meta/tclass/regression/execROOT_6019.ref +++ b/roottest/root/meta/tclass/regression/execROOT_6019.ref @@ -1,4 +1,3 @@ - Processing execROOT_6019.C... OBJ: TList TList Doubly linked list : 0 OBJ: TBaseClass B : 0 diff --git a/roottest/root/meta/tclass/regression/execROOT_6038.ref b/roottest/root/meta/tclass/regression/execROOT_6038.ref index 9c2876b013955..c82c03e1ce970 100644 --- a/roottest/root/meta/tclass/regression/execROOT_6038.ref +++ b/roottest/root/meta/tclass/regression/execROOT_6038.ref @@ -1,2 +1 @@ - Processing execROOT_6038.C... diff --git a/roottest/root/meta/tclass/regression/execROOT_6277.ref b/roottest/root/meta/tclass/regression/execROOT_6277.ref index 4757989e5813d..393b2d969ed54 100644 --- a/roottest/root/meta/tclass/regression/execROOT_6277.ref +++ b/roottest/root/meta/tclass/regression/execROOT_6277.ref @@ -1,4 +1,3 @@ - Processing execROOT_6277.cxx+... OBJ: TList TList Doubly linked list : 0 OBJ: TBaseClass boo::equality_comparable,boo::detail::false_t> : 0 diff --git a/roottest/root/meta/tclass/tclassStl.ref b/roottest/root/meta/tclass/tclassStl.ref index 97e5801031617..0da8f13c8296f 100644 --- a/roottest/root/meta/tclass/tclassStl.ref +++ b/roottest/root/meta/tclass/tclassStl.ref @@ -1,4 +1,3 @@ - Processing /uscms_data/d2/pcanal/eaf_root_working/code/quick-devel/roottest/root/meta/tclass/tclassStl.cxx+... Info in : creating shared library /home/pcanal/root_working/build/quick-devel/roottest/root/meta/tclass/tclassStl_cxx.so Main loop done: 0 diff --git a/roottest/root/meta/tclass/tempParse.ref b/roottest/root/meta/tclass/tempParse.ref index 94d7ea68235a1..2b404226d3d79 100644 --- a/roottest/root/meta/tclass/tempParse.ref +++ b/roottest/root/meta/tclass/tempParse.ref @@ -1,2 +1 @@ - Processing runtempParse.C... diff --git a/roottest/root/meta/templateAutoload.ref b/roottest/root/meta/templateAutoload.ref index f7dfb0423f284..c13499ceeece5 100644 --- a/roottest/root/meta/templateAutoload.ref +++ b/roottest/root/meta/templateAutoload.ref @@ -1,4 +1,3 @@ - Processing runtemplateAutoload.C... Float template instance object created. Int0 template instance object created. diff --git a/roottest/root/meta/templateAutoloadInclude.ref b/roottest/root/meta/templateAutoloadInclude.ref index 6e40324d6d3b7..42af252bfbb54 100644 --- a/roottest/root/meta/templateAutoloadInclude.ref +++ b/roottest/root/meta/templateAutoloadInclude.ref @@ -1,4 +1,3 @@ - Processing runtemplateAutoloadInclude.C... Generic Template object created. Float template instance object created. diff --git a/roottest/root/multicore/execautoloadts.ref b/roottest/root/multicore/execautoloadts.ref index 50ce75bcf0e79..61475b005301e 100644 --- a/roottest/root/multicore/execautoloadts.ref +++ b/roottest/root/multicore/execautoloadts.ref @@ -1,2 +1 @@ - Processing execautoloadts.C... diff --git a/roottest/root/multicore/exectsautoparse.ref b/roottest/root/multicore/exectsautoparse.ref index d38294eab3694..a52cba5143172 100644 --- a/roottest/root/multicore/exectsautoparse.ref +++ b/roottest/root/multicore/exectsautoparse.ref @@ -1,3 +1,2 @@ - Processing exectsautoparse.C... (int) 0 diff --git a/roottest/root/multicore/exectsenums.ref b/roottest/root/multicore/exectsenums.ref index 32ca7f2aa1a95..0a390eefc0cb1 100644 --- a/roottest/root/multicore/exectsenums.ref +++ b/roottest/root/multicore/exectsenums.ref @@ -1,4 +1,3 @@ - Processing exectsenums.C... Enum called enum1 was found Enum called enum2 was found diff --git a/roottest/root/multicore/exectsinclude.ref b/roottest/root/multicore/exectsinclude.ref index 1fd4947889c83..32e45f821ae7d 100644 --- a/roottest/root/multicore/exectsinclude.ref +++ b/roottest/root/multicore/exectsinclude.ref @@ -1,2 +1 @@ - Processing exectsinclude.C... diff --git a/roottest/root/multicore/exectstformula.ref b/roottest/root/multicore/exectstformula.ref index 948d854372bed..4c0ca2f05284d 100644 --- a/roottest/root/multicore/exectstformula.ref +++ b/roottest/root/multicore/exectstformula.ref @@ -1,2 +1 @@ - Processing exectstformula.C... diff --git a/roottest/root/multicore/tSemaphore.ref b/roottest/root/multicore/tSemaphore.ref index 453688ee3769f..d707c23239215 100644 --- a/roottest/root/multicore/tSemaphore.ref +++ b/roottest/root/multicore/tSemaphore.ref @@ -1,2 +1 @@ - main: 5 consumer threads signaled diff --git a/roottest/root/ntuple/test_basics.ref b/roottest/root/ntuple/test_basics.ref index a3e882e28a7c9..68b1ceb801a9d 100644 --- a/roottest/root/ntuple/test_basics.ref +++ b/roottest/root/ntuple/test_basics.ref @@ -1,5 +1,4 @@ Processing basics.C... - { "E": 137 } diff --git a/roottest/root/selector/simple/testLoadingSelector.ref b/roottest/root/selector/simple/testLoadingSelector.ref index 49a4e25eb18b6..ec6b9d0f237c0 100644 --- a/roottest/root/selector/simple/testLoadingSelector.ref +++ b/roottest/root/selector/simple/testLoadingSelector.ref @@ -1,4 +1,3 @@ - Processing runtestLoadingSelector.C... Executed testSelector ctor from JITed code testSelector result is 1 1 1 diff --git a/roottest/root/tree/addresses/BadBaseAddresses.ref b/roottest/root/tree/addresses/BadBaseAddresses.ref index af2efd6241370..08e67aa067ef8 100644 --- a/roottest/root/tree/addresses/BadBaseAddresses.ref +++ b/roottest/root/tree/addresses/BadBaseAddresses.ref @@ -1,4 +1,3 @@ - Processing runBadBaseAddresses.C... Filling: 10 .. 20 .. 30 .. 40 .. 50 .. 60 .. 70 .. 80 .. 90 .. 100 .. **** SmartRefCount=0 diff --git a/roottest/root/tree/addresses/EmbeddedTest.ref b/roottest/root/tree/addresses/EmbeddedTest.ref index 02261800df28c..ad8bc1e716841 100644 --- a/roottest/root/tree/addresses/EmbeddedTest.ref +++ b/roottest/root/tree/addresses/EmbeddedTest.ref @@ -1,4 +1,3 @@ - Processing embread.C... 0 351 embedded: 1.i:0 2.1.i:0 2.d:0 3.2.1.i:0 3.2.d:0 3.f:0 diff --git a/roottest/root/tree/addresses/Jantest.ref b/roottest/root/tree/addresses/Jantest.ref index b8edec05fee24..a92b266295ff2 100644 --- a/roottest/root/tree/addresses/Jantest.ref +++ b/roottest/root/tree/addresses/Jantest.ref @@ -1,4 +1,3 @@ - Processing runJantest.C... 1000 0 diff --git a/roottest/root/tree/addresses/Jet.ref b/roottest/root/tree/addresses/Jet.ref index 276dad3d82289..656db9a913cf0 100644 --- a/roottest/root/tree/addresses/Jet.ref +++ b/roottest/root/tree/addresses/Jet.ref @@ -1,4 +1,3 @@ - Processing runJet.C... In event 0 jet #0 value are correct 0,33,44,55,0 In event 0 jet #1 value are correct 0,33,44,55,1 diff --git a/roottest/root/tree/addresses/augertest.ref b/roottest/root/tree/addresses/augertest.ref index 88118d36b49f4..092d4d7561ccd 100644 --- a/roottest/root/tree/addresses/augertest.ref +++ b/roottest/root/tree/addresses/augertest.ref @@ -1,4 +1,3 @@ - Processing runaugertest.C... Warning in : no dictionary for class RecEvent is available Warning in : no dictionary for class Detector is available diff --git a/roottest/root/tree/addresses/baseString.ref b/roottest/root/tree/addresses/baseString.ref index 8474f47189b99..a8c7c1fa1bfc6 100644 --- a/roottest/root/tree/addresses/baseString.ref +++ b/roottest/root/tree/addresses/baseString.ref @@ -1,4 +1,3 @@ - Processing runbaseString.C+... 99 this is a test diff --git a/roottest/root/tree/addresses/configtest.ref b/roottest/root/tree/addresses/configtest.ref index d7e4c1e6a3e4d..072bd8293677e 100644 --- a/roottest/root/tree/addresses/configtest.ref +++ b/roottest/root/tree/addresses/configtest.ref @@ -1,4 +1,3 @@ - Processing suetestwrt.C... Filled entry 0 with 36 bytes. RecRecordImp::Print Header: diff --git a/roottest/root/tree/addresses/converterIssues/execROOT8794.ref b/roottest/root/tree/addresses/converterIssues/execROOT8794.ref index 794dde28984f4..bb2b69e406d74 100644 --- a/roottest/root/tree/addresses/converterIssues/execROOT8794.ref +++ b/roottest/root/tree/addresses/converterIssues/execROOT8794.ref @@ -1,4 +1,3 @@ - Processing execROOT8794.C... Event 0 hit 0: 0.001001 -0.000021 0.000111 -0.003980 0.000153 0.015872 0.000041 0.000040 -0.000136 0.000053 0.000002 0.000014 0.000002 -0.000002 0.000005 -0.000163 0.000013 0.000655 -0.000000 -0.000000 0.000039 Event 0 hit 1: 0.001001 -0.000021 0.000111 -0.003980 0.000153 0.015872 0.000041 0.000040 -0.000136 0.000053 0.000002 0.000014 0.000002 -0.000002 0.000005 -0.000163 0.000013 0.000655 -0.000000 -0.000000 0.000039 diff --git a/roottest/root/tree/addresses/converterIssues/execReader.ref b/roottest/root/tree/addresses/converterIssues/execReader.ref index 31c69078ebc17..d02302c666e15 100644 --- a/roottest/root/tree/addresses/converterIssues/execReader.ref +++ b/roottest/root/tree/addresses/converterIssues/execReader.ref @@ -1,4 +1,3 @@ - Processing execReader.cxx+... Warning in : no dictionary for class EventFormat_p1 is available Info in : Opened the input file diff --git a/roottest/root/tree/addresses/converterIssues/execWriter.ref b/roottest/root/tree/addresses/converterIssues/execWriter.ref index c1c4d280bbfc3..9e0331b431718 100644 --- a/roottest/root/tree/addresses/converterIssues/execWriter.ref +++ b/roottest/root/tree/addresses/converterIssues/execWriter.ref @@ -1,4 +1,3 @@ - Processing execWriter.cxx+... Info in : Opened the output file Info in : Created a TTree called "CollectionTree" diff --git a/roottest/root/tree/addresses/deepnest.ref b/roottest/root/tree/addresses/deepnest.ref index d66736f80245a..538129925fd9e 100644 --- a/roottest/root/tree/addresses/deepnest.ref +++ b/roottest/root/tree/addresses/deepnest.ref @@ -1,2 +1 @@ - Processing rundeepnest.C+... diff --git a/roottest/root/tree/addresses/execBranchObjSplit0.ref b/roottest/root/tree/addresses/execBranchObjSplit0.ref index ee2b2330238c1..1ce2eaa19c52e 100644 --- a/roottest/root/tree/addresses/execBranchObjSplit0.ref +++ b/roottest/root/tree/addresses/execBranchObjSplit0.ref @@ -1,4 +1,3 @@ - Processing execBranchObjSplit0.C... ************************ * Row * Pos.X() * diff --git a/roottest/root/tree/addresses/execCMSobj.ref b/roottest/root/tree/addresses/execCMSobj.ref index add9f08bec60c..53d71567c8d93 100644 --- a/roottest/root/tree/addresses/execCMSobj.ref +++ b/roottest/root/tree/addresses/execCMSobj.ref @@ -1,4 +1,3 @@ - Processing execCMSobj.cxx+... Writing Printing Outside diff --git a/roottest/root/tree/addresses/execCheckErrors.ref b/roottest/root/tree/addresses/execCheckErrors.ref index 118ef79ec4e22..5769366af1d0f 100644 --- a/roottest/root/tree/addresses/execCheckErrors.ref +++ b/roottest/root/tree/addresses/execCheckErrors.ref @@ -1,4 +1,3 @@ - Processing execCheckErrors.C... ALL should be FINE ... diff --git a/roottest/root/tree/addresses/execLeaflist.ref b/roottest/root/tree/addresses/execLeaflist.ref index c4125f862e8dd..29123bbf44ec5 100644 --- a/roottest/root/tree/addresses/execLeaflist.ref +++ b/roottest/root/tree/addresses/execLeaflist.ref @@ -1,4 +1,3 @@ - Processing execLeaflist.C... ****************************************************************************** *Tree :VBF : New VBF samples with matrix inserted on struct * diff --git a/roottest/root/tree/addresses/execReuseTree.ref b/roottest/root/tree/addresses/execReuseTree.ref index e2e2813896454..c369432ef0d30 100644 --- a/roottest/root/tree/addresses/execReuseTree.ref +++ b/roottest/root/tree/addresses/execReuseTree.ref @@ -1,3 +1,2 @@ - Processing execReuseTree.C... Creating Branch diff --git a/roottest/root/tree/addresses/headerTest.ref b/roottest/root/tree/addresses/headerTest.ref index 7568f64f0e38b..278d034696c90 100644 --- a/roottest/root/tree/addresses/headerTest.ref +++ b/roottest/root/tree/addresses/headerTest.ref @@ -1,4 +1,3 @@ - Processing runHeader.C... There are no reasons to not have the branch EventBad.STreeEvent.Clusters The branch is missing only because it is located inside a base class!!! diff --git a/roottest/root/tree/addresses/inheritAndOwn.ref b/roottest/root/tree/addresses/inheritAndOwn.ref index 86333db0b1129..ba722f5cb3b07 100644 --- a/roottest/root/tree/addresses/inheritAndOwn.ref +++ b/roottest/root/tree/addresses/inheritAndOwn.ref @@ -1,4 +1,3 @@ - Processing runinheritAndOwn.C... ObjectInitialization: OK WriteObject: OK diff --git a/roottest/root/tree/addresses/inheritTest.ref b/roottest/root/tree/addresses/inheritTest.ref index 81e02eb418ba6..124b4130b198f 100644 --- a/roottest/root/tree/addresses/inheritTest.ref +++ b/roottest/root/tree/addresses/inheritTest.ref @@ -1,4 +1,3 @@ - Processing runInherit.C... Resetting the branch addresses For pEvent val is : 3 diff --git a/roottest/root/tree/addresses/iobug.ref b/roottest/root/tree/addresses/iobug.ref index e959469b854a4..db5d60c3ac5bc 100644 --- a/roottest/root/tree/addresses/iobug.ref +++ b/roottest/root/tree/addresses/iobug.ref @@ -1,4 +1,3 @@ - Processing runiobug.C... ********************************************************************************* * Row * fMarkerColor * fMarkerSize * graph.fMarkerStyle * diff --git a/roottest/root/tree/addresses/longlong.ref b/roottest/root/tree/addresses/longlong.ref index 08fe3e1c50cd8..4bb66964bf6cc 100644 --- a/roottest/root/tree/addresses/longlong.ref +++ b/roottest/root/tree/addresses/longlong.ref @@ -1,4 +1,3 @@ - Processing runlonglong.C+... ======> EVENT:-1 A = 13 diff --git a/roottest/root/tree/addresses/memleak.ref b/roottest/root/tree/addresses/memleak.ref index ee4397727f5e4..02304bd4be5b5 100644 --- a/roottest/root/tree/addresses/memleak.ref +++ b/roottest/root/tree/addresses/memleak.ref @@ -1,4 +1,3 @@ - Processing runmemleak.C+... ****************************************************************************** *Tree :MonoData : branch=mono class=TMyData * diff --git a/roottest/root/tree/addresses/merging.ref b/roottest/root/tree/addresses/merging.ref index 47491cc783511..a97ec9f269d65 100644 --- a/roottest/root/tree/addresses/merging.ref +++ b/roottest/root/tree/addresses/merging.ref @@ -1,4 +1,3 @@ - Processing runmerging.C... ****************************************************************************** *Tree :zzz : Argument * diff --git a/roottest/root/tree/addresses/prova.ref b/roottest/root/tree/addresses/prova.ref index 6a0693caf8fe9..bbed59d2384bd 100644 --- a/roottest/root/tree/addresses/prova.ref +++ b/roottest/root/tree/addresses/prova.ref @@ -1,4 +1,3 @@ - Processing runprova.C... Info in : created default TCanvas with name c1 ************************ diff --git a/roottest/root/tree/addresses/relationsTest.ref b/roottest/root/tree/addresses/relationsTest.ref index 27fb7869699fa..838ea6290bd67 100644 --- a/roottest/root/tree/addresses/relationsTest.ref +++ b/roottest/root/tree/addresses/relationsTest.ref @@ -1,4 +1,3 @@ - Processing relationsRun.C... relations' write byte written for entry #0: 62 diff --git a/roottest/root/tree/addresses/suetest.ref b/roottest/root/tree/addresses/suetest.ref index aa4146ae7079f..03db8e888633e 100644 --- a/roottest/root/tree/addresses/suetest.ref +++ b/roottest/root/tree/addresses/suetest.ref @@ -1,4 +1,3 @@ - Processing suetestrd.C... Retrieved entry 0 with 36 bytes. RecRecordImp::Print Header: diff --git a/roottest/root/tree/addresses/treeBranch.ref b/roottest/root/tree/addresses/treeBranch.ref index d68f6816df3ec..50e61e9ebfac0 100644 --- a/roottest/root/tree/addresses/treeBranch.ref +++ b/roottest/root/tree/addresses/treeBranch.ref @@ -1,4 +1,3 @@ - Processing runtreeBranch.C... ****************************************************************************** *Tree : : * diff --git a/roottest/root/tree/addresses/treeBranch.ref-missingUnloading b/roottest/root/tree/addresses/treeBranch.ref-missingUnloading index 21d7296cae453..ccbd7361fcfe2 100644 --- a/roottest/root/tree/addresses/treeBranch.ref-missingUnloading +++ b/roottest/root/tree/addresses/treeBranch.ref-missingUnloading @@ -1,4 +1,3 @@ - Processing runtreeBranch.C... Warning in : The actual TClass corresponding to the object provided for the definition of the branch "missing" is missing. The object will be truncated down to its TopLevel part diff --git a/roottest/root/tree/addresses/ursula.ref b/roottest/root/tree/addresses/ursula.ref index 4cc59f53e12e7..f85765b12684f 100644 --- a/roottest/root/tree/addresses/ursula.ref +++ b/roottest/root/tree/addresses/ursula.ref @@ -1,4 +1,3 @@ - Processing runursula.C... Warning in : no dictionary for class edm::ProductRegistry is available Warning in : no dictionary for class edm::BranchKey is available diff --git a/roottest/root/tree/array/execStdArray.ref b/roottest/root/tree/array/execStdArray.ref index aa76afbf88416..9b4c1cc546102 100644 --- a/roottest/root/tree/array/execStdArray.ref +++ b/roottest/root/tree/array/execStdArray.ref @@ -1,4 +1,3 @@ - Processing execStdArray.C... *********************************************** * Row * Instance * arr1 * arr2 * diff --git a/roottest/root/tree/array/objArrayTest.ref b/roottest/root/tree/array/objArrayTest.ref index 0157ea97de13d..814dd2881c2a8 100644 --- a/roottest/root/tree/array/objArrayTest.ref +++ b/roottest/root/tree/array/objArrayTest.ref @@ -1,3 +1,2 @@ - Processing runobjArrayTest.C... Info in : created default TCanvas with name c1 diff --git a/roottest/root/tree/array/objArrayTest2.ref b/roottest/root/tree/array/objArrayTest2.ref index ea76501e7b9fd..4dddeec148a2f 100644 --- a/roottest/root/tree/array/objArrayTest2.ref +++ b/roottest/root/tree/array/objArrayTest2.ref @@ -1,4 +1,3 @@ - Processing run2.C... np==11 nt ==11 diff --git a/roottest/root/tree/basket/dropbasket.ref b/roottest/root/tree/basket/dropbasket.ref index 8c0fc175274af..260859371affd 100644 --- a/roottest/root/tree/basket/dropbasket.ref +++ b/roottest/root/tree/basket/dropbasket.ref @@ -1,4 +1,3 @@ - Processing rundropbasket.C... Warning in : no dictionary for class XFolder is available Warning in : no dictionary for class XPosition is available diff --git a/roottest/root/tree/branches/abc.ref b/roottest/root/tree/branches/abc.ref index 1f2710bc8913a..df32ef8c41bd1 100644 --- a/roottest/root/tree/branches/abc.ref +++ b/roottest/root/tree/branches/abc.ref @@ -1,4 +1,3 @@ - Processing abcread.C... 20: read d.abc==20, d.derived==19 40: read d.abc==40, d.derived==39 diff --git a/roottest/root/tree/branches/execDupNames.ref b/roottest/root/tree/branches/execDupNames.ref index a0277d9d21127..b1db2c2e1804c 100644 --- a/roottest/root/tree/branches/execDupNames.ref +++ b/roottest/root/tree/branches/execDupNames.ref @@ -1,2 +1 @@ - Processing execDupNames.cxx+... diff --git a/roottest/root/tree/branches/execEmptyBase.ref b/roottest/root/tree/branches/execEmptyBase.ref index d88f9fc621980..379925c6db655 100644 --- a/roottest/root/tree/branches/execEmptyBase.ref +++ b/roottest/root/tree/branches/execEmptyBase.ref @@ -1,3 +1,2 @@ - Processing execEmptyBase.cxx+... (int) 0 diff --git a/roottest/root/tree/branches/execGetBranch.ref b/roottest/root/tree/branches/execGetBranch.ref index 31ad66b7fe59b..077f0f3c5d701 100644 --- a/roottest/root/tree/branches/execGetBranch.ref +++ b/roottest/root/tree/branches/execGetBranch.ref @@ -1,4 +1,3 @@ - Processing execGetBranch.cxx+... Leaf name: i full name: i branch name: i branch full name: i Leaf name: x full name: i.x branch name: x branch full name: i.x diff --git a/roottest/root/tree/branches/execLeafFullName.ref b/roottest/root/tree/branches/execLeafFullName.ref index 0c24b209ffdec..647f072ec0f57 100644 --- a/roottest/root/tree/branches/execLeafFullName.ref +++ b/roottest/root/tree/branches/execLeafFullName.ref @@ -1,4 +1,3 @@ - Processing execLeafFullName.cxx+... OBJ: TObjArray TObjArray An array of objects : 0 OBJ: TLeafElement arr_ arr_ : 0 diff --git a/roottest/root/tree/branches/execWriteRead.ref b/roottest/root/tree/branches/execWriteRead.ref index f5a82441fff58..a73533298f893 100644 --- a/roottest/root/tree/branches/execWriteRead.ref +++ b/roottest/root/tree/branches/execWriteRead.ref @@ -1,2 +1 @@ - Processing execWriteRead.C... diff --git a/roottest/root/tree/branches/execbref.ref b/roottest/root/tree/branches/execbref.ref index 6f309808766bb..172c73b62af69 100644 --- a/roottest/root/tree/branches/execbref.ref +++ b/roottest/root/tree/branches/execbref.ref @@ -1,2 +1 @@ - Processing execbref.C... diff --git a/roottest/root/tree/branches/i_simple.ref b/roottest/root/tree/branches/i_simple.ref index 1d212c05b18b0..17c170cddc35e 100644 --- a/roottest/root/tree/branches/i_simple.ref +++ b/roottest/root/tree/branches/i_simple.ref @@ -1,4 +1,3 @@ - Processing runsimple.C... *********************************************** * Row * Instance * vec * value.val * diff --git a/roottest/root/tree/branches/noname.ref b/roottest/root/tree/branches/noname.ref index 0b4e6ca09f3cc..6559e9974a7ea 100644 --- a/roottest/root/tree/branches/noname.ref +++ b/roottest/root/tree/branches/noname.ref @@ -1,4 +1,3 @@ - Processing runnoname.C... Warning in : No name was given to the leaf number '1' in the leaflist of the branch 'nhitshcal'. Warning in : No name was given to the leaf number '2' in the leaflist of the branch 'nhitshcal'. diff --git a/roottest/root/tree/branches/separate.ref b/roottest/root/tree/branches/separate.ref index 11e7416e0fc5e..1c66f9c1cacd6 100644 --- a/roottest/root/tree/branches/separate.ref +++ b/roottest/root/tree/branches/separate.ref @@ -1,2 +1 @@ - Processing runseparate.C... diff --git a/roottest/root/tree/branches/simple.ref b/roottest/root/tree/branches/simple.ref index 608fdc1e5c555..f1b7cde6a1166 100644 --- a/roottest/root/tree/branches/simple.ref +++ b/roottest/root/tree/branches/simple.ref @@ -1,4 +1,3 @@ - Processing runsimple.C+... *********************************************** * Row * Instance * vec * value.val * diff --git a/roottest/root/tree/branches/updates.ref b/roottest/root/tree/branches/updates.ref index 6bd2304c724a8..19ae50fc64cba 100644 --- a/roottest/root/tree/branches/updates.ref +++ b/roottest/root/tree/branches/updates.ref @@ -1,4 +1,3 @@ - Processing runupdates.C... i = 0 i = 1 diff --git a/roottest/root/tree/cache/assertTooSmall.ref b/roottest/root/tree/cache/assertTooSmall.ref index 2b1dcfefbaf30..1b029b300df99 100644 --- a/roottest/root/tree/cache/assertTooSmall.ref +++ b/roottest/root/tree/cache/assertTooSmall.ref @@ -1,4 +1,3 @@ - Processing assertTooSmall.C... regular: Running test: skip=1 wrongOrder=1 uselarge=1 ****************************************************************************** diff --git a/roottest/root/tree/cache/autocacheLZ4.ref b/roottest/root/tree/cache/autocacheLZ4.ref index 88080e5101a2d..3b0a91e99ec57 100644 --- a/roottest/root/tree/cache/autocacheLZ4.ref +++ b/roottest/root/tree/cache/autocacheLZ4.ref @@ -1,4 +1,3 @@ - Processing runautocache.C... Starting runautocache() test diff --git a/roottest/root/tree/cache/autocacheZLIB.ref b/roottest/root/tree/cache/autocacheZLIB.ref index 06207bf98464f..36faac4bd9415 100644 --- a/roottest/root/tree/cache/autocacheZLIB.ref +++ b/roottest/root/tree/cache/autocacheZLIB.ref @@ -1,4 +1,3 @@ - Processing roottest/root/tree/cache/runautocache.C... Starting runautocache() test diff --git a/roottest/root/tree/cache/autocacheZLIB_builtinzlib.ref b/roottest/root/tree/cache/autocacheZLIB_builtinzlib.ref index 6026a963a7328..1b465787be52a 100644 --- a/roottest/root/tree/cache/autocacheZLIB_builtinzlib.ref +++ b/roottest/root/tree/cache/autocacheZLIB_builtinzlib.ref @@ -1,4 +1,3 @@ - Processing roottest/root/tree/cache/runautocache.C... Starting runautocache() test diff --git a/roottest/root/tree/cache/cachedchain.ref b/roottest/root/tree/cache/cachedchain.ref index e3c76bc54e6ae..2dd30af2f07bb 100644 --- a/roottest/root/tree/cache/cachedchain.ref +++ b/roottest/root/tree/cache/cachedchain.ref @@ -1,2 +1 @@ - Processing runcachedchain.C... diff --git a/roottest/root/tree/cache/execCacheRange.ref b/roottest/root/tree/cache/execCacheRange.ref index fa0134ac18607..144b1cca8eebd 100644 --- a/roottest/root/tree/cache/execCacheRange.ref +++ b/roottest/root/tree/cache/execCacheRange.ref @@ -1,3 +1,2 @@ - Processing execCacheRange.C... (int) 0 diff --git a/roottest/root/tree/cache/execLastCluster.ref b/roottest/root/tree/cache/execLastCluster.ref index c034070b48e0d..c51f582b777a7 100644 --- a/roottest/root/tree/cache/execLastCluster.ref +++ b/roottest/root/tree/cache/execLastCluster.ref @@ -1,4 +1,3 @@ - Processing /Users/pcanal/root_working/roottest/root/tree/cache/execLastCluster.C... Estimate cluster size: 3030 ****************************************************************************** diff --git a/roottest/root/tree/cache/execTestCache.ref b/roottest/root/tree/cache/execTestCache.ref index efe3c2a35742c..9bcfdcb6adbc5 100644 --- a/roottest/root/tree/cache/execTestCache.ref +++ b/roottest/root/tree/cache/execTestCache.ref @@ -1,2 +1 @@ - Processing execTestCache.cxx+... diff --git a/roottest/root/tree/cache/execTestMissCache.ref b/roottest/root/tree/cache/execTestMissCache.ref index 56bec2c1c758c..7a567e0da1485 100644 --- a/roottest/root/tree/cache/execTestMissCache.ref +++ b/roottest/root/tree/cache/execTestMissCache.ref @@ -1,4 +1,3 @@ - Disabledmisscache: Missefficiency:0.00 Missrelativeefficiency:0.00 diff --git a/roottest/root/tree/cache/execperfstattestLZ4.oref b/roottest/root/tree/cache/execperfstattestLZ4.oref index 994f612de88e1..7f91a9da63c36 100644 --- a/roottest/root/tree/cache/execperfstattestLZ4.oref +++ b/roottest/root/tree/cache/execperfstattestLZ4.oref @@ -1,4 +1,3 @@ - Processing execperfstattest.C... 15 15 diff --git a/roottest/root/tree/cache/execperfstattestZLIB.oref b/roottest/root/tree/cache/execperfstattestZLIB.oref index 994f612de88e1..7f91a9da63c36 100644 --- a/roottest/root/tree/cache/execperfstattestZLIB.oref +++ b/roottest/root/tree/cache/execperfstattestZLIB.oref @@ -1,4 +1,3 @@ - Processing execperfstattest.C... 15 15 diff --git a/roottest/root/tree/cache/multiTreeLZ4.ref b/roottest/root/tree/cache/multiTreeLZ4.ref index 8719046a4e9bc..40b4303ecc555 100644 --- a/roottest/root/tree/cache/multiTreeLZ4.ref +++ b/roottest/root/tree/cache/multiTreeLZ4.ref @@ -1,4 +1,3 @@ - Processing runmultiTree.C... ******TreeCache statistics for tree: tree1 in file: multi.root ****** Number of branches in the cache ...: 300 diff --git a/roottest/root/tree/cache/multiTreeZLIB.ref b/roottest/root/tree/cache/multiTreeZLIB.ref index ffd70a2ccf749..ab5a5035e5272 100644 --- a/roottest/root/tree/cache/multiTreeZLIB.ref +++ b/roottest/root/tree/cache/multiTreeZLIB.ref @@ -1,4 +1,3 @@ - Processing runmultiTree.C... ******TreeCache statistics for tree: tree1 in file: multi.root ****** Number of branches in the cache ...: 300 diff --git a/roottest/root/tree/chain/execChainElementStatus.ref b/roottest/root/tree/chain/execChainElementStatus.ref index 4834c1e03df32..1b238b369aed3 100644 --- a/roottest/root/tree/chain/execChainElementStatus.ref +++ b/roottest/root/tree/chain/execChainElementStatus.ref @@ -1,4 +1,3 @@ - Processing execChainElementStatus.C... Error in : file st-doesnotexist.root does not exist Error in : Cannot find tree with name tester in file st-notree.root diff --git a/roottest/root/tree/chain/execCleanup.ref b/roottest/root/tree/chain/execCleanup.ref index f2686c8c8e41f..d738b3fdb0d07 100644 --- a/roottest/root/tree/chain/execCleanup.ref +++ b/roottest/root/tree/chain/execCleanup.ref @@ -1,3 +1,2 @@ - Processing execCleanup.C... (int) 0 diff --git a/roottest/root/tree/chain/execEmpty.ref b/roottest/root/tree/chain/execEmpty.ref index afb582644d0e4..343f9549657a7 100644 --- a/roottest/root/tree/chain/execEmpty.ref +++ b/roottest/root/tree/chain/execEmpty.ref @@ -1,4 +1,3 @@ - Processing execEmpty.C... Notify called for a tree with 0 entries Notify called for a tree with 10 entries diff --git a/roottest/root/tree/chain/execNotify.ref b/roottest/root/tree/chain/execNotify.ref index bf0b8fc40a7ad..53fadd1701c09 100644 --- a/roottest/root/tree/chain/execNotify.ref +++ b/roottest/root/tree/chain/execNotify.ref @@ -1,4 +1,3 @@ - Processing execNotify.C... Error in : argument is a null pointer First notify diff --git a/roottest/root/tree/chain/execTChainCleanup.ref b/roottest/root/tree/chain/execTChainCleanup.ref index 3094c1416553a..b203a20d27a94 100644 --- a/roottest/root/tree/chain/execTChainCleanup.ref +++ b/roottest/root/tree/chain/execTChainCleanup.ref @@ -1,4 +1,3 @@ - Processing execTChainCleanup.cxx+... created TChain. found in ListOfCleanups using member function FindObject() diff --git a/roottest/root/tree/chain/execfilenameformats.ref b/roottest/root/tree/chain/execfilenameformats.ref index 24b407bee5d92..c43f57e12d995 100644 --- a/roottest/root/tree/chain/execfilenameformats.ref +++ b/roottest/root/tree/chain/execfilenameformats.ref @@ -1,4 +1,3 @@ - Processing execfilenameformats.C... Making ntuple file ff_n1.root Making ntuple file ff_n2.root diff --git a/roottest/root/tree/chain/execmissingIndex.ref b/roottest/root/tree/chain/execmissingIndex.ref index c5d919dca1c3d..1dac68d55a1e7 100644 --- a/roottest/root/tree/chain/execmissingIndex.ref +++ b/roottest/root/tree/chain/execmissingIndex.ref @@ -1,4 +1,3 @@ - Processing execmissingIndex.C... Scanning using the original friend Warning in : The indices in files of this chain aren't sorted. diff --git a/roottest/root/tree/chain/execresetbranch.ref b/roottest/root/tree/chain/execresetbranch.ref index 701ddc29fc0f6..5bcb81c7519f9 100644 --- a/roottest/root/tree/chain/execresetbranch.ref +++ b/roottest/root/tree/chain/execresetbranch.ref @@ -1,4 +1,3 @@ - Processing execresetbranch.C... Making ntuple file n1.root Making ntuple file n2.root diff --git a/roottest/root/tree/chain/subdir.ref b/roottest/root/tree/chain/subdir.ref index e64ed54b3ff3d..e839399f698e3 100644 --- a/roottest/root/tree/chain/subdir.ref +++ b/roottest/root/tree/chain/subdir.ref @@ -1,4 +1,3 @@ - Processing runsubdir.C... TChain::AddFile Trying subdir.root/data1.root with a tree name diff --git a/roottest/root/tree/cloning/references/deepClass.ref b/roottest/root/tree/cloning/references/deepClass.ref index e0825a8c5641d..6209bae9cc44a 100644 --- a/roottest/root/tree/cloning/references/deepClass.ref +++ b/roottest/root/tree/cloning/references/deepClass.ref @@ -1,4 +1,3 @@ - Processing rundeepClass.C... Warning in : no dictionary for class VldContext is available Warning in : no dictionary for class VldTimeStamp is available diff --git a/roottest/root/tree/cloning/references/exectrimLZ4.ref b/roottest/root/tree/cloning/references/exectrimLZ4.ref index 6e33128fa0a36..2224d6426200a 100644 --- a/roottest/root/tree/cloning/references/exectrimLZ4.ref +++ b/roottest/root/tree/cloning/references/exectrimLZ4.ref @@ -1,4 +1,3 @@ - Processing exectrim.C... Warning in : no dictionary for class Belle2::ARICHAeroHit is available Warning in : no dictionary for class Belle2::RelationsInterface is available diff --git a/roottest/root/tree/cloning/references/exectrimLZ4_i686.ref b/roottest/root/tree/cloning/references/exectrimLZ4_i686.ref index 04016b4723d78..e1f78bd380a18 100644 --- a/roottest/root/tree/cloning/references/exectrimLZ4_i686.ref +++ b/roottest/root/tree/cloning/references/exectrimLZ4_i686.ref @@ -1,4 +1,3 @@ - Processing exectrim.C... Warning in : no dictionary for class Belle2::ARICHAeroHit is available Warning in : no dictionary for class Belle2::RelationsInterface is available diff --git a/roottest/root/tree/cloning/references/exectrimZLIB.ref b/roottest/root/tree/cloning/references/exectrimZLIB.ref index a7ed5c98803e7..60feedad48256 100644 --- a/roottest/root/tree/cloning/references/exectrimZLIB.ref +++ b/roottest/root/tree/cloning/references/exectrimZLIB.ref @@ -1,4 +1,3 @@ - Processing exectrim.C... Warning in : no dictionary for class Belle2::ARICHAeroHit is available Warning in : no dictionary for class Belle2::RelationsInterface is available diff --git a/roottest/root/tree/cloning/references/exectrimZLIB_builtinzlib.ref b/roottest/root/tree/cloning/references/exectrimZLIB_builtinzlib.ref index 9ec5a3f2ba6b8..88e2879f3d6f0 100644 --- a/roottest/root/tree/cloning/references/exectrimZLIB_builtinzlib.ref +++ b/roottest/root/tree/cloning/references/exectrimZLIB_builtinzlib.ref @@ -1,4 +1,3 @@ - Processing exectrim.C... Warning in : no dictionary for class Belle2::ARICHAeroHit is available Warning in : no dictionary for class Belle2::RelationsInterface is available diff --git a/roottest/root/tree/cloning/references/exectrimZLIB_i686.ref b/roottest/root/tree/cloning/references/exectrimZLIB_i686.ref index 64fb7c94d4708..93085a63c3c7e 100644 --- a/roottest/root/tree/cloning/references/exectrimZLIB_i686.ref +++ b/roottest/root/tree/cloning/references/exectrimZLIB_i686.ref @@ -1,4 +1,3 @@ - Processing exectrim.C... Warning in : no dictionary for class Belle2::ARICHAeroHit is available Warning in : no dictionary for class Belle2::RelationsInterface is available diff --git a/roottest/root/tree/cloning/references/exectrimZLIB_i686_win32.ref b/roottest/root/tree/cloning/references/exectrimZLIB_i686_win32.ref index 6ae3974fb79b8..5cc2280337069 100644 --- a/roottest/root/tree/cloning/references/exectrimZLIB_i686_win32.ref +++ b/roottest/root/tree/cloning/references/exectrimZLIB_i686_win32.ref @@ -1,4 +1,3 @@ - Processing exectrim.C... Warning in : no dictionary for class Belle2::ARICHAeroHit is available Warning in : no dictionary for class Belle2::RelationsInterface is available diff --git a/roottest/root/tree/cloning/references/index.ref b/roottest/root/tree/cloning/references/index.ref index 0291bd9b4fe84..d430f4b557ff6 100644 --- a/roottest/root/tree/cloning/references/index.ref +++ b/roottest/root/tree/cloning/references/index.ref @@ -1,4 +1,3 @@ - Processing runindex.C... ************************************************ * Row * event.run * event.eve * event.val * diff --git a/roottest/root/tree/cloning/references/mergeWithDir.ref b/roottest/root/tree/cloning/references/mergeWithDir.ref index 7f5a87c60d764..3c1605ab81ac0 100644 --- a/roottest/root/tree/cloning/references/mergeWithDir.ref +++ b/roottest/root/tree/cloning/references/mergeWithDir.ref @@ -1,4 +1,3 @@ - Processing runmergeWithDir.C... TFile** merged.root chain files TFile* merged.root chain files diff --git a/roottest/root/tree/cloning/references/treeCloneTest.ref b/roottest/root/tree/cloning/references/treeCloneTest.ref index 08febffff00b6..130fb45c8017d 100644 --- a/roottest/root/tree/cloning/references/treeCloneTest.ref +++ b/roottest/root/tree/cloning/references/treeCloneTest.ref @@ -1,2 +1 @@ - Processing runEvent.C... diff --git a/roottest/root/tree/cloning/references/treeCloneTest2.ref b/roottest/root/tree/cloning/references/treeCloneTest2.ref index 87ae0761bf627..8008720693f4a 100644 --- a/roottest/root/tree/cloning/references/treeCloneTest2.ref +++ b/roottest/root/tree/cloning/references/treeCloneTest2.ref @@ -1,4 +1,3 @@ - Processing runtreeCloneTest2.C... Warning in : no dictionary for class TChargedPionEvent is available Warning in : no dictionary for class TChargedPion is available diff --git a/roottest/root/tree/entrylist/chain.ref b/roottest/root/tree/entrylist/chain.ref index 7619eb6457dc8..d8148752acc5b 100644 --- a/roottest/root/tree/entrylist/chain.ref +++ b/roottest/root/tree/entrylist/chain.ref @@ -1,2 +1 @@ - Processing runchain.C... diff --git a/roottest/root/tree/entrylist/execTEntryListArray.ref b/roottest/root/tree/entrylist/execTEntryListArray.ref index 648ab17198770..aadd9e0f4101d 100644 --- a/roottest/root/tree/entrylist/execTEntryListArray.ref +++ b/roottest/root/tree/entrylist/execTEntryListArray.ref @@ -1,4 +1,3 @@ - Processing execTEntryListArray.cxx+... *************************************** ***** Testing TEntryListArray ***** diff --git a/roottest/root/tree/entrylist/execTEntryListZip.ref b/roottest/root/tree/entrylist/execTEntryListZip.ref index 9b4bf890c1a5f..75f13adfbd4dc 100644 --- a/roottest/root/tree/entrylist/execTEntryListZip.ref +++ b/roottest/root/tree/entrylist/execTEntryListZip.ref @@ -1,3 +1,2 @@ - Processing execTEntryListZip.cxx+... (int) 0 diff --git a/roottest/root/tree/evolution/ReadClones.ref b/roottest/root/tree/evolution/ReadClones.ref index 252b657d504f4..30d7539e72404 100644 --- a/roottest/root/tree/evolution/ReadClones.ref +++ b/roottest/root/tree/evolution/ReadClones.ref @@ -1,4 +1,3 @@ - Processing ReadClones.C... Processing clonesfile.root ************************************************************* diff --git a/roottest/root/tree/evolution/ReadList.ref b/roottest/root/tree/evolution/ReadList.ref index 00c613a6b7b9b..0531464faaa4d 100644 --- a/roottest/root/tree/evolution/ReadList.ref +++ b/roottest/root/tree/evolution/ReadList.ref @@ -1,4 +1,3 @@ - Processing ReadList.C... ************************************************************* * Row * Instance * fTracks.fEnergy * diff --git a/roottest/root/tree/evolution/ReadNolib.ref b/roottest/root/tree/evolution/ReadNolib.ref index c163410e6ed03..a0ff212b2dcbc 100644 --- a/roottest/root/tree/evolution/ReadNolib.ref +++ b/roottest/root/tree/evolution/ReadNolib.ref @@ -1,4 +1,3 @@ - Processing ReadNolib.C... Warning in : no dictionary for class TopLevel is available Warning in : no dictionary for class Track is available diff --git a/roottest/root/tree/evolution/ReadVector.ref b/roottest/root/tree/evolution/ReadVector.ref index dd7ba60c167cd..7f6988a5b5110 100644 --- a/roottest/root/tree/evolution/ReadVector.ref +++ b/roottest/root/tree/evolution/ReadVector.ref @@ -1,4 +1,3 @@ - Processing ReadVector.C... ************************************************************* * Row * Instance * fTracks.fEnergy * diff --git a/roottest/root/tree/evolution/SimpleRead.ref b/roottest/root/tree/evolution/SimpleRead.ref index 8ac95cf9aa5d9..119c174d5e3f3 100644 --- a/roottest/root/tree/evolution/SimpleRead.ref +++ b/roottest/root/tree/evolution/SimpleRead.ref @@ -1,4 +1,3 @@ - Processing SimpleRead.C... Warning in : no dictionary for class Simple is available Warning in : no dictionary for class Content is available diff --git a/roottest/root/tree/evolution/cloning.ref b/roottest/root/tree/evolution/cloning.ref index fd63cdc9d3112..880385d29b95d 100644 --- a/roottest/root/tree/evolution/cloning.ref +++ b/roottest/root/tree/evolution/cloning.ref @@ -1,3 +1,2 @@ - Processing runcloning.C... Warning in : no dictionary for class cloning is available diff --git a/roottest/root/tree/evolution/execMissingCollection.ref b/roottest/root/tree/evolution/execMissingCollection.ref index 99a104c46301d..4db9c7812017d 100644 --- a/roottest/root/tree/evolution/execMissingCollection.ref +++ b/roottest/root/tree/evolution/execMissingCollection.ref @@ -1,3 +1,2 @@ - Processing execMissingCollection.cxx+... (int)0 diff --git a/roottest/root/tree/evolution/missingArray.ref b/roottest/root/tree/evolution/missingArray.ref index cf05998ada704..61595e7fd973c 100644 --- a/roottest/root/tree/evolution/missingArray.ref +++ b/roottest/root/tree/evolution/missingArray.ref @@ -1,3 +1,2 @@ - Processing missingArray2.cc+... (int)0 diff --git a/roottest/root/tree/evolution/split/execCreateFileFullObjRule.ref b/roottest/root/tree/evolution/split/execCreateFileFullObjRule.ref index 21ccbb7b3d3cd..3caba23218f01 100644 --- a/roottest/root/tree/evolution/split/execCreateFileFullObjRule.ref +++ b/roottest/root/tree/evolution/split/execCreateFileFullObjRule.ref @@ -1,3 +1,2 @@ - Processing execCreateFileFullObjRule.cxx+... (int) 0 diff --git a/roottest/root/tree/evolution/split/execReadFileFullObjRule.ref b/roottest/root/tree/evolution/split/execReadFileFullObjRule.ref index 9c2162a69ce94..9ad8860a26b0f 100644 --- a/roottest/root/tree/evolution/split/execReadFileFullObjRule.ref +++ b/roottest/root/tree/evolution/split/execReadFileFullObjRule.ref @@ -1,4 +1,3 @@ - Processing execReadFileFullObjRule.cxx+... Read directly: d value : 1 diff --git a/roottest/root/tree/evolution/split/execmakeclass.ref b/roottest/root/tree/evolution/split/execmakeclass.ref index fb797144cb4ed..43324e828ee41 100644 --- a/roottest/root/tree/evolution/split/execmakeclass.ref +++ b/roottest/root/tree/evolution/split/execmakeclass.ref @@ -1,4 +1,3 @@ - Processing execmakeclass.C... Error in : Cannot read entry 0 (no data read) ======> EVENT:0 diff --git a/roottest/root/tree/evolution/split/missingsplit.ref b/roottest/root/tree/evolution/split/missingsplit.ref index 3f2100729bfe3..5ea3b41d9a722 100644 --- a/roottest/root/tree/evolution/split/missingsplit.ref +++ b/roottest/root/tree/evolution/split/missingsplit.ref @@ -1,4 +1,3 @@ - Processing runmissingsplit.C... one.a : 3 one.b : 6 diff --git a/roottest/root/tree/fastcloning/references/abstract.ref b/roottest/root/tree/fastcloning/references/abstract.ref index 331c944866792..650a59ad8f836 100644 --- a/roottest/root/tree/fastcloning/references/abstract.ref +++ b/roottest/root/tree/fastcloning/references/abstract.ref @@ -1,4 +1,3 @@ - Processing runabstract.C... Warning in : no dictionary for class Holder is available Warning in : no dictionary for class Top is available diff --git a/roottest/root/tree/fastcloning/references/abstract_win32.ref b/roottest/root/tree/fastcloning/references/abstract_win32.ref index 862ce87fc9518..16b4638953a23 100644 --- a/roottest/root/tree/fastcloning/references/abstract_win32.ref +++ b/roottest/root/tree/fastcloning/references/abstract_win32.ref @@ -1,2 +1 @@ - Processing runabstract.C... diff --git a/roottest/root/tree/fastcloning/references/execCheckClusterRange.ref32 b/roottest/root/tree/fastcloning/references/execCheckClusterRange.ref32 index e71e84af084f1..d6cb093e57d19 100644 --- a/roottest/root/tree/fastcloning/references/execCheckClusterRange.ref32 +++ b/roottest/root/tree/fastcloning/references/execCheckClusterRange.ref32 @@ -1,4 +1,3 @@ - Processing execCheckClusterRange.C... Cluster # 1 starts at 0 and ends at 49 Cluster # 2 starts at 50 and ends at 99 diff --git a/roottest/root/tree/fastcloning/references/execCheckClusterRange_builtinzlib.ref b/roottest/root/tree/fastcloning/references/execCheckClusterRange_builtinzlib.ref index 0312e51fe1bf8..dadaef4ff6396 100644 --- a/roottest/root/tree/fastcloning/references/execCheckClusterRange_builtinzlib.ref +++ b/roottest/root/tree/fastcloning/references/execCheckClusterRange_builtinzlib.ref @@ -1,4 +1,3 @@ - Processing execCheckClusterRange.C... Cluster # 1 starts at 0 and ends at 49 Cluster # 2 starts at 50 and ends at 99 diff --git a/roottest/root/tree/fastcloning/references/execCheckClusterRange_zlib.ref b/roottest/root/tree/fastcloning/references/execCheckClusterRange_zlib.ref index 614a2a0fe3843..2e65ecc45e778 100644 --- a/roottest/root/tree/fastcloning/references/execCheckClusterRange_zlib.ref +++ b/roottest/root/tree/fastcloning/references/execCheckClusterRange_zlib.ref @@ -1,4 +1,3 @@ - Processing /Users/pcanal/root_working/roottest/root/tree/fastcloning/execCheckClusterRange.C... Cluster # 1 starts at 0 and ends at 49 Cluster # 2 starts at 50 and ends at 99 diff --git a/roottest/root/tree/fastcloning/references/execCheckClusterRange_zlib_win64.ref b/roottest/root/tree/fastcloning/references/execCheckClusterRange_zlib_win64.ref index 594f64c1dcfd0..f703d66e56bc8 100644 --- a/roottest/root/tree/fastcloning/references/execCheckClusterRange_zlib_win64.ref +++ b/roottest/root/tree/fastcloning/references/execCheckClusterRange_zlib_win64.ref @@ -1,4 +1,3 @@ - Processing /Users/pcanal/root_working/roottest/root/tree/fastcloning/execCheckClusterRange.C... Cluster # 1 starts at 0 and ends at 49 Cluster # 2 starts at 50 and ends at 99 diff --git a/roottest/root/tree/fastcloning/references/execmisstop.ref b/roottest/root/tree/fastcloning/references/execmisstop.ref index 5bfcfe54d3007..c7129463026e3 100644 --- a/roottest/root/tree/fastcloning/references/execmisstop.ref +++ b/roottest/root/tree/fastcloning/references/execmisstop.ref @@ -1,3 +1,2 @@ - Processing execmisstop.C... Error in : One of the export top level branches (j) is not present in the import TTree. diff --git a/roottest/root/tree/fastcloning/references/runPlot.ref b/roottest/root/tree/fastcloning/references/runPlot.ref index 32f6540263cc4..e12beecbd962d 100644 --- a/roottest/root/tree/fastcloning/references/runPlot.ref +++ b/roottest/root/tree/fastcloning/references/runPlot.ref @@ -1,4 +1,3 @@ - Processing runPlot.C... ************************************ * Row * CalXtalAd * CalXtalAd * diff --git a/roottest/root/tree/fastcloning/references/runSplitMismatch.ref b/roottest/root/tree/fastcloning/references/runSplitMismatch.ref index a300facb1b6ae..18c13b236fa1c 100644 --- a/roottest/root/tree/fastcloning/references/runSplitMismatch.ref +++ b/roottest/root/tree/fastcloning/references/runSplitMismatch.ref @@ -1,4 +1,3 @@ - Processing runSplitMismatch.C+... ************************************************ * Row * obj.a * obj.b.i * obj.b.j * diff --git a/roottest/root/tree/fastcloning/references/runbadmix.ref b/roottest/root/tree/fastcloning/references/runbadmix.ref index b4a4a01cdad28..ee3dd7ff5a032 100644 --- a/roottest/root/tree/fastcloning/references/runbadmix.ref +++ b/roottest/root/tree/fastcloning/references/runbadmix.ref @@ -1,4 +1,3 @@ - Processing /local2/pcanal/cint_working/rootcling/root/roottest/root/tree/fastcloning/runbadmix.C... ************************ * Row * values.va * diff --git a/roottest/root/tree/fastcloning/references/runcloneChain.ref b/roottest/root/tree/fastcloning/references/runcloneChain.ref index 90fadf4071212..c96fb94857b3d 100644 --- a/roottest/root/tree/fastcloning/references/runcloneChain.ref +++ b/roottest/root/tree/fastcloning/references/runcloneChain.ref @@ -1,4 +1,3 @@ - Processing runcloneChain.C... Warning in : no dictionary for class VldContext is available Warning in : no dictionary for class VldTimeStamp is available diff --git a/roottest/root/tree/fastcloning/references/runfilemergererror.ref b/roottest/root/tree/fastcloning/references/runfilemergererror.ref index 2026cb88d350b..3fcdf70075c33 100644 --- a/roottest/root/tree/fastcloning/references/runfilemergererror.ref +++ b/roottest/root/tree/fastcloning/references/runfilemergererror.ref @@ -1,4 +1,3 @@ - Processing runfilemergererror.C... Written file: TestFile1.root Written file: TestFile2.root diff --git a/roottest/root/tree/fastcloning/references/runoutoforder.ref b/roottest/root/tree/fastcloning/references/runoutoforder.ref index e6fefa95edf65..57e0213f4ed99 100644 --- a/roottest/root/tree/fastcloning/references/runoutoforder.ref +++ b/roottest/root/tree/fastcloning/references/runoutoforder.ref @@ -1,4 +1,3 @@ - Processing runoutoforder.C... ************************************ * Row * runNumber * eventNumb * diff --git a/roottest/root/tree/friend/ChainFriend.ref b/roottest/root/tree/friend/ChainFriend.ref index 8a7f2ce5c8fe8..a91a13ccf0ddd 100644 --- a/roottest/root/tree/friend/ChainFriend.ref +++ b/roottest/root/tree/friend/ChainFriend.ref @@ -1,4 +1,3 @@ - Processing runChainFriend.C... Warning in : no dictionary for class Event is available Warning in : no dictionary for class EventHeader is available diff --git a/roottest/root/tree/friend/FriendOfFriends.ref b/roottest/root/tree/friend/FriendOfFriends.ref index b1397cbf43ec9..bc835b9dfb61f 100644 --- a/roottest/root/tree/friend/FriendOfFriends.ref +++ b/roottest/root/tree/friend/FriendOfFriends.ref @@ -1,4 +1,3 @@ - Processing runFriendOfFriends.C... ************************************ * Row * var2 * var3 * diff --git a/roottest/root/tree/friend/FriendsIndices.ref b/roottest/root/tree/friend/FriendsIndices.ref index 39cdb0910f700..16465db5d299b 100644 --- a/roottest/root/tree/friend/FriendsIndices.ref +++ b/roottest/root/tree/friend/FriendsIndices.ref @@ -1,4 +1,3 @@ - Processing testFriendsIndices.C+(7)... Creating e0.root Creating e1.root diff --git a/roottest/root/tree/friend/Unaligned.ref b/roottest/root/tree/friend/Unaligned.ref index 23ede3982b8e5..acf0a14ac0c1f 100644 --- a/roottest/root/tree/friend/Unaligned.ref +++ b/roottest/root/tree/friend/Unaligned.ref @@ -1,3 +1,2 @@ - Processing runUnaligned.C... 318000 318000 318000 318000 318000 diff --git a/roottest/root/tree/friend/UnevenChain.ref b/roottest/root/tree/friend/UnevenChain.ref index 11b71b92a6d13..04f781119c0f6 100644 --- a/roottest/root/tree/friend/UnevenChain.ref +++ b/roottest/root/tree/friend/UnevenChain.ref @@ -1,4 +1,3 @@ - Processing runUnevenChain.C... chainOne, file 1, Entry number: 3 chainOne, file 2, Entry number: 3 diff --git a/roottest/root/tree/friend/chainBranchStatus.ref b/roottest/root/tree/friend/chainBranchStatus.ref index be7fa608daa4b..a0b37451826cd 100644 --- a/roottest/root/tree/friend/chainBranchStatus.ref +++ b/roottest/root/tree/friend/chainBranchStatus.ref @@ -1,2 +1 @@ - Processing runchainBranchStatus.C... diff --git a/roottest/root/tree/friend/circular.ref b/roottest/root/tree/friend/circular.ref index f8ccb8aff320f..5c361bc387ddb 100644 --- a/roottest/root/tree/friend/circular.ref +++ b/roottest/root/tree/friend/circular.ref @@ -1,4 +1,3 @@ - Processing runcircular.C+... Alone 3 diff --git a/roottest/root/tree/friend/execMissingParentValue.ref b/roottest/root/tree/friend/execMissingParentValue.ref index 8030c272d18d4..ad1be6262ccfa 100644 --- a/roottest/root/tree/friend/execMissingParentValue.ref +++ b/roottest/root/tree/friend/execMissingParentValue.ref @@ -1,4 +1,3 @@ - Processing execMissingParentValue.C... Error in : Bad numerical expression : "run2" Error in : Bad numerical expression : "event2" diff --git a/roottest/root/tree/friend/execNonExistingFriend.ref b/roottest/root/tree/friend/execNonExistingFriend.ref index 189881afa2106..8703e82720943 100644 --- a/roottest/root/tree/friend/execNonExistingFriend.ref +++ b/roottest/root/tree/friend/execNonExistingFriend.ref @@ -1,4 +1,3 @@ - Processing execNonExistingFriend.C... Error in : file asfasgfags.root does not exist Error in : file asfasgfags.root does not exist diff --git a/roottest/root/tree/friend/friendInChain.ref b/roottest/root/tree/friend/friendInChain.ref index 0b8fab19e0af7..cd32bf6eca953 100644 --- a/roottest/root/tree/friend/friendInChain.ref +++ b/roottest/root/tree/friend/friendInChain.ref @@ -1,2 +1 @@ - Processing runfriendInChain.C... diff --git a/roottest/root/tree/friend/localfriend.ref b/roottest/root/tree/friend/localfriend.ref index 15f644c835d1f..0de16a9cd4de1 100644 --- a/roottest/root/tree/friend/localfriend.ref +++ b/roottest/root/tree/friend/localfriend.ref @@ -1,4 +1,3 @@ - Processing runlocalfriend.C... OBJ: TList TList Doubly linked list : 0 Friend Tree: friend in file: diff --git a/roottest/root/tree/friend/treeChainFriend.ref b/roottest/root/tree/friend/treeChainFriend.ref index 91e7ba2a36866..2b6715f6dbb08 100644 --- a/roottest/root/tree/friend/treeChainFriend.ref +++ b/roottest/root/tree/friend/treeChainFriend.ref @@ -1,4 +1,3 @@ - Processing zmumuSelDrawmail.cpp+... 0: neumomcmtot: 0 1: neumomcmtot: 0 diff --git a/roottest/root/tree/friend/treeChangedName.ref b/roottest/root/tree/friend/treeChangedName.ref index 9ecf77c9231f4..eb4ed4448ca2a 100644 --- a/roottest/root/tree/friend/treeChangedName.ref +++ b/roottest/root/tree/friend/treeChangedName.ref @@ -1,2 +1 @@ - Processing treeChangedName.C... diff --git a/roottest/root/tree/friend/treeChangedNameRead.ref b/roottest/root/tree/friend/treeChangedNameRead.ref index 327c601346a26..eddce86048f01 100644 --- a/roottest/root/tree/friend/treeChangedNameRead.ref +++ b/roottest/root/tree/friend/treeChangedNameRead.ref @@ -1,4 +1,3 @@ - Processing treeChangedNameRead.C... TFile** ftest7743.root TFile* ftest7743.root diff --git a/roottest/root/tree/friend/treefriend.ref b/roottest/root/tree/friend/treefriend.ref index f56a604266d81..3a126e5b7b92b 100644 --- a/roottest/root/tree/friend/treefriend.ref +++ b/roottest/root/tree/friend/treefriend.ref @@ -1,4 +1,3 @@ - Processing runtreefriend.C... nok = 8460, fentries=8460 ************************************ diff --git a/roottest/root/tree/friend/unevenFriend.ref b/roottest/root/tree/friend/unevenFriend.ref index b14dcf78900a6..c48379d45df7b 100644 --- a/roottest/root/tree/friend/unevenFriend.ref +++ b/roottest/root/tree/friend/unevenFriend.ref @@ -1,4 +1,3 @@ - Processing unevenFriend.C... Info in : created default TCanvas with name c1 histogram must have been correctly created diff --git a/roottest/root/tree/index/Dupe.ref b/roottest/root/tree/index/Dupe.ref index 015ace557d310..94c15dd71a43a 100644 --- a/roottest/root/tree/index/Dupe.ref +++ b/roottest/root/tree/index/Dupe.ref @@ -1,4 +1,3 @@ - Processing runDupe.C... Error in : In entry 1, a duplicate key was found value at (run, event) = (5, 1) Warning in : Further potential duplicates won't be checked, use gDebug >= 1 to check all. diff --git a/roottest/root/tree/index/chain.ref b/roottest/root/tree/index/chain.ref index d2d736d2e77f0..5bc8cd9bb4ca4 100644 --- a/roottest/root/tree/index/chain.ref +++ b/roottest/root/tree/index/chain.ref @@ -1,4 +1,3 @@ - Processing runchain.C... Entries in chain: 100 BuildIndex returns 100 diff --git a/roottest/root/tree/index/execChainIndex.ref b/roottest/root/tree/index/execChainIndex.ref index ab7e9290514b6..c321e6667a3ba 100644 --- a/roottest/root/tree/index/execChainIndex.ref +++ b/roottest/root/tree/index/execChainIndex.ref @@ -1,4 +1,3 @@ - Processing execChainIndex.cxx+... looked up 202740 890151 got 0- correct looked up 202740 887836 got 1- correct diff --git a/roottest/root/tree/index/index64.ref b/roottest/root/tree/index/index64.ref index 1a598d783b445..c6bef57454e56 100644 --- a/roottest/root/tree/index/index64.ref +++ b/roottest/root/tree/index/index64.ref @@ -1,4 +1,3 @@ - Processing runindex64.C... Tree BuildIndex returns 9 Entries in chain: 9 diff --git a/roottest/root/tree/index/indexl64.ref b/roottest/root/tree/index/indexl64.ref index 6c0177ef5f57b..a912e1367d84e 100644 --- a/roottest/root/tree/index/indexl64.ref +++ b/roottest/root/tree/index/indexl64.ref @@ -1,4 +1,3 @@ - Processing runindexl64.C... Tree BuildIndex returns 9 Entries in chain: 9 diff --git a/roottest/root/tree/index/varsizearr.ref b/roottest/root/tree/index/varsizearr.ref index 6b71cc3f6a42a..fad8cda816570 100644 --- a/roottest/root/tree/index/varsizearr.ref +++ b/roottest/root/tree/index/varsizearr.ref @@ -1,4 +1,3 @@ - Processing runvarsizearr.C... 2 *********************************************** diff --git a/roottest/root/tree/interpreted/friends.ref b/roottest/root/tree/interpreted/friends.ref index 9a0168410e73d..7a7e6996963ec 100644 --- a/roottest/root/tree/interpreted/friends.ref +++ b/roottest/root/tree/interpreted/friends.ref @@ -1,4 +1,3 @@ - Processing macroFriends2.C... ------MyClass::MyClass------ ------MyClass::CreateTrees------ diff --git a/roottest/root/tree/leaves/arraysize.ref b/roottest/root/tree/leaves/arraysize.ref index ef5f40cf0f984..aa531d5d933cd 100644 --- a/roottest/root/tree/leaves/arraysize.ref +++ b/roottest/root/tree/leaves/arraysize.ref @@ -1,4 +1,3 @@ - Processing runarraysize.C... ***************************************************************************************************** * Row * Instance * JETS1.njet * JETS1.et * JETS1.pt * JETS2.njet * JETS2.et * JETS2.pt * diff --git a/roottest/root/tree/leaves/execReadMiniObjLeaf.ref b/roottest/root/tree/leaves/execReadMiniObjLeaf.ref index 75aff6eaa67a6..49ad42707b430 100644 --- a/roottest/root/tree/leaves/execReadMiniObjLeaf.ref +++ b/roottest/root/tree/leaves/execReadMiniObjLeaf.ref @@ -1,4 +1,3 @@ - Processing execReadMiniObjLeaf.C... Warning in : no dictionary for class A is available l_v value 0=0 diff --git a/roottest/root/tree/pointers/verify.ref b/roottest/root/tree/pointers/verify.ref index ebe212c45fbcf..f8fb31706773e 100644 --- a/roottest/root/tree/pointers/verify.ref +++ b/roottest/root/tree/pointers/verify.ref @@ -1,4 +1,3 @@ - Processing verify.cxx+... Info in : creating shared library /home/linev/build/webgui/roottest/root/tree/pointers/verify_cxx.so The indirect pointer is still null diff --git a/roottest/root/tree/query/array.ref b/roottest/root/tree/query/array.ref index 9f1023321406f..43e0fd00f97c8 100644 --- a/roottest/root/tree/query/array.ref +++ b/roottest/root/tree/query/array.ref @@ -1,4 +1,3 @@ - Processing runarray.C... *********************************** * Row * Instance * arr * diff --git a/roottest/root/tree/query/execQuery.ref b/roottest/root/tree/query/execQuery.ref index 870e5f2641e9e..10cf191af1ae1 100644 --- a/roottest/root/tree/query/execQuery.ref +++ b/roottest/root/tree/query/execQuery.ref @@ -1,4 +1,3 @@ - Processing execQuery.C... 1: 1 2: 5 3: 4 (int)0 diff --git a/roottest/root/tree/readcin/readcin.ref-cling b/roottest/root/tree/readcin/readcin.ref-cling index 0372b45580f12..12b683e41d0a6 100644 --- a/roottest/root/tree/readcin/readcin.ref-cling +++ b/roottest/root/tree/readcin/readcin.ref-cling @@ -1,4 +1,3 @@ - Processing runreadcin.C... ****************************************************************************** *Tree :test : test * diff --git a/roottest/root/tree/readcin/readcinpiped.ref b/roottest/root/tree/readcin/readcinpiped.ref index bba01d72ccba7..5534f3e99573e 100644 --- a/roottest/root/tree/readcin/readcinpiped.ref +++ b/roottest/root/tree/readcin/readcinpiped.ref @@ -1,4 +1,3 @@ - Processing readFromStream.cc... ****************************************************************************** *Tree :test : test * diff --git a/roottest/root/tree/reader/complexTree.ref b/roottest/root/tree/reader/complexTree.ref index 67178e0f5b210..6604c17cb16dd 100644 --- a/roottest/root/tree/reader/complexTree.ref +++ b/roottest/root/tree/reader/complexTree.ref @@ -1,4 +1,3 @@ - Processing runcomplexTree.C... Entry 1 diff --git a/roottest/root/tree/reader/execCheckLateProxy.ref b/roottest/root/tree/reader/execCheckLateProxy.ref index 638cd1a1300dc..77811c49be92f 100644 --- a/roottest/root/tree/reader/execCheckLateProxy.ref +++ b/roottest/root/tree/reader/execCheckLateProxy.ref @@ -1,4 +1,3 @@ - Processing execCheckLateProxy.C... -1.4308 (int) 0 diff --git a/roottest/root/tree/reader/execEnum.ref b/roottest/root/tree/reader/execEnum.ref index 34cface6f7d5a..5c43961a3211b 100644 --- a/roottest/root/tree/reader/execEnum.ref +++ b/roottest/root/tree/reader/execEnum.ref @@ -1,3 +1,2 @@ - Processing execEnum.cxx+... (int) 0 diff --git a/roottest/root/tree/reader/execIntroTut.ref b/roottest/root/tree/reader/execIntroTut.ref index 9ffc9d709304b..05300279c2c0a 100644 --- a/roottest/root/tree/reader/execIntroTut.ref +++ b/roottest/root/tree/reader/execIntroTut.ref @@ -1,4 +1,3 @@ - Processing execIntroTut.C... Warning in : no dictionary for class EventData is available Warning in : no dictionary for class Particle is available diff --git a/roottest/root/tree/reader/execVectorBranches.ref b/roottest/root/tree/reader/execVectorBranches.ref index e1f37f036ebb7..4557be9962ba8 100644 --- a/roottest/root/tree/reader/execVectorBranches.ref +++ b/roottest/root/tree/reader/execVectorBranches.ref @@ -1,4 +1,3 @@ - Processing execVectorBranches.C... Entry 0 Branch vx diff --git a/roottest/root/tree/readfile/ReadFile.ref b/roottest/root/tree/readfile/ReadFile.ref index 905eb99f8d49f..db41ee3062351 100644 --- a/roottest/root/tree/readfile/ReadFile.ref +++ b/roottest/root/tree/readfile/ReadFile.ref @@ -1,4 +1,3 @@ - Processing runReadFile.C... ************************************ * Row * var1.var1 * var2.var2 * diff --git a/roottest/root/tree/selector/SelectorCintTest.ref b/roottest/root/tree/selector/SelectorCintTest.ref index 410b72df248ba..5898f3338fe4e 100644 --- a/roottest/root/tree/selector/SelectorCintTest.ref +++ b/roottest/root/tree/selector/SelectorCintTest.ref @@ -1,4 +1,3 @@ - Processing runSelectorCintTest.C... Warning in : no dictionary for class Event is available Warning in : no dictionary for class EventHeader is available diff --git a/roottest/root/tree/selector/execGetSelector.ref b/roottest/root/tree/selector/execGetSelector.ref index e2b87e8a360e7..bad981ae7e0bc 100644 --- a/roottest/root/tree/selector/execGetSelector.ref +++ b/roottest/root/tree/selector/execGetSelector.ref @@ -1,4 +1,3 @@ - Processing execGetSelector.C... In constructor Testvar in constructor: -999 diff --git a/roottest/root/tree/selector/execLHEF.ref b/roottest/root/tree/selector/execLHEF.ref index 345d9c8eaac38..3991d0d2695e7 100644 --- a/roottest/root/tree/selector/execLHEF.ref +++ b/roottest/root/tree/selector/execLHEF.ref @@ -1,4 +1,3 @@ - Processing execLHEF.C... direct Warning in : no dictionary for class TRootLHEFEvent is available diff --git a/roottest/root/tree/selector/execWithAbort.ref b/roottest/root/tree/selector/execWithAbort.ref index 107f2c9bb16e3..237fd7ae853fa 100644 --- a/roottest/root/tree/selector/execWithAbort.ref +++ b/roottest/root/tree/selector/execWithAbort.ref @@ -1,4 +1,3 @@ - Processing execWithAbort.C... Warning in : no dictionary for class Event is available Warning in : no dictionary for class EventHeader is available diff --git a/roottest/root/tree/selector/selector.ref b/roottest/root/tree/selector/selector.ref index 5dd6cfbc0c4d3..e3f9c63e4dd5b 100644 --- a/roottest/root/tree/selector/selector.ref +++ b/roottest/root/tree/selector/selector.ref @@ -1,4 +1,3 @@ - Processing run.C... Warning in : no dictionary for class Event is available Warning in : no dictionary for class EventHeader is available diff --git a/roottest/root/tree/selectorreader/Classes.ref b/roottest/root/tree/selectorreader/Classes.ref index 8c3fec27cece2..d1daaaf2c91a1 100644 --- a/roottest/root/tree/selectorreader/Classes.ref +++ b/roottest/root/tree/selectorreader/Classes.ref @@ -1,4 +1,3 @@ - Processing runClasses.C... Testing tree TreeClass0 Ev: 201, Px: 101.0 diff --git a/roottest/root/tree/selectorreader/CollectionClasses.ref b/roottest/root/tree/selectorreader/CollectionClasses.ref index 8764f0d579a14..9bb5eae0472fb 100644 --- a/roottest/root/tree/selectorreader/CollectionClasses.ref +++ b/roottest/root/tree/selectorreader/CollectionClasses.ref @@ -1,4 +1,3 @@ - Processing runCollectionClasses.C... Testing tree TreeVectorClass0 PosX: 110.0 111.0 112.0 113.0 114.0 diff --git a/roottest/root/tree/selectorreader/Collections.ref b/roottest/root/tree/selectorreader/Collections.ref index 9ceccf5998f76..ef708ac4f87de 100644 --- a/roottest/root/tree/selectorreader/Collections.ref +++ b/roottest/root/tree/selectorreader/Collections.ref @@ -1,4 +1,3 @@ - Processing runCollections.C... Testing tree TreeArray 100.0 101.0 102.0 103.0 104.0 105.0 106.0 107.0 108.0 109.0 diff --git a/roottest/root/tree/selectorreader/Options.ref b/roottest/root/tree/selectorreader/Options.ref index f2ce3c1a589f0..c648ab8aa7095 100644 --- a/roottest/root/tree/selectorreader/Options.ref +++ b/roottest/root/tree/selectorreader/Options.ref @@ -1,4 +1,3 @@ - Processing runOptions.C... Testing option "" Ev: 201 Px: 101.0 Py: 301.0 diff --git a/roottest/root/tree/selectorreader/Simple.ref b/roottest/root/tree/selectorreader/Simple.ref index 9eca573edae96..a2b2a3c0ea585 100644 --- a/roottest/root/tree/selectorreader/Simple.ref +++ b/roottest/root/tree/selectorreader/Simple.ref @@ -1,4 +1,3 @@ - Processing runSimple.C... Testing tree Tree 100.0 200.0 200.0 400.0 500 diff --git a/roottest/root/tree/split/abstract.ref b/roottest/root/tree/split/abstract.ref index 2b8e77b3e635c..ca3d0ed08fd1a 100644 --- a/roottest/root/tree/split/abstract.ref +++ b/roottest/root/tree/split/abstract.ref @@ -1,3 +1,2 @@ - Processing runabstract.cxx(1)... (int) 0 diff --git a/roottest/root/tree/split/execReadCustomStream.ref b/roottest/root/tree/split/execReadCustomStream.ref index 63c89f193483b..31805981360f4 100644 --- a/roottest/root/tree/split/execReadCustomStream.ref +++ b/roottest/root/tree/split/execReadCustomStream.ref @@ -1,4 +1,3 @@ - Processing execReadCustomStream.cxx+... Info in : In the custom streamer Info in : In the custom streamer diff --git a/roottest/root/tree/split/execUnrollWithConst.ref b/roottest/root/tree/split/execUnrollWithConst.ref index 9000145a12afa..e8b53a373b820 100644 --- a/roottest/root/tree/split/execUnrollWithConst.ref +++ b/roottest/root/tree/split/execUnrollWithConst.ref @@ -1,4 +1,3 @@ - Processing execUnrollWithConst.cxx+... ****************************************************************************** *Tree :T : T * diff --git a/roottest/root/tree/split/execWriteCustomStream.ref b/roottest/root/tree/split/execWriteCustomStream.ref index c25d16b5755b6..df25f470b97ab 100644 --- a/roottest/root/tree/split/execWriteCustomStream.ref +++ b/roottest/root/tree/split/execWriteCustomStream.ref @@ -1,3 +1,2 @@ - Processing execWriteCustomStream.cxx+... (int) 0 diff --git a/roottest/root/tree/stl/execPartialMap.ref b/roottest/root/tree/stl/execPartialMap.ref index 847f75137d1a5..9e2e792ad22c5 100644 --- a/roottest/root/tree/stl/execPartialMap.ref +++ b/roottest/root/tree/stl/execPartialMap.ref @@ -1,5 +1,4 @@ Automatic building of dictionaries now off - Processing /uscms_data/d2/pcanal/eaf_root_working/code/quick-devel/roottest/root/tree/stl/execPartialMap.cxx+... Creating tree Reading tree diff --git a/roottest/root/tree/stl/execVecPtr.ref b/roottest/root/tree/stl/execVecPtr.ref index 8fff15983a369..03542b34d884d 100644 --- a/roottest/root/tree/stl/execVecPtr.ref +++ b/roottest/root/tree/stl/execVecPtr.ref @@ -1,5 +1,4 @@ Automatic building of dictionaries now off - Processing execVecPtr.cxx+... Writing Printing holder: diff --git a/roottest/root/tree/stl/mixingCompiled.ref b/roottest/root/tree/stl/mixingCompiled.ref index eec4c26f11ddc..d835c0e16d116 100644 --- a/roottest/root/tree/stl/mixingCompiled.ref +++ b/roottest/root/tree/stl/mixingCompiled.ref @@ -1,5 +1,4 @@ Automatic building of dictionaries now off - Processing runmixing.C+... Error in : The class requested (vector) for the branch "checked_value" is an instance of an stl collection and does not have a compiled CollectionProxy. Please generate the dictionary for this collection (vector) to avoid to write corrupted data. Error in : The class requested (vector) for the branch "value" is an instance of an stl collection and does not have a compiled CollectionProxy. Please generate the dictionary for this collection (vector) to avoid to write corrupted data. diff --git a/roottest/root/tree/stl/mixingGood.ref b/roottest/root/tree/stl/mixingGood.ref index 34ccdb0972b2d..e458919b1e129 100644 --- a/roottest/root/tree/stl/mixingGood.ref +++ b/roottest/root/tree/stl/mixingGood.ref @@ -1,5 +1,4 @@ Automatic building of dictionaries now off - Processing runmixingGood.C+... *********************************************** * Row * Instance * checked_v * value.fVa * diff --git a/roottest/root/tree/stl/mixingInterp.ref b/roottest/root/tree/stl/mixingInterp.ref index c7fd2114cef06..fdfb5388756c8 100644 --- a/roottest/root/tree/stl/mixingInterp.ref +++ b/roottest/root/tree/stl/mixingInterp.ref @@ -1,5 +1,4 @@ Automatic building of dictionaries now off - Processing runmixing.C... Error in : The class requested (vector) for the branch "checked_value" is an instance of an stl collection and does not have a compiled CollectionProxy. Please generate the dictionary for this collection (vector) to avoid to write corrupted data. Error in : The class requested (vector) for the branch "value" is an instance of an stl collection and does not have a compiled CollectionProxy. Please generate the dictionary for this collection (vector) to avoid to write corrupted data. diff --git a/roottest/root/tree/stl/simple.ref b/roottest/root/tree/stl/simple.ref index cb9d3c8f498a9..896f4c9663bfb 100644 --- a/roottest/root/tree/stl/simple.ref +++ b/roottest/root/tree/stl/simple.ref @@ -1,5 +1,4 @@ Automatic building of dictionaries now off - Processing runsimple.C+... single: size: 1 pair : size: 1 diff --git a/roottest/root/tree/stl/vstr.ref b/roottest/root/tree/stl/vstr.ref index a11c6c91905ce..517973520d645 100644 --- a/roottest/root/tree/stl/vstr.ref +++ b/roottest/root/tree/stl/vstr.ref @@ -1,5 +1,4 @@ Automatic building of dictionaries now off - Processing runvstr.C+... two Printing vector diff --git a/roottest/root/tree/string/ReadFile.ref b/roottest/root/tree/string/ReadFile.ref index 5b06c8906b19d..4b009bcccaefe 100644 --- a/roottest/root/tree/string/ReadFile.ref +++ b/roottest/root/tree/string/ReadFile.ref @@ -1,2 +1 @@ - Processing runReadFile.C... diff --git a/roottest/root/tree/string/leaflist.ref b/roottest/root/tree/string/leaflist.ref index c35336d0fe050..5b8f53f94766a 100644 --- a/roottest/root/tree/string/leaflist.ref +++ b/roottest/root/tree/string/leaflist.ref @@ -1,4 +1,3 @@ - Processing runleaflist.C... ************************ * Row * name * diff --git a/roottest/root/tree/tcut/TCut.ref b/roottest/root/tree/tcut/TCut.ref index 06514c9a21e0d..a2214aa980930 100644 --- a/roottest/root/tree/tcut/TCut.ref +++ b/roottest/root/tree/tcut/TCut.ref @@ -1,4 +1,3 @@ - Processing runTCut.C... equal equal diff --git a/roottest/root/tree/tcut/TCutcomp.ref b/roottest/root/tree/tcut/TCutcomp.ref index 6b1a71a137898..ca00a9028fc7b 100644 --- a/roottest/root/tree/tcut/TCutcomp.ref +++ b/roottest/root/tree/tcut/TCutcomp.ref @@ -1,4 +1,3 @@ - Processing runTCut.C+... equal equal diff --git a/roottest/root/tree/treeproblem/Memory.ref b/roottest/root/tree/treeproblem/Memory.ref index c4e94c7bd1ef5..80d9865ccc849 100644 --- a/roottest/root/tree/treeproblem/Memory.ref +++ b/roottest/root/tree/treeproblem/Memory.ref @@ -1,4 +1,3 @@ - Processing runMemory.C... ************************************************ * Row * var_a.var * var_b.var * var_c.var * diff --git a/roottest/root/tree/treeproblem/execScan.ref b/roottest/root/tree/treeproblem/execScan.ref index ca4f9f617abb0..01c66449c77b3 100644 --- a/roottest/root/tree/treeproblem/execScan.ref +++ b/roottest/root/tree/treeproblem/execScan.ref @@ -1,4 +1,3 @@ - Processing execScan.C... ************************ * Row * x.x * diff --git a/roottest/root/tree/treeproblem/reader.ref b/roottest/root/tree/treeproblem/reader.ref index bcc844be7ecc7..f9dfd43e60ba7 100644 --- a/roottest/root/tree/treeproblem/reader.ref +++ b/roottest/root/tree/treeproblem/reader.ref @@ -1,4 +1,3 @@ - Processing reader.C... Foo # 0,0: 0 Foo # 0,1: 1 diff --git a/roottest/root/tree/treeproblem/ucharshow.ref b/roottest/root/tree/treeproblem/ucharshow.ref index e81221b33bc8a..7dce034bf4e28 100644 --- a/roottest/root/tree/treeproblem/ucharshow.ref +++ b/roottest/root/tree/treeproblem/ucharshow.ref @@ -1,4 +1,3 @@ - Processing runucharshow.C... ======> EVENT:0 x = 200 diff --git a/roottest/root/treedraw/simple.ref b/roottest/root/treedraw/simple.ref index 30303a148957c..ae86d124e5e7c 100644 --- a/roottest/root/treedraw/simple.ref +++ b/roottest/root/treedraw/simple.ref @@ -1,3 +1,2 @@ - Processing runsimple.C... Info in : ps file hsimple.ps has been created diff --git a/roottest/root/treeformula/array/ScanString.ref b/roottest/root/treeformula/array/ScanString.ref index cee7fccedd893..7a7e83147a09e 100644 --- a/roottest/root/treeformula/array/ScanString.ref +++ b/roottest/root/treeformula/array/ScanString.ref @@ -1,4 +1,3 @@ - Processing runScanString.C... *********************************************** * Row * Instance * tops.i * tops.titl * diff --git a/roottest/root/treeformula/array/arrayDrawTest.good b/roottest/root/treeformula/array/arrayDrawTest.good index c850ed63c4bc4..296fc571c77f5 100644 --- a/roottest/root/treeformula/array/arrayDrawTest.good +++ b/roottest/root/treeformula/array/arrayDrawTest.good @@ -1,4 +1,3 @@ - Processing runArrayTest.C... We expect an error about the dimension size: Error in : Index 40 for dimension #1 in ns[40].adc[2] is too high (max is 2) diff --git a/roottest/root/treeformula/array/arrayEventListTest.ref b/roottest/root/treeformula/array/arrayEventListTest.ref index c7f0267bc1bd0..d2ac4fa38f0e5 100644 --- a/roottest/root/treeformula/array/arrayEventListTest.ref +++ b/roottest/root/treeformula/array/arrayEventListTest.ref @@ -1,3 +1,2 @@ - Processing eventlist.C... Info in : created default TCanvas with name c1 diff --git a/roottest/root/treeformula/array/boolOptTest.ref b/roottest/root/treeformula/array/boolOptTest.ref index db3825ddb00f8..0ad911eaca1cb 100644 --- a/roottest/root/treeformula/array/boolOptTest.ref +++ b/roottest/root/treeformula/array/boolOptTest.ref @@ -1,4 +1,3 @@ - Processing boolOpt.C... *********************************************** * Row * Instance * Lept_1 * Lept_2 * diff --git a/roottest/root/treeformula/array/execNestedFail.ref b/roottest/root/treeformula/array/execNestedFail.ref index 946fafb75afb6..0030c5128449f 100644 --- a/roottest/root/treeformula/array/execNestedFail.ref +++ b/roottest/root/treeformula/array/execNestedFail.ref @@ -1,4 +1,3 @@ - Processing execNestedFail.C... Error in : Bad numerical expression : "do_not_exist" Error in : Bad numerical expression : "values[do_not_exist]" diff --git a/roottest/root/treeformula/array/execOutOfBounds.ref b/roottest/root/treeformula/array/execOutOfBounds.ref index 07ab7fb236018..0e839d6cbded6 100644 --- a/roottest/root/treeformula/array/execOutOfBounds.ref +++ b/roottest/root/treeformula/array/execOutOfBounds.ref @@ -1,3 +1,2 @@ - Processing execOutOfBounds.C... (int) 0 diff --git a/roottest/root/treeformula/array/indexLoad.ref b/roottest/root/treeformula/array/indexLoad.ref index 95661b4964ccf..a2c23a593ab02 100644 --- a/roottest/root/treeformula/array/indexLoad.ref +++ b/roottest/root/treeformula/array/indexLoad.ref @@ -1,4 +1,3 @@ - Processing runindexLoad.C+... *************************************************************************** * Row * Instance * iCell>900 * iCell * iCellClus- * iCell>900& * diff --git a/roottest/root/treeformula/array/indexMultiDim.ref b/roottest/root/treeformula/array/indexMultiDim.ref index e6c10bf130085..8d780f4937baa 100644 --- a/roottest/root/treeformula/array/indexMultiDim.ref +++ b/roottest/root/treeformula/array/indexMultiDim.ref @@ -1,4 +1,3 @@ - Processing indexMultiDim.C... Warning in : no dictionary for class Event is available Warning in : no dictionary for class EventHeader is available diff --git a/roottest/root/treeformula/array/multidim.ref b/roottest/root/treeformula/array/multidim.ref index d739e8d89102f..d2fd23af2ff81 100644 --- a/roottest/root/treeformula/array/multidim.ref +++ b/roottest/root/treeformula/array/multidim.ref @@ -1,4 +1,3 @@ - Processing runmultidim.C... ********************************************** * Row * Instance * fEvents.fNShower * diff --git a/roottest/root/treeformula/array/nestedind.ref b/roottest/root/treeformula/array/nestedind.ref index fa0fd7e3790bc..0d192979169fd 100644 --- a/roottest/root/treeformula/array/nestedind.ref +++ b/roottest/root/treeformula/array/nestedind.ref @@ -1,4 +1,3 @@ - Processing runnestedind.C... *********************************************** * Row * Instance * type[] * type[soni * diff --git a/roottest/root/treeformula/array/twodimvar.ref b/roottest/root/treeformula/array/twodimvar.ref index 385042a01485f..758e08ea55a79 100644 --- a/roottest/root/treeformula/array/twodimvar.ref +++ b/roottest/root/treeformula/array/twodimvar.ref @@ -1,4 +1,3 @@ - Processing runtwodimvar.C... Output file : twodim_99.root Output file : twodim_0.root diff --git a/roottest/root/treeformula/array/vectorInVector.ref b/roottest/root/treeformula/array/vectorInVector.ref index 20c37d997184d..2c193f97ff5af 100644 --- a/roottest/root/treeformula/array/vectorInVector.ref +++ b/roottest/root/treeformula/array/vectorInVector.ref @@ -1,4 +1,3 @@ - Processing runvectorInVector.C... Warning in : no dictionary for class edm::Counter is available Warning in : no dictionary for class edm::EventID is available diff --git a/roottest/root/treeformula/array/vectorOfvector.ref b/roottest/root/treeformula/array/vectorOfvector.ref index 26d7a63c2fba3..0538fe291356f 100644 --- a/roottest/root/treeformula/array/vectorOfvector.ref +++ b/roottest/root/treeformula/array/vectorOfvector.ref @@ -1,4 +1,3 @@ - Processing runvectorOfvector.C+... Total created 10 Total created 165 diff --git a/roottest/root/treeformula/casting/Simple.ref b/roottest/root/treeformula/casting/Simple.ref index 392888e355196..154bebdbc68c3 100644 --- a/roottest/root/treeformula/casting/Simple.ref +++ b/roottest/root/treeformula/casting/Simple.ref @@ -1,2 +1 @@ - Processing Run.C... diff --git a/roottest/root/treeformula/clones/nestedClones2.ref b/roottest/root/treeformula/clones/nestedClones2.ref index c9422d8a2e9d0..59122cc7ffa82 100644 --- a/roottest/root/treeformula/clones/nestedClones2.ref +++ b/roottest/root/treeformula/clones/nestedClones2.ref @@ -1,4 +1,3 @@ - Processing digiRun.C... Warning in : no dictionary for class DigiEvent is available Warning in : no dictionary for class L1T is available diff --git a/roottest/root/treeformula/clones/nestedClones3.ref b/roottest/root/treeformula/clones/nestedClones3.ref index 7cd8be4ea551b..2edd0b842365e 100644 --- a/roottest/root/treeformula/clones/nestedClones3.ref +++ b/roottest/root/treeformula/clones/nestedClones3.ref @@ -1,4 +1,3 @@ - Processing runnestedClones3.C... Warning in : no dictionary for class GTTrack is available Warning in : no dictionary for class MVDhit is available diff --git a/roottest/root/treeformula/evolution/treetest.ref b/roottest/root/treeformula/evolution/treetest.ref index 03f349f800096..5dc9da4ef397e 100644 --- a/roottest/root/treeformula/evolution/treetest.ref +++ b/roottest/root/treeformula/evolution/treetest.ref @@ -1,4 +1,3 @@ - Processing readclass.cc... *********************************** * Row * Instance * mybranch. * diff --git a/roottest/root/treeformula/formulaio/oldFormulaTest.ref b/roottest/root/treeformula/formulaio/oldFormulaTest.ref index c7c2f78b7c64b..58a4e1e3607bb 100644 --- a/roottest/root/treeformula/formulaio/oldFormulaTest.ref +++ b/roottest/root/treeformula/formulaio/oldFormulaTest.ref @@ -1,3 +1,2 @@ - Processing runoldFormulaTest.C... TH1.Print Name = hpx, Entries= 10000, Total sum= 10000 diff --git a/roottest/root/treeformula/function/Timestamp.ref b/roottest/root/treeformula/function/Timestamp.ref index 21bac177f561f..012299d91798b 100644 --- a/roottest/root/treeformula/function/Timestamp.ref +++ b/roottest/root/treeformula/function/Timestamp.ref @@ -1,4 +1,3 @@ - Processing runTimestamp.C... *********************************** * Row * time.AsDouble() * diff --git a/roottest/root/treeformula/function/execMinMaxIf.ref b/roottest/root/treeformula/function/execMinMaxIf.ref index 4edba62157929..cc7a686718b12 100644 --- a/roottest/root/treeformula/function/execMinMaxIf.ref +++ b/roottest/root/treeformula/function/execMinMaxIf.ref @@ -1,4 +1,3 @@ - Processing execMinMaxIf.C... fMin = 4 fMax = 4 diff --git a/roottest/root/treeformula/function/fullload.ref b/roottest/root/treeformula/function/fullload.ref index c9b996d7f4782..2b52068ba0294 100644 --- a/roottest/root/treeformula/function/fullload.ref +++ b/roottest/root/treeformula/function/fullload.ref @@ -1,4 +1,3 @@ - Processing runfullload.C... Direct access: 6 Function access: 6 diff --git a/roottest/root/treeformula/function/nestedFunc.ref b/roottest/root/treeformula/function/nestedFunc.ref index 3d54513bbbf84..62d577abe9208 100644 --- a/roottest/root/treeformula/function/nestedFunc.ref +++ b/roottest/root/treeformula/function/nestedFunc.ref @@ -1,4 +1,3 @@ - Processing runnestedFunc.C... 14.1541 14.1541 diff --git a/roottest/root/treeformula/function/nestedHists.ref b/roottest/root/treeformula/function/nestedHists.ref index 967490340fbeb..63dd2797d0ab0 100644 --- a/roottest/root/treeformula/function/nestedHists.ref +++ b/roottest/root/treeformula/function/nestedHists.ref @@ -1,4 +1,3 @@ - Processing runnestedHists.C... Warning in : no dictionary for class TPlate is available Warning in : no dictionary for class TStrip is available diff --git a/roottest/root/treeformula/function/staticFunc.ref b/roottest/root/treeformula/function/staticFunc.ref index cc2c3177477ec..2ba70161046d0 100644 --- a/roottest/root/treeformula/function/staticFunc.ref +++ b/roottest/root/treeformula/function/staticFunc.ref @@ -1,4 +1,3 @@ - Processing runstaticFunc.C... Default constructor Integral: 0.004261 diff --git a/roottest/root/treeformula/function/subform.ref b/roottest/root/treeformula/function/subform.ref index 46b4493c0cd76..ec5428f7edae0 100644 --- a/roottest/root/treeformula/function/subform.ref +++ b/roottest/root/treeformula/function/subform.ref @@ -1,3 +1,2 @@ - Processing runsubform.C... (int) 0 diff --git a/roottest/root/treeformula/function/testFormulaFuncCall.ref b/roottest/root/treeformula/function/testFormulaFuncCall.ref index 9bbc12037bf3a..911badeccea5f 100644 --- a/roottest/root/treeformula/function/testFormulaFuncCall.ref +++ b/roottest/root/treeformula/function/testFormulaFuncCall.ref @@ -1,4 +1,3 @@ - Processing func.C... myfunc with 3 4.5 -50000000 (int) 0 diff --git a/roottest/root/treeformula/morrison/ArraySyntax.ref b/roottest/root/treeformula/morrison/ArraySyntax.ref index 9287122d55b6b..6090051561ed9 100644 --- a/roottest/root/treeformula/morrison/ArraySyntax.ref +++ b/roottest/root/treeformula/morrison/ArraySyntax.ref @@ -1,3 +1,2 @@ - Processing run.C... (int) 0 diff --git a/roottest/root/treeformula/ntuple/macos.ref b/roottest/root/treeformula/ntuple/macos.ref index 5bf594f797b6c..07988c104e6ad 100644 --- a/roottest/root/treeformula/ntuple/macos.ref +++ b/roottest/root/treeformula/ntuple/macos.ref @@ -1,4 +1,3 @@ - Processing runmacos.C... root file: macos.root ************************************************ diff --git a/roottest/root/treeformula/operator/largebitwise.ref b/roottest/root/treeformula/operator/largebitwise.ref index c926d4ac454df..8af7121fde7fd 100644 --- a/roottest/root/treeformula/operator/largebitwise.ref +++ b/roottest/root/treeformula/operator/largebitwise.ref @@ -1,4 +1,3 @@ - Processing runlargebitwise.C... 1 ************************************************** diff --git a/roottest/root/treeformula/operator/modulo.ref b/roottest/root/treeformula/operator/modulo.ref index 347dc8179ce03..efdf6edfcab0c 100644 --- a/roottest/root/treeformula/operator/modulo.ref +++ b/roottest/root/treeformula/operator/modulo.ref @@ -1,4 +1,3 @@ - Processing runmodulo.C... ************************************ * Row * signedInt * signedInt * diff --git a/roottest/root/treeformula/operator/ternary.ref b/roottest/root/treeformula/operator/ternary.ref index 1927705dc7db9..1bb229205b2fa 100644 --- a/roottest/root/treeformula/operator/ternary.ref +++ b/roottest/root/treeformula/operator/ternary.ref @@ -1,4 +1,3 @@ - Processing runternary.C... ********************************************************************************************************************** * Row * cond * first * second * cond<2?first:second * left * right * cond<2?left:right * diff --git a/roottest/root/treeformula/parse/BoolOrder.ref b/roottest/root/treeformula/parse/BoolOrder.ref index e75411280e989..4fa9890cf2b19 100644 --- a/roottest/root/treeformula/parse/BoolOrder.ref +++ b/roottest/root/treeformula/parse/BoolOrder.ref @@ -1,4 +1,3 @@ - Processing runBoolOrder.C... G__catchexception=0 Warning in : no dictionary for class MkEvent is available diff --git a/roottest/root/treeformula/parse/NonFormulaMean.ref b/roottest/root/treeformula/parse/NonFormulaMean.ref index 436125886b8c5..998da83066e04 100644 --- a/roottest/root/treeformula/parse/NonFormulaMean.ref +++ b/roottest/root/treeformula/parse/NonFormulaMean.ref @@ -1,4 +1,3 @@ - Processing NonFormulaMean.C... Info in : created default TCanvas with name c1 Mean is 5.00 diff --git a/roottest/root/treeformula/parse/PEvent.ref b/roottest/root/treeformula/parse/PEvent.ref index 8d4c2c064d672..2affe102cecda 100644 --- a/roottest/root/treeformula/parse/PEvent.ref +++ b/roottest/root/treeformula/parse/PEvent.ref @@ -1,4 +1,3 @@ - Processing runPEvent.C... 0 0 1 18 diff --git a/roottest/root/treeformula/parse/aliases.ref b/roottest/root/treeformula/parse/aliases.ref index a2d83feb71752..a802487113a69 100644 --- a/roottest/root/treeformula/parse/aliases.ref +++ b/roottest/root/treeformula/parse/aliases.ref @@ -1,4 +1,3 @@ - Processing runaliases.C... Test part1 ************************ diff --git a/roottest/root/treeformula/parse/base.ref b/roottest/root/treeformula/parse/base.ref index 8378f93e54720..0e1e0c116f1e3 100644 --- a/roottest/root/treeformula/parse/base.ref +++ b/roottest/root/treeformula/parse/base.ref @@ -1,4 +1,3 @@ - Processing runbase.C+... For rawtriggerpulse.QRawPulseR.fChannel found rawtriggerpulse.QRawPulseR.fChannel For rawevent.fraw_pulse.fChannel found rawevent.fraw_pulse.fChannel diff --git a/roottest/root/treeformula/parse/cscan.ref b/roottest/root/treeformula/parse/cscan.ref index 5d526fb7dface..a8e6e0d562688 100644 --- a/roottest/root/treeformula/parse/cscan.ref +++ b/roottest/root/treeformula/parse/cscan.ref @@ -1,4 +1,3 @@ - Processing runcscan.C+... ******************************************************* * Row * Instance * charge*1.0 * 1.0*charge * diff --git a/roottest/root/treeformula/parse/execAliasTest.ref b/roottest/root/treeformula/parse/execAliasTest.ref index 815181020cbb3..37c3dc8043e1f 100644 --- a/roottest/root/treeformula/parse/execAliasTest.ref +++ b/roottest/root/treeformula/parse/execAliasTest.ref @@ -1,4 +1,3 @@ - Processing execAliasTest.C... u:500 *********************************************************** diff --git a/roottest/root/treeformula/parse/execbranchSlash.ref b/roottest/root/treeformula/parse/execbranchSlash.ref index 2632e7ccccace..dd6883c43e312 100644 --- a/roottest/root/treeformula/parse/execbranchSlash.ref +++ b/roottest/root/treeformula/parse/execbranchSlash.ref @@ -1,4 +1,3 @@ - Processing execbranchSlash.C... PRINTING WITH SCAN ************************ diff --git a/roottest/root/treeformula/parse/expotest.ref b/roottest/root/treeformula/parse/expotest.ref index 3614e98c1f2b1..7406f8b4b1b3c 100644 --- a/roottest/root/treeformula/parse/expotest.ref +++ b/roottest/root/treeformula/parse/expotest.ref @@ -1,4 +1,3 @@ - Processing runexpotest.C... testing : (var1e)+(var2e) Ndim= 1, Npar= 0, Noper= 3 fExpr[0] = var1e action = 150 action param = 0 diff --git a/roottest/root/treeformula/parse/form.ref b/roottest/root/treeformula/parse/form.ref index 10055fbbae671..e36ee36e45c8d 100644 --- a/roottest/root/treeformula/parse/form.ref +++ b/roottest/root/treeformula/parse/form.ref @@ -1,3 +1,2 @@ - Processing runform.C... Info in : created default TCanvas with name c1 diff --git a/roottest/root/treeformula/parse/functca.ref b/roottest/root/treeformula/parse/functca.ref index 7bdb643f80f79..7c78e7beee5d8 100644 --- a/roottest/root/treeformula/parse/functca.ref +++ b/roottest/root/treeformula/parse/functca.ref @@ -1,4 +1,3 @@ - Processing runfunctca.C... Info in : created default TCanvas with name c1 tree->Draw("cos(p)") diff --git a/roottest/root/treeformula/parse/gaus.ref b/roottest/root/treeformula/parse/gaus.ref index 1f87b239a6030..e01931fcc0d3f 100644 --- a/roottest/root/treeformula/parse/gaus.ref +++ b/roottest/root/treeformula/parse/gaus.ref @@ -1,3 +1,2 @@ - Processing rungaus.C... 9 diff --git a/roottest/root/treeformula/parse/nodot.ref b/roottest/root/treeformula/parse/nodot.ref index 02ab6aec8c4b2..d57fdbd377f8f 100644 --- a/roottest/root/treeformula/parse/nodot.ref +++ b/roottest/root/treeformula/parse/nodot.ref @@ -1,4 +1,3 @@ - Processing runnodot.C+... ************************************************************************************ * Row * s1.value * s2.value * s3.value * sdot1.val * sdot2.val * sdot3.val * diff --git a/roottest/root/treeformula/parse/templateBase.ref b/roottest/root/treeformula/parse/templateBase.ref index 9a3968d0fd04a..c051bb46d0350 100644 --- a/roottest/root/treeformula/parse/templateBase.ref +++ b/roottest/root/treeformula/parse/templateBase.ref @@ -1,4 +1,3 @@ - Processing runtemplateBase.C... Warning in : no dictionary for class edm::EDProduct is available Warning in : no dictionary for class CaloCrystal is available diff --git a/roottest/root/treeformula/parse/templateName.ref b/roottest/root/treeformula/parse/templateName.ref index ad2adc358e6ef..3558c6a787218 100644 --- a/roottest/root/treeformula/parse/templateName.ref +++ b/roottest/root/treeformula/parse/templateName.ref @@ -1,4 +1,3 @@ - Processing runtemplateName.C... ****************************************************************************** *Tree :mytree : Icecube * diff --git a/roottest/root/treeformula/parse/testBoolOpt.ref b/roottest/root/treeformula/parse/testBoolOpt.ref index cec3602700791..1316748f0f3c7 100644 --- a/roottest/root/treeformula/parse/testBoolOpt.ref +++ b/roottest/root/treeformula/parse/testBoolOpt.ref @@ -1,4 +1,3 @@ - Processing testBoolOpt.C... regular C++: left() || right() running left side diff --git a/roottest/root/treeformula/parse/testStringFormula.ref b/roottest/root/treeformula/parse/testStringFormula.ref index 4d1ee88584afc..484451423ac46 100644 --- a/roottest/root/treeformula/parse/testStringFormula.ref +++ b/roottest/root/treeformula/parse/testStringFormula.ref @@ -1,3 +1,2 @@ - Processing testString.C... Error in : "+" requires two numerical operands. diff --git a/roottest/root/treeformula/references/RefProxyTest.ref b/roottest/root/treeformula/references/RefProxyTest.ref index 924e24e385342..b63a690142994 100644 --- a/roottest/root/treeformula/references/RefProxyTest.ref +++ b/roottest/root/treeformula/references/RefProxyTest.ref @@ -1,4 +1,3 @@ - Processing dt_RefProxyTest.C... diff --git a/roottest/root/treeformula/references/execRefClonesArrayTest.ref b/roottest/root/treeformula/references/execRefClonesArrayTest.ref index 7118df4ceaabc..c17c31bdc0176 100644 --- a/roottest/root/treeformula/references/execRefClonesArrayTest.ref +++ b/roottest/root/treeformula/references/execRefClonesArrayTest.ref @@ -1,4 +1,3 @@ - Processing execRefClonesArrayTest.cxx+... Writing reftca.root Done writing reftca.root diff --git a/roottest/root/treeformula/retobj/enum.ref b/roottest/root/treeformula/retobj/enum.ref index cc937e4b88dd2..4caee9f0eb4db 100644 --- a/roottest/root/treeformula/retobj/enum.ref +++ b/roottest/root/treeformula/retobj/enum.ref @@ -1,4 +1,3 @@ - Processing runenum.C... ************************************ * Row * test.val * test.GetV * diff --git a/roottest/root/treeformula/retobj/retobjTest.ref b/roottest/root/treeformula/retobj/retobjTest.ref index 5d3e89f47f453..33d9b56c3f99c 100644 --- a/roottest/root/treeformula/retobj/retobjTest.ref +++ b/roottest/root/treeformula/retobj/retobjTest.ref @@ -1,4 +1,3 @@ - Processing runretobjTest.C... OBJ: TClass TH1F 1-Dim histograms (one float per channel) OBJ: TClass TH1F 1-Dim histograms (one float per channel) diff --git a/roottest/root/treeformula/scan/Formatting.ref b/roottest/root/treeformula/scan/Formatting.ref index 5f5f8c1bf830b..e7c007c7a135a 100644 --- a/roottest/root/treeformula/scan/Formatting.ref +++ b/roottest/root/treeformula/scan/Formatting.ref @@ -1,4 +1,3 @@ - Processing runFormatting.C... ************************************************************************************ * Row * val * flag * flag * c * c * cstr * diff --git a/roottest/root/treeformula/scan/execLoadDim.ref b/roottest/root/treeformula/scan/execLoadDim.ref index 0adcf4184b627..10fda78831896 100644 --- a/roottest/root/treeformula/scan/execLoadDim.ref +++ b/roottest/root/treeformula/scan/execLoadDim.ref @@ -1,4 +1,3 @@ - Processing execLoadDim.C... Warning in : no dictionary for class TChannelInfo is available *********************************** diff --git a/roottest/root/treeformula/scan/execmissingString.ref b/roottest/root/treeformula/scan/execmissingString.ref index 170116f0d64cb..2e8e7b07817ce 100644 --- a/roottest/root/treeformula/scan/execmissingString.ref +++ b/roottest/root/treeformula/scan/execmissingString.ref @@ -1,4 +1,3 @@ - Processing execmissingString.C... ************************ * Row * fDetector * diff --git a/roottest/root/treeformula/stl/embedstl.ref b/roottest/root/treeformula/stl/embedstl.ref index 632e31a9b09cf..444536bcff79f 100644 --- a/roottest/root/treeformula/stl/embedstl.ref +++ b/roottest/root/treeformula/stl/embedstl.ref @@ -1,4 +1,3 @@ - Processing runembedstl.C... Warning in : no dictionary for class CLHEP::Hep3Vector is available Warning in : no dictionary for class CLHEP::HepLorentzVector is available diff --git a/roottest/root/treeformula/stl/execReferenceReturnType.ref b/roottest/root/treeformula/stl/execReferenceReturnType.ref index 02b2b8ce9ce6e..5e59b1eac98f6 100644 --- a/roottest/root/treeformula/stl/execReferenceReturnType.ref +++ b/roottest/root/treeformula/stl/execReferenceReturnType.ref @@ -1,4 +1,3 @@ - Processing execReferenceReturnType.C... ************************ * Row * v@.at(0). * diff --git a/roottest/root/treeformula/stl/mapvector.ref b/roottest/root/treeformula/stl/mapvector.ref index 34435760ea4db..2d20871be9e74 100644 --- a/roottest/root/treeformula/stl/mapvector.ref +++ b/roottest/root/treeformula/stl/mapvector.ref @@ -1,4 +1,3 @@ - Processing runmapvector.C... Warning in : no dictionary for class MyEvent is available *********************************** diff --git a/roottest/root/treeformula/stl/pair.ref b/roottest/root/treeformula/stl/pair.ref index 88f3f2525dfc5..343d54f775bae 100644 --- a/roottest/root/treeformula/stl/pair.ref +++ b/roottest/root/treeformula/stl/pair.ref @@ -1,4 +1,3 @@ - Processing runpair.C... Warning in : no dictionary for class edm::BranchKey is available Warning in : no dictionary for class edm::ProductID is available diff --git a/roottest/root/treeformula/stl/secondindex.ref b/roottest/root/treeformula/stl/secondindex.ref index 0ea37ea258bea..73689bb7a4444 100644 --- a/roottest/root/treeformula/stl/secondindex.ref +++ b/roottest/root/treeformula/stl/secondindex.ref @@ -1,4 +1,3 @@ - Processing runsecondindex.C... Warning in : no dictionary for class AttributeListLayout is available *********************************************** diff --git a/roottest/root/treeformula/stl/stlString.ref b/roottest/root/treeformula/stl/stlString.ref index a9ceb04a618e0..aa4ce24ef4760 100644 --- a/roottest/root/treeformula/stl/stlString.ref +++ b/roottest/root/treeformula/stl/stlString.ref @@ -1,4 +1,3 @@ - Processing runstlString.C... Warning in : no dictionary for class PCellID is available Warning in : no dictionary for class CaloTriggerPrimitive is available diff --git a/roottest/root/treeformula/string/createAliasStringMakeProxy.ref b/roottest/root/treeformula/string/createAliasStringMakeProxy.ref index 5358516f81b75..3a00c301f4594 100644 --- a/roottest/root/treeformula/string/createAliasStringMakeProxy.ref +++ b/roottest/root/treeformula/string/createAliasStringMakeProxy.ref @@ -1,2 +1 @@ - Processing createAliasStringMakeProxy.C... diff --git a/roottest/root/treeformula/string/execAliasString.ref b/roottest/root/treeformula/string/execAliasString.ref index 6b4dc1dbe73c2..f29fbd2f40eee 100644 --- a/roottest/root/treeformula/string/execAliasString.ref +++ b/roottest/root/treeformula/string/execAliasString.ref @@ -1,4 +1,3 @@ - Processing execAliasString.C... Info in : created default TCanvas with name c1 ************************************ diff --git a/roottest/root/treeformula/string/execDrawString.ref b/roottest/root/treeformula/string/execDrawString.ref index 213ef6f50999c..b6ca51553708f 100644 --- a/roottest/root/treeformula/string/execDrawString.ref +++ b/roottest/root/treeformula/string/execDrawString.ref @@ -1,4 +1,3 @@ - Processing execDrawString.C... Info in : created default TCanvas with name c1 TH1.Print Name = htemp, Entries= 3354, Total sum= 3354 diff --git a/roottest/root/treeformula/string/string.ref b/roottest/root/treeformula/string/string.ref index 34f838b37f5c9..f79515ce83a3a 100644 --- a/roottest/root/treeformula/string/string.ref +++ b/roottest/root/treeformula/string/string.ref @@ -1,4 +1,3 @@ - Processing runstring.C+... ======> EVENT:0 sone = topsone diff --git a/roottest/root/treeformula/sync/alias.ref b/roottest/root/treeformula/sync/alias.ref index 03db9196b00b7..80f15fe879e25 100644 --- a/roottest/root/treeformula/sync/alias.ref +++ b/roottest/root/treeformula/sync/alias.ref @@ -1,2 +1 @@ - Processing runalias.C+... diff --git a/roottest/root/treeformula/sync/execScanFail.ref b/roottest/root/treeformula/sync/execScanFail.ref index ee344c35b9230..6e58a4c880c98 100644 --- a/roottest/root/treeformula/sync/execScanFail.ref +++ b/roottest/root/treeformula/sync/execScanFail.ref @@ -1,4 +1,3 @@ - Processing execScanFail.C... ******************************************************** * Row * ThSCAT * X1pos * CUTpad1pa * CUTpad1to * diff --git a/roottest/root/treeformula/sync/load.ref b/roottest/root/treeformula/sync/load.ref index 7b5410978fc4c..d1373c2acc851 100644 --- a/roottest/root/treeformula/sync/load.ref +++ b/roottest/root/treeformula/sync/load.ref @@ -1,4 +1,3 @@ - Processing runload.C... jetwrite: output file jetclass.root jetwrite: start loop diff --git a/roottest/root/treeformula/sync/readfile-0.ref b/roottest/root/treeformula/sync/readfile-0.ref index a88478afa3d7a..d8ce619585de4 100644 --- a/roottest/root/treeformula/sync/readfile-0.ref +++ b/roottest/root/treeformula/sync/readfile-0.ref @@ -1,4 +1,3 @@ - Processing sync.C(0)... 1 1 diff --git a/roottest/root/treeformula/sync/readfile-1.ref b/roottest/root/treeformula/sync/readfile-1.ref index f1fe32ff66cec..bb02e9de5cafe 100644 --- a/roottest/root/treeformula/sync/readfile-1.ref +++ b/roottest/root/treeformula/sync/readfile-1.ref @@ -1,4 +1,3 @@ - Processing sync.C(1)... 1 1 diff --git a/roottest/root/treeproxy/btagobjsProxy.ref b/roottest/root/treeproxy/btagobjsProxy.ref index 7eb5b3626d0e6..92d58dd6721f0 100644 --- a/roottest/root/treeproxy/btagobjsProxy.ref +++ b/roottest/root/treeproxy/btagobjsProxy.ref @@ -1,4 +1,3 @@ - Processing runbtagobjs.C(5)... Warning in : no dictionary for class BTagJet is available jets.wSV0: 10 diff --git a/roottest/root/treeproxy/execVectorProxyTest.ref b/roottest/root/treeproxy/execVectorProxyTest.ref index b7285f11bdb56..a52cc43af7a92 100644 --- a/roottest/root/treeproxy/execVectorProxyTest.ref +++ b/roottest/root/treeproxy/execVectorProxyTest.ref @@ -1,2 +1 @@ - Processing execVectorProxyTest.C... diff --git a/roottest/root/treeproxy/execsearch.ref b/roottest/root/treeproxy/execsearch.ref index 0dabeccdcf2a1..16aaf476e1419 100644 --- a/roottest/root/treeproxy/execsearch.ref +++ b/roottest/root/treeproxy/execsearch.ref @@ -1,4 +1,3 @@ - Processing execsearch.C... Warning in : no dictionary for class ND::P0D::NueEvtInfo is available Warning in : no dictionary for class ND::P0D::TVertex is available diff --git a/roottest/root/treeproxy/friendchain.ref b/roottest/root/treeproxy/friendchain.ref index 2fe2099c17838..51f865c50a9b7 100644 --- a/roottest/root/treeproxy/friendchain.ref +++ b/roottest/root/treeproxy/friendchain.ref @@ -1,4 +1,3 @@ - Processing runfriendchain.C... 348 65400 348 65400 diff --git a/roottest/root/treeproxy/fullmc.ref b/roottest/root/treeproxy/fullmc.ref index 68e0d056b82ae..caad127889995 100644 --- a/roottest/root/treeproxy/fullmc.ref +++ b/roottest/root/treeproxy/fullmc.ref @@ -1,4 +1,3 @@ - Processing runfullmc.C+(5)... Warning in : no dictionary for class EventInfo_p3 is available Warning in : no dictionary for class McEventCollection_p5 is available diff --git a/roottest/root/treeproxy/leaflist.ref b/roottest/root/treeproxy/leaflist.ref index c8eead2a098ec..e5e4b1e1b8193 100644 --- a/roottest/root/treeproxy/leaflist.ref +++ b/roottest/root/treeproxy/leaflist.ref @@ -1,4 +1,3 @@ - Processing runleaflist.C... Info in : Will process tree/chain using generatedSel.h+ 3 5 7 diff --git a/roottest/root/treeproxy/make_tuple.ref b/roottest/root/treeproxy/make_tuple.ref index 95dbc1f23f99f..114f7f21d9e48 100644 --- a/roottest/root/treeproxy/make_tuple.ref +++ b/roottest/root/treeproxy/make_tuple.ref @@ -1,4 +1,3 @@ - Processing runmake_tuple.C... 1, 0.16, 3 0 diff --git a/roottest/root/treeproxy/producereducedSpill.ref b/roottest/root/treeproxy/producereducedSpill.ref index 7a25c021333e3..50300c66ce6e6 100644 --- a/roottest/root/treeproxy/producereducedSpill.ref +++ b/roottest/root/treeproxy/producereducedSpill.ref @@ -1,4 +1,3 @@ - Processing producereducedSpill.C... Warning in : no dictionary for class CNtEventHeader is available Warning in : no dictionary for class CNtEventSummary is available diff --git a/roottest/root/treeproxy/reducedSpill.ref b/roottest/root/treeproxy/reducedSpill.ref index e8a5be38f8756..4b4e2261ebc0b 100644 --- a/roottest/root/treeproxy/reducedSpill.ref +++ b/roottest/root/treeproxy/reducedSpill.ref @@ -1,4 +1,3 @@ - Processing runreducedSpill.C... Warning in : no dictionary for class CNtEventHeader is available Warning in : no dictionary for class CNtEventSummary is available diff --git a/roottest/root/treeproxy/split/execNonSplitBranchMakeProxy.ref b/roottest/root/treeproxy/split/execNonSplitBranchMakeProxy.ref index bb0b91fe0f66e..3bb85ab875f46 100644 --- a/roottest/root/treeproxy/split/execNonSplitBranchMakeProxy.ref +++ b/roottest/root/treeproxy/split/execNonSplitBranchMakeProxy.ref @@ -1,2 +1 @@ - Processing execNonSplitBranchMakeProxy.C... diff --git a/roottest/root/treeproxy/stlvec/tlorentzvec.ref b/roottest/root/treeproxy/stlvec/tlorentzvec.ref index 9aeec4af1194a..3b81e7ce678f0 100644 --- a/roottest/root/treeproxy/stlvec/tlorentzvec.ref +++ b/roottest/root/treeproxy/stlvec/tlorentzvec.ref @@ -1,3 +1,2 @@ - Processing runtlorentzvec.C... Info in : created default TCanvas with name c1 diff --git a/roottest/root/treeproxy/valdim3.ref b/roottest/root/treeproxy/valdim3.ref index fbe1d9ec56be2..f49e2513144c9 100644 --- a/roottest/root/treeproxy/valdim3.ref +++ b/roottest/root/treeproxy/valdim3.ref @@ -1,4 +1,3 @@ - Processing runvaldim3.C... Info in : created default TCanvas with name c1 ntracks = 2 diff --git a/roottest/root/treeproxy/vectorint/vectorint.ref b/roottest/root/treeproxy/vectorint/vectorint.ref index 2518f713a5083..a9aef438749cf 100644 --- a/roottest/root/treeproxy/vectorint/vectorint.ref +++ b/roottest/root/treeproxy/vectorint/vectorint.ref @@ -1,4 +1,3 @@ - Processing runvectorint.C+(5)... Warning in : class Track already in TClassTable myfunc: vec[0]==3 diff --git a/roottest/root/treeproxy/vectorint/vectorintEmu.ref b/roottest/root/treeproxy/vectorint/vectorintEmu.ref index b41b1520265e3..c164a43433646 100644 --- a/roottest/root/treeproxy/vectorint/vectorintEmu.ref +++ b/roottest/root/treeproxy/vectorint/vectorintEmu.ref @@ -1,4 +1,3 @@ - Processing runvectorintEmu.C+(5)... Warning in : no dictionary for class Top is available Warning in : no dictionary for class Track is available From 852b70cc700c1ce4991419609a96123bbe415a44 Mon Sep 17 00:00:00 2001 From: Jonas Rembser Date: Mon, 26 Jan 2026 08:07:42 +0100 Subject: [PATCH 11/14] [roottest] Ensure correct Python executable in command line tools tests We should explicitly use the Python executable from the Python version that was used to build ROOT. Otherwise, we risk picking up an different Python version at test time in some environments. This was already done on Windows before, but is important to do on all platforms. Closes #21024. --- roottest/main/CMakeLists.txt | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/roottest/main/CMakeLists.txt b/roottest/main/CMakeLists.txt index 2530b30050c84..fee35d62beb84 100644 --- a/roottest/main/CMakeLists.txt +++ b/roottest/main/CMakeLists.txt @@ -6,16 +6,15 @@ configure_file(subdirs.root . COPYONLY) configure_file(nested.root . COPYONLY) configure_file(RNTuple.root . COPYONLY) +# We should explicitly use the Python executable from the Python version that +# was used to build ROOT. Otherwise, we risk picking up a different Python +# version at test time. +set(PY_TOOLS_PREFIX ${Python3_EXECUTABLE} ${ROOTSYS}/bin) +set(TOOLS_PREFIX ${ROOTSYS}/bin) + if(MSVC) - # the command line tools works fine in the Windows command prompt but - # not from CTest, so let's add Python.exe and the .py file extension - set(PY_TOOLS_PREFIX ${Python3_EXECUTABLE} ${ROOTSYS}/bin) - set(TOOLS_PREFIX ${ROOTSYS}/bin) set(pyext .py) set(exeext .exe) -else() - set(PY_TOOLS_PREFIX ${ROOTSYS}/bin) - set(TOOLS_PREFIX ${ROOTSYS}/bin) endif() ############################## ROOLS TESTS ############################## From 51557c01cabf4be2f0731316c0049c58bb4efac1 Mon Sep 17 00:00:00 2001 From: Stephan Hageboeck Date: Thu, 22 Jan 2026 16:17:11 +0100 Subject: [PATCH 12/14] [hist] Extend the region in which TH3::Interpolate(x, y, z) can be used. Previously, when a user asked to interpolate a value close to the edges of the histogram, the function would generate an error. This is inconsistent with the TH1 version of Interpolate. Here, the valid range is extended by assuming that the histogram is constant at its edges (i.e. the imaginary next bin outside the axis limits has the same bin content as the last bin inside the limits, like in TH1). From here, the trilinear interpolation proceeds as before. Fix #10678 --- hist/hist/src/TH3.cxx | 62 ++++++++++++++++++++++++++----------------- 1 file changed, 37 insertions(+), 25 deletions(-) diff --git a/hist/hist/src/TH3.cxx b/hist/hist/src/TH3.cxx index cb5fdc29d2062..6551a70251ec9 100644 --- a/hist/hist/src/TH3.cxx +++ b/hist/hist/src/TH3.cxx @@ -25,6 +25,7 @@ #include "TMath.h" #include "TObjString.h" +#include #include #include @@ -1471,16 +1472,15 @@ Double_t TH3::Interpolate(Double_t, Double_t) const return 0; } - //////////////////////////////////////////////////////////////////////////////// /// Given a point P(x,y,z), Interpolate approximates the value via trilinear interpolation -/// based on the 8 nearest bin center points (corner of the cube surrounding the points) -/// The Algorithm is described in http://en.wikipedia.org/wiki/Trilinear_interpolation -/// The given values (x,y,z) must be between first bin center and last bin center for each coordinate: +/// based on the 8 nearest bin center points (corner of the cube surrounding the points). +/// The Algorithm is described in http://en.wikipedia.org/wiki/Trilinear_interpolation. /// -/// fXAxis.GetBinCenter(1) < x < fXaxis.GetBinCenter(nbinX) AND -/// fYAxis.GetBinCenter(1) < y < fYaxis.GetBinCenter(nbinY) AND -/// fZAxis.GetBinCenter(1) < z < fZaxis.GetBinCenter(nbinZ) +/// The coordinate (x,y,z) must be in the histogram range. If a coordinate falls into the first +/// or last bin of an axis, the histogram is assumed to be constant at the edges. The interpolation +/// proceeds as if the bin "left of" the first bin in x had the same bin content as the first bin x, +/// and similar for the other axes. Double_t TH3::Interpolate(Double_t x, Double_t y, Double_t z) const { @@ -1496,29 +1496,41 @@ Double_t TH3::Interpolate(Double_t x, Double_t y, Double_t z) const if ( z < fZaxis.GetBinCenter(ubz) ) ubz -= 1; Int_t obz = ubz + 1; + auto GetBinCenterExtrapolate = [](TAxis const &axis, Int_t index) { + // Get bin centres if inside the histogram, or return the centre of an imaginary + // bin that's just outside the histogram, and which is as wide as the last valid bin. + // We need to make up a number here to not confuse the linear interpolation code below. + if (index == 0) { + return axis.GetBinCenter(1) - axis.GetBinWidth(1); + } else if (index == axis.GetNbins() + 1) { + return axis.GetBinCenter(axis.GetNbins()) + axis.GetBinWidth(axis.GetNbins()); + } else { + return axis.GetBinCenter(index); + } + }; -// if ( IsBinUnderflow(GetBin(ubx, uby, ubz)) || -// IsBinOverflow (GetBin(obx, oby, obz)) ) { - if (ubx <=0 || uby <=0 || ubz <= 0 || - obx > fXaxis.GetNbins() || oby > fYaxis.GetNbins() || obz > fZaxis.GetNbins() ) { - Error("Interpolate","Cannot interpolate outside histogram domain."); - return 0; - } - - Double_t xw = fXaxis.GetBinCenter(obx) - fXaxis.GetBinCenter(ubx); - Double_t yw = fYaxis.GetBinCenter(oby) - fYaxis.GetBinCenter(uby); - Double_t zw = fZaxis.GetBinCenter(obz) - fZaxis.GetBinCenter(ubz); + Double_t xw = GetBinCenterExtrapolate(fXaxis, obx) - GetBinCenterExtrapolate(fXaxis, ubx); + Double_t yw = GetBinCenterExtrapolate(fYaxis, oby) - GetBinCenterExtrapolate(fYaxis, uby); + Double_t zw = GetBinCenterExtrapolate(fZaxis, obz) - GetBinCenterExtrapolate(fZaxis, ubz); - Double_t xd = (x - fXaxis.GetBinCenter(ubx)) / xw; - Double_t yd = (y - fYaxis.GetBinCenter(uby)) / yw; - Double_t zd = (z - fZaxis.GetBinCenter(ubz)) / zw; + Double_t xd = (x - GetBinCenterExtrapolate(fXaxis, ubx)) / xw; + Double_t yd = (y - GetBinCenterExtrapolate(fYaxis, uby)) / yw; + Double_t zd = (z - GetBinCenterExtrapolate(fZaxis, ubz)) / zw; + auto GetBinContentNoOverflow = [this](int ix, int iy, int iz) { + // When a bin is outside the histogram range, return the last value inside + // the range. That is, make the histogram constant at its edges. + ix = std::clamp(ix, 1, GetNbinsX()); + iy = std::clamp(iy, 1, GetNbinsY()); + iz = std::clamp(iz, 1, GetNbinsZ()); - Double_t v[] = { GetBinContent( ubx, uby, ubz ), GetBinContent( ubx, uby, obz ), - GetBinContent( ubx, oby, ubz ), GetBinContent( ubx, oby, obz ), - GetBinContent( obx, uby, ubz ), GetBinContent( obx, uby, obz ), - GetBinContent( obx, oby, ubz ), GetBinContent( obx, oby, obz ) }; + return GetBinContent(ix, iy, iz); + }; + Double_t v[] = {GetBinContentNoOverflow(ubx, uby, ubz), GetBinContentNoOverflow(ubx, uby, obz), + GetBinContentNoOverflow(ubx, oby, ubz), GetBinContentNoOverflow(ubx, oby, obz), + GetBinContentNoOverflow(obx, uby, ubz), GetBinContentNoOverflow(obx, uby, obz), + GetBinContentNoOverflow(obx, oby, ubz), GetBinContentNoOverflow(obx, oby, obz)}; Double_t i1 = v[0] * (1 - zd) + v[1] * zd; Double_t i2 = v[2] * (1 - zd) + v[3] * zd; From 4cfaed9f5e97682d37f6ea5aadb0d537489005e5 Mon Sep 17 00:00:00 2001 From: Stephan Hageboeck Date: Thu, 22 Jan 2026 16:21:42 +0100 Subject: [PATCH 13/14] [hist] Add a test for ROOT-10678, TH3::Interpolate. --- hist/hist/test/test_TH3.cxx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/hist/hist/test/test_TH3.cxx b/hist/hist/test/test_TH3.cxx index 5cf080eb90317..d2642b1c9a71a 100644 --- a/hist/hist/test/test_TH3.cxx +++ b/hist/hist/test/test_TH3.cxx @@ -74,3 +74,25 @@ TEST(TH3D, FillAtomicNoSumW2) } #endif + +// ROOT-10678 +TEST(TH3D, InterpolateCloseToEdge) +{ + TH3F hist("3D", "boring histo", 20, 0, 20, 20, 0, 20, 20, 0, 20); + + for (int i = 0; i < hist.GetNbinsX(); i++) + for (int j = 0; j < hist.GetNbinsY(); j++) + for (int k = 0; k < hist.GetNbinsZ(); k++) + hist.SetBinContent(i + 1, j + 1, k + 1, i + 100. * j + 10000. * k); + + EXPECT_DOUBLE_EQ(hist.Interpolate(hist.GetXaxis()->GetBinCenter(2), hist.GetYaxis()->GetBinCenter(3), + hist.GetZaxis()->GetBinCenter(4)), + 1. + 100. * 2. + 10000. * 3); + EXPECT_DOUBLE_EQ(hist.Interpolate(hist.GetXaxis()->GetBinCenter(2) + 0.5, hist.GetYaxis()->GetBinCenter(3) + 0.4, + hist.GetZaxis()->GetBinCenter(4) + 0.3), + 1. + 0.5 + 100. * 2.4 + 10000. * 3.3); + + EXPECT_DOUBLE_EQ(hist.Interpolate(0., 0., 5.), 10000. * 4.5); + EXPECT_DOUBLE_EQ(hist.Interpolate(0.3, 19.9, 5.), 100. * 19 + 10000. * 4.5); + EXPECT_DOUBLE_EQ(hist.Interpolate(0.8, 19.9, 5.), 0.3 + 100. * 19 + 10000. * 4.5); +} From 5ae825936d5c0c266c9e795a1354c22e9c020d43 Mon Sep 17 00:00:00 2001 From: Jonas Rembser Date: Mon, 26 Jan 2026 19:23:20 +0100 Subject: [PATCH 14/14] [core] Follow symlinks in `TROOT::GetSharedLibDir()` The idea is to find the actual ROOT install directory, so we have to follow symlinks. The `info->dlpi_name` doesn't do that, so we need to do that ourselves with `fs::canonical()`. Closes #21031. --- core/base/src/TROOT.cxx | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/core/base/src/TROOT.cxx b/core/base/src/TROOT.cxx index a9d9bb5cdc189..57f56133d00cb 100644 --- a/core/base/src/TROOT.cxx +++ b/core/base/src/TROOT.cxx @@ -3159,7 +3159,26 @@ const TString &TROOT::GetSharedLibDir() fs::path p = info->dlpi_name; if (p.filename() == _R_QUOTEVAL_(LIB_CORE_NAME)) { - libdir = p.parent_path().c_str(); + std::error_code ec; + + // Resolve symlinks: critical for environments like CMSSW, where the + // ROOT libraries are loaded via symlinks that point to the actual + // install directory + fs::path resolved = fs::canonical(p, ec); + if (ec) { + ::Error("TROOT", + "Failed to canonicalize detected ROOT shared library path:\n" + "%s\n" + "Error code: %d (%s)\n" + "Error category: %s\n" + "This is an unexpected internal error and ROOT might not work.\n" + "Please report this issue on GitHub: https://github.com/root-project/root/issues", + p.string().c_str(), ec.value(), ec.message().c_str(), ec.category().name()); + // Fall back to the loader path if canonicalization fails. The path + // will likely be wrong, but at least not garbage + resolved = p; + } + libdir = resolved.parent_path().c_str(); return 1; // stop iteration } return 0; // continue