Skip to content

Commit a6cffa5

Browse files
committed
[NFC][ntuple] clang-format RPageStorage.[hxx|cxx]
1 parent 0445eab commit a6cffa5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tree/ntuple/inc/ROOT/RPageStorage.hxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -634,21 +634,21 @@ private:
634634
/// Keeps track of the requested physical column IDs and their in-memory target type via a column element identifier.
635635
/// When using alias columns (projected fields), physical columns may be requested multiple times.
636636
class RActivePhysicalColumns {
637-
public:
637+
public:
638638
struct RColumnInfo {
639639
ROOT::Internal::RColumnElementBase::RIdentifier fElementId;
640640
std::size_t fRefCounter = 0;
641641
};
642642

643-
private:
643+
private:
644644
/// Maps physical column IDs to all the requested in-memory representations.
645645
/// A pair of physical column ID and in-memory representation can be requested multiple times, which is
646646
/// indicated by the reference counter.
647647
/// We can only have a handful of possible in-memory representations for a given column,
648648
/// so it is fine to search them linearly.
649649
std::unordered_map<ROOT::DescriptorId_t, std::vector<RColumnInfo>> fColumnInfos;
650650

651-
public:
651+
public:
652652
void Insert(ROOT::DescriptorId_t physicalColumnId, ROOT::Internal::RColumnElementBase::RIdentifier elementId);
653653
void Erase(ROOT::DescriptorId_t physicalColumnId, ROOT::Internal::RColumnElementBase::RIdentifier elementId);
654654
ROOT::Internal::RCluster::ColumnSet_t ToColumnSet() const;

tree/ntuple/src/RPageStorage.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ ROOT::Internal::RPageSource::LoadPageFromSummary(ColumnHandle_t columnHandle, co
470470
fCounters->fSzReadPayload.Add(sealedPage.GetBufferSize());
471471
} else {
472472
if (!fCurrentCluster || (fCurrentCluster->GetId() != clusterId) || !fCurrentCluster->ContainsColumn(columnId))
473-
fCurrentCluster = fClusterPool.GetCluster(clusterId, fActivePhysicalColumns.ToColumnSet());
473+
fCurrentCluster = fClusterPool.GetCluster(clusterId, fActivePhysicalColumns.ToColumnSet());
474474
R__ASSERT(fCurrentCluster->ContainsColumn(columnId));
475475

476476
// The cluster pool may have unzipped the required page into the page pool

0 commit comments

Comments
 (0)