ATLAS Offline Software
Loading...
Searching...
No Matches
columnar::TestUtils::BranchReader< T > Class Template Referencefinal
Collaboration diagram for columnar::TestUtils::BranchReader< T >:

Public Member Functions

 BranchReader (const std::string &val_branchName)
 ~BranchReader () noexcept
 BranchReader (const BranchReader &)=delete
BranchReaderoperator= (const BranchReader &)=delete
void setIsStatic (bool isStatic)
const std::string & branchName () const
std::string columnName () const
std::string containerName () const
void connectTree (TTree *tree)
const T & getEntry (Long64_t entry)
const T & getCachedEntry () const
std::optional< float > entrySize () const
std::optional< float > uncompressedSize () const
std::optional< unsigned > numBaskets ()

Private Attributes

std::string m_branchName
TBranch * m_branch = nullptr
bool m_isStatic = std::is_pod_v<T>
T * m_data {new T()}

Detailed Description

template<typename T>
class columnar::TestUtils::BranchReader< T >

Definition at line 102 of file ColumnarPhysliteTest.cxx.

Constructor & Destructor Documentation

◆ BranchReader() [1/2]

template<typename T>
columnar::TestUtils::BranchReader< T >::BranchReader ( const std::string & val_branchName)
inline

◆ ~BranchReader()

template<typename T>
columnar::TestUtils::BranchReader< T >::~BranchReader ( )
inlinenoexcept

Definition at line 117 of file ColumnarPhysliteTest.cxx.

◆ BranchReader() [2/2]

template<typename T>
columnar::TestUtils::BranchReader< T >::BranchReader ( const BranchReader< T > & )
delete

Member Function Documentation

◆ branchName()

template<typename T>
const std::string & columnar::TestUtils::BranchReader< T >::branchName ( ) const
inlinenodiscard

Definition at line 130 of file ColumnarPhysliteTest.cxx.

131 {
132 return m_branchName;
133 }

◆ columnName()

template<typename T>
std::string columnar::TestUtils::BranchReader< T >::columnName ( ) const
inlinenodiscard

Definition at line 135 of file ColumnarPhysliteTest.cxx.

136 {
138 if (auto index = columnName.find ("AuxDyn."); index != std::string::npos)
139 columnName.replace (index, 6, "");
140 else if (auto index = columnName.find ("Aux."); index != std::string::npos)
141 columnName.replace (index, 3, "");
142 else if (columnName.find (".") != std::string::npos)
143 throw std::runtime_error ("branch name does not contain AuxDyn or Aux: " + m_branchName);
144 return columnName;
145 }

◆ connectTree()

template<typename T>
void columnar::TestUtils::BranchReader< T >::connectTree ( TTree * tree)
inline

Definition at line 159 of file ColumnarPhysliteTest.cxx.

160 {
161 m_branch = tree->GetBranch (m_branchName.c_str());
162 if (!m_branch)
163 throw std::runtime_error ("failed to get branch: " + m_branchName);
164 m_branch->SetMakeClass (1);
165 if (m_isStatic)
166 m_branch->SetAddress (m_data);
167 else
168 m_branch->SetAddress (&m_data);
169 }

◆ containerName()

template<typename T>
std::string columnar::TestUtils::BranchReader< T >::containerName ( ) const
inlinenodiscard

Definition at line 147 of file ColumnarPhysliteTest.cxx.

148 {
149 if (auto index = m_branchName.find ("AuxDyn."); index != std::string::npos)
150 return m_branchName.substr (0, index);
151 else if (auto index = m_branchName.find ("Aux."); index != std::string::npos)
152 return m_branchName.substr (0, index);
153 else if (m_branchName.find (".") == std::string::npos)
154 return m_branchName;
155 else
156 throw std::runtime_error ("branch name does not contain AuxDyn or Aux: " + m_branchName);
157 }

◆ entrySize()

template<typename T>
std::optional< float > columnar::TestUtils::BranchReader< T >::entrySize ( ) const
inline

Definition at line 187 of file ColumnarPhysliteTest.cxx.

188 {
189 if (!m_branch)
190 return std::nullopt;
191 return static_cast<float>(m_branch->GetZipBytes()) / m_branch->GetEntries();
192 }

◆ getCachedEntry()

template<typename T>
const T & columnar::TestUtils::BranchReader< T >::getCachedEntry ( ) const
inline

Definition at line 182 of file ColumnarPhysliteTest.cxx.

183 {
184 return *m_data;
185 }

◆ getEntry()

template<typename T>
const T & columnar::TestUtils::BranchReader< T >::getEntry ( Long64_t entry)
inline

Definition at line 171 of file ColumnarPhysliteTest.cxx.

172 {
173 if (!m_branch)
174 throw std::runtime_error ("branch not connected: " + m_branchName);
175 if (m_branch->GetEntry (entry) <= 0)
176 throw std::runtime_error ("failed to get entry " + std::to_string (entry) + " for branch: " + m_branchName);
177 if (m_data == nullptr)
178 throw std::runtime_error ("got nullptr reading data for branch: " + m_branchName);
179 return *m_data;
180 }

◆ numBaskets()

template<typename T>
std::optional< unsigned > columnar::TestUtils::BranchReader< T >::numBaskets ( )
inline

Definition at line 203 of file ColumnarPhysliteTest.cxx.

204 {
205 if (!m_branch)
206 return std::nullopt;
207 return m_branch->GetListOfBaskets()->GetSize();
208 }

◆ operator=()

template<typename T>
BranchReader & columnar::TestUtils::BranchReader< T >::operator= ( const BranchReader< T > & )
delete

◆ setIsStatic()

template<typename T>
void columnar::TestUtils::BranchReader< T >::setIsStatic ( bool isStatic)
inline

Definition at line 125 of file ColumnarPhysliteTest.cxx.

126 {
128 }

◆ uncompressedSize()

template<typename T>
std::optional< float > columnar::TestUtils::BranchReader< T >::uncompressedSize ( ) const
inline

Definition at line 194 of file ColumnarPhysliteTest.cxx.

195 {
196 if (!m_branch)
197 return std::nullopt;
198 return static_cast<float>(m_branch->GetTotBytes()) / m_branch->GetEntries();
199 }

Member Data Documentation

◆ m_branch

template<typename T>
TBranch* columnar::TestUtils::BranchReader< T >::m_branch = nullptr
private

Definition at line 105 of file ColumnarPhysliteTest.cxx.

◆ m_branchName

template<typename T>
std::string columnar::TestUtils::BranchReader< T >::m_branchName
private

Definition at line 104 of file ColumnarPhysliteTest.cxx.

◆ m_data

template<typename T>
T* columnar::TestUtils::BranchReader< T >::m_data {new T()}
private

Definition at line 107 of file ColumnarPhysliteTest.cxx.

107{new T()};

◆ m_isStatic

template<typename T>
bool columnar::TestUtils::BranchReader< T >::m_isStatic = std::is_pod_v<T>
private

Definition at line 106 of file ColumnarPhysliteTest.cxx.


The documentation for this class was generated from the following file: