14 using namespace ROOT::Detail::RDF;
16 void RJittedCustomColumn::InitSlot(TTreeReader *r,
unsigned int slot)
18 R__ASSERT(fConcreteCustomColumn !=
nullptr);
19 fConcreteCustomColumn->InitSlot(r, slot);
22 void *RJittedCustomColumn::GetValuePtr(
unsigned int slot)
24 R__ASSERT(fConcreteCustomColumn !=
nullptr);
25 return fConcreteCustomColumn->GetValuePtr(slot);
28 const std::type_info &RJittedCustomColumn::GetTypeId()
const
30 R__ASSERT(fConcreteCustomColumn !=
nullptr);
31 return fConcreteCustomColumn->GetTypeId();
34 void RJittedCustomColumn::Update(
unsigned int slot, Long64_t entry)
36 R__ASSERT(fConcreteCustomColumn !=
nullptr);
37 fConcreteCustomColumn->Update(slot, entry);
40 void RJittedCustomColumn::ClearValueReaders(
unsigned int slot)
42 R__ASSERT(fConcreteCustomColumn !=
nullptr);
43 fConcreteCustomColumn->ClearValueReaders(slot);
46 void RJittedCustomColumn::InitNode()
48 R__ASSERT(fConcreteCustomColumn !=
nullptr);
49 fConcreteCustomColumn->InitNode();