File tree Expand file tree Collapse file tree 5 files changed +12
-7
lines changed
Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ class TListIter;
3838class TList : public TSeqCollection {
3939
4040friend class TListIter ;
41-
42- protected:
41+ public:
4342 using TObjLinkPtr_t = std::shared_ptr<TObjLink>;
43+ protected:
4444 using TObjLinkWeakPtr_t = std::weak_ptr<TObjLink>;
4545
4646 TObjLinkPtr_t fFirst ; // ! pointer to first entry in linked list
@@ -121,9 +121,9 @@ friend class TListIter;
121121class TObjLink : public std ::enable_shared_from_this<TObjLink> {
122122
123123friend class TList ;
124-
125- private:
124+ public:
126125 using TObjLinkPtr_t = std::shared_ptr<TObjLink>;
126+ private:
127127 using TObjLinkWeakPtr_t = std::weak_ptr<TObjLink>;
128128
129129 TObjLinkPtr_t fNext ;
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ class TIOFeatures;
3939}
4040
4141class TFileMergeInfo {
42- private :
42+ public :
4343 using TIOFeatures = ROOT::TIOFeatures;
44-
44+ private:
4545 TFileMergeInfo () = delete ;
4646 TFileMergeInfo (const TFileMergeInfo&) = delete ;
4747 TFileMergeInfo& operator =(const TFileMergeInfo&) = delete ;
Original file line number Diff line number Diff line change 1818#include " TGeoBBox.h"
1919
2020class TGeoFacet {
21+ public:
2122 using Vertex_t = Tessellated::Vertex_t;
2223 using VertexVec_t = Tessellated::VertexVec_t;
2324
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ class TBulkBranchRead {
9191}
9292
9393class TBranch : public TNamed , public TAttFill {
94+ public:
9495 using TIOFeatures = ROOT::TIOFeatures;
9596
9697protected:
Original file line number Diff line number Diff line change @@ -60,9 +60,12 @@ class TLeaf : public TNamed {
6060
6161 virtual Int_t GetOffsetHeaderSize () const {return 0 ;}
6262
63- protected :
63+ public :
6464
6565 using Counts_t = std::vector<Int_t>;
66+
67+ protected:
68+
6669 struct LeafCountValues {
6770 Counts_t fValues ;
6871 Long64_t fStartEntry {-1 }; // /<! entry number of corresponding to element 0 of the vector.
You can’t perform that action at this time.
0 commit comments