CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Types | Private Member Functions | Private Attributes
TableOutputBranches Class Reference

#include <TableOutputBranches.h>

Classes

struct  NamedBranchPtr
 

Public Member Functions

void branch (TTree &tree)
 
void defineBranchesFromFirstEvent (const nanoaod::FlatTable &tab)
 
void fill (const edm::OccurrenceForOutput &iWhatever, TTree &tree, bool extensions)
 
 TableOutputBranches (const edm::BranchDescription *desc, const edm::EDGetToken &token)
 

Private Types

enum  { IsMain = 0, IsExtension = 1, DontKnowYetIfMainOrExtension = 2 }
 

Private Member Functions

template<typename T >
void fillColumn (NamedBranchPtr &pair, const nanoaod::FlatTable &tab)
 

Private Attributes

std::string m_baseName
 
bool m_branchesBooked
 
UInt_t m_counter
 
TBranch * m_counterBranch = nullptr
 
std::string m_doc
 
std::vector< NamedBranchPtrm_doubleBranches
 
enum TableOutputBranches:: { ... }  m_extension
 
std::vector< NamedBranchPtrm_floatBranches
 
std::vector< NamedBranchPtrm_int8Branches
 
std::vector< NamedBranchPtrm_intBranches
 
bool m_singleton = false
 
edm::EDGetToken m_token
 
std::vector< NamedBranchPtrm_uint32Branches
 
std::vector< NamedBranchPtrm_uint8Branches
 

Detailed Description

Definition at line 12 of file TableOutputBranches.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
private
Enumerator
IsMain 
IsExtension 
DontKnowYetIfMainOrExtension 

Definition at line 31 of file TableOutputBranches.h.

Constructor & Destructor Documentation

◆ TableOutputBranches()

TableOutputBranches::TableOutputBranches ( const edm::BranchDescription desc,
const edm::EDGetToken token 
)
inline

Definition at line 14 of file TableOutputBranches.h.

References submitPVResolutionJobs::desc.

16  if (desc->className() != "nanoaod::FlatTable")
17  throw cms::Exception("Configuration", "NanoAODOutputModule can only write out nanoaod::FlatTable objects");
18  }
enum TableOutputBranches::@872 m_extension
edm::EDGetToken m_token

Member Function Documentation

◆ branch()

void TableOutputBranches::branch ( TTree &  tree)

Definition at line 43 of file TableOutputBranches.cc.

References electrons_cff::branchName, Exception, IsExtension, m_baseName, m_counter, m_counterBranch, m_doc, m_doubleBranches, m_extension, m_floatBranches, m_int8Branches, m_intBranches, m_singleton, m_uint32Branches, m_uint8Branches, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by python.cmstools.EventTree::__getattr__(), and fill().

43  {
44  if (!m_singleton) {
45  if (m_extension == IsExtension) {
46  m_counterBranch = tree.FindBranch(("n" + m_baseName).c_str());
47  if (!m_counterBranch) {
48  throw cms::Exception("LogicError",
49  "Trying to save an extension table for " + m_baseName +
50  " before having saved the corresponding main table\n");
51  }
52  } else {
53  if (tree.FindBranch(("n" + m_baseName).c_str()) != nullptr) {
54  throw cms::Exception("LogicError", "Trying to save multiple main tables for " + m_baseName + "\n");
55  }
56  m_counterBranch = tree.Branch(("n" + m_baseName).c_str(), &m_counter, ("n" + m_baseName + "/i").c_str());
57  m_counterBranch->SetTitle(m_doc.c_str());
58  }
59  }
60  std::string varsize = m_singleton ? "" : "[n" + m_baseName + "]";
61  for (std::vector<NamedBranchPtr> *branches :
63  for (auto &pair : *branches) {
64  std::string branchName = makeBranchName(m_baseName, pair.name);
65  pair.branch =
66  tree.Branch(branchName.c_str(), (void *)nullptr, (branchName + varsize + "/" + pair.rootTypeCode).c_str());
67  pair.branch->SetTitle(pair.title.c_str());
68  }
69  }
70 }
std::vector< NamedBranchPtr > m_uint32Branches
enum TableOutputBranches::@872 m_extension
std::vector< NamedBranchPtr > m_intBranches
std::vector< NamedBranchPtr > m_int8Branches
std::vector< NamedBranchPtr > m_uint8Branches
Definition: tree.py:1
std::vector< NamedBranchPtr > m_floatBranches
std::vector< NamedBranchPtr > m_doubleBranches

◆ defineBranchesFromFirstEvent()

void TableOutputBranches::defineBranchesFromFirstEvent ( const nanoaod::FlatTable tab)

Definition at line 11 of file TableOutputBranches.cc.

References nanoaod::FlatTable::Bool, nanoaod::FlatTable::columnDoc(), nanoaod::FlatTable::columnName(), nanoaod::FlatTable::columnType(), nanoaod::FlatTable::Double, Exception, nanoaod::FlatTable::Float, mps_fire::i, nanoaod::FlatTable::Int, nanoaod::FlatTable::Int8, m_baseName, m_doubleBranches, m_floatBranches, m_int8Branches, m_intBranches, m_uint32Branches, m_uint8Branches, nanoaod::FlatTable::name(), nanoaod::FlatTable::nColumns(), AlCaHLTBitMon_QueryRunRegistry::string, nanoaod::FlatTable::UInt32, nanoaod::FlatTable::UInt8, and trigObjTnPSource_cfi::var.

Referenced by fill().

11  {
12  m_baseName = tab.name();
13  for (size_t i = 0; i < tab.nColumns(); i++) {
14  const std::string &var = tab.columnName(i);
15  switch (tab.columnType(i)) {
17  m_floatBranches.emplace_back(var, tab.columnDoc(i), "F");
18  break;
20  m_intBranches.emplace_back(var, tab.columnDoc(i), "I");
21  break;
23  m_int8Branches.emplace_back(var, tab.columnDoc(i), "B");
24  break;
26  m_uint8Branches.emplace_back(var, tab.columnDoc(i), "b");
27  break;
29  m_uint8Branches.emplace_back(var, tab.columnDoc(i), "O");
30  break;
32  m_uint32Branches.emplace_back(var, tab.columnDoc(i), "i");
33  break;
35  m_doubleBranches.emplace_back(var, tab.columnDoc(i), "D");
36  break;
37  default:
38  throw cms::Exception("LogicError", "Unsupported type");
39  }
40  }
41 }
std::vector< NamedBranchPtr > m_uint32Branches
const std::string & columnName(unsigned int col) const
Definition: FlatTable.h:62
const std::string & name() const
Definition: FlatTable.h:60
std::vector< NamedBranchPtr > m_intBranches
std::vector< NamedBranchPtr > m_int8Branches
std::vector< NamedBranchPtr > m_uint8Branches
ColumnType columnType(unsigned int col) const
Definition: FlatTable.h:65
unsigned int nColumns() const
Definition: FlatTable.h:55
const std::string & columnDoc(unsigned int col) const
Definition: FlatTable.h:69
std::vector< NamedBranchPtr > m_floatBranches
std::vector< NamedBranchPtr > m_doubleBranches

◆ fill()

void TableOutputBranches::fill ( const edm::OccurrenceForOutput iWhatever,
TTree &  tree,
bool  extensions 
)

Fill the current table, if extensions == table.extension(). This parameter is used so that the fill is called first for non-extensions and then for extensions

Definition at line 72 of file TableOutputBranches.cc.

References branch(), defineBranchesFromFirstEvent(), nanoaod::FlatTable::doc(), DontKnowYetIfMainOrExtension, Exception, nanoaod::FlatTable::extension(), edm::OccurrenceForOutput::getByToken(), patZpeak::handle, IsExtension, IsMain, m_branchesBooked, m_counter, m_counterBranch, m_doc, m_doubleBranches, m_extension, m_floatBranches, m_int8Branches, m_intBranches, m_singleton, m_token, m_uint32Branches, m_uint8Branches, nanoaod::FlatTable::name(), nanoaod::FlatTable::singleton(), and nanoaod::FlatTable::size().

72  {
74  if (extensions != m_extension)
75  return; // do nothing, wait to be called with the proper flag
76  }
77 
79  iWhatever.getByToken(m_token, handle);
80  const nanoaod::FlatTable &tab = *handle;
81  m_counter = tab.size();
82  m_singleton = tab.singleton();
83  if (!m_branchesBooked) {
85  if (extensions != m_extension)
86  return; // do nothing, wait to be called with the proper flag
88  m_doc = tab.doc();
89  m_branchesBooked = true;
90  branch(tree);
91  }
92  if (!m_singleton && m_extension == IsExtension) {
93  if (m_counter != *reinterpret_cast<UInt_t *>(m_counterBranch->GetAddress())) {
94  throw cms::Exception("LogicError",
95  "Mismatch in number of entries between extension and main table for " + tab.name());
96  }
97  }
98  for (auto &pair : m_floatBranches)
99  fillColumn<float>(pair, tab);
100  for (auto &pair : m_intBranches)
101  fillColumn<int>(pair, tab);
102  for (auto &pair : m_int8Branches)
103  fillColumn<int8_t>(pair, tab);
104  for (auto &pair : m_uint8Branches)
105  fillColumn<uint8_t>(pair, tab);
106  for (auto &pair : m_uint32Branches)
107  fillColumn<uint32_t>(pair, tab);
108  for (auto &pair : m_doubleBranches)
109  fillColumn<double>(pair, tab);
110 }
std::vector< NamedBranchPtr > m_uint32Branches
void defineBranchesFromFirstEvent(const nanoaod::FlatTable &tab)
bool extension() const
Definition: FlatTable.h:59
BasicHandle getByToken(EDGetToken token, TypeID const &typeID) const
const std::string & name() const
Definition: FlatTable.h:60
enum TableOutputBranches::@872 m_extension
std::vector< NamedBranchPtr > m_intBranches
const std::string & doc() const
Definition: FlatTable.h:68
std::vector< NamedBranchPtr > m_int8Branches
std::vector< NamedBranchPtr > m_uint8Branches
void branch(TTree &tree)
edm::EDGetToken m_token
bool singleton() const
Definition: FlatTable.h:58
Definition: tree.py:1
std::vector< NamedBranchPtr > m_floatBranches
unsigned int size() const
Definition: FlatTable.h:57
std::vector< NamedBranchPtr > m_doubleBranches

◆ fillColumn()

template<typename T >
void TableOutputBranches::fillColumn ( NamedBranchPtr pair,
const nanoaod::FlatTable tab 
)
inlineprivate

Definition at line 53 of file TableOutputBranches.h.

References TableOutputBranches::NamedBranchPtr::branch, nanoaod::FlatTable::columnData(), nanoaod::FlatTable::columnIndex(), Exception, heavyIonCSV_trainingSettings::idx, m_baseName, TableOutputBranches::NamedBranchPtr::name, and nanoaod::FlatTable::size().

53  {
54  int idx = tab.columnIndex(pair.name);
55  if (idx == -1)
56  throw cms::Exception("LogicError", "Missing column in input for " + m_baseName + "_" + pair.name);
57  pair.branch->SetAddress(
58  tab.size() == 0 ? static_cast<T *>(nullptr)
59  : const_cast<T *>(&tab.columnData<T>(idx).front())); // SetAddress should take a const * !
60  }
int columnIndex(const std::string &name) const
Definition: FlatTable.cc:3
auto columnData(unsigned int column) const
get a column by index (const)
Definition: FlatTable.h:73
long double T
unsigned int size() const
Definition: FlatTable.h:57

Member Data Documentation

◆ m_baseName

std::string TableOutputBranches::m_baseName
private

Definition at line 29 of file TableOutputBranches.h.

Referenced by branch(), defineBranchesFromFirstEvent(), and fillColumn().

◆ m_branchesBooked

bool TableOutputBranches::m_branchesBooked
private

Definition at line 50 of file TableOutputBranches.h.

Referenced by fill().

◆ m_counter

UInt_t TableOutputBranches::m_counter
private

Definition at line 33 of file TableOutputBranches.h.

Referenced by branch(), and fill().

◆ m_counterBranch

TBranch* TableOutputBranches::m_counterBranch = nullptr
private

Definition at line 43 of file TableOutputBranches.h.

Referenced by branch(), and fill().

◆ m_doc

std::string TableOutputBranches::m_doc
private

Definition at line 32 of file TableOutputBranches.h.

Referenced by branch(), and fill().

◆ m_doubleBranches

std::vector<NamedBranchPtr> TableOutputBranches::m_doubleBranches
private

Definition at line 49 of file TableOutputBranches.h.

Referenced by branch(), defineBranchesFromFirstEvent(), and fill().

◆ m_extension

enum { ... } TableOutputBranches::m_extension

Referenced by branch(), and fill().

◆ m_floatBranches

std::vector<NamedBranchPtr> TableOutputBranches::m_floatBranches
private

Definition at line 44 of file TableOutputBranches.h.

Referenced by branch(), defineBranchesFromFirstEvent(), and fill().

◆ m_int8Branches

std::vector<NamedBranchPtr> TableOutputBranches::m_int8Branches
private

Definition at line 46 of file TableOutputBranches.h.

Referenced by branch(), defineBranchesFromFirstEvent(), and fill().

◆ m_intBranches

std::vector<NamedBranchPtr> TableOutputBranches::m_intBranches
private

Definition at line 45 of file TableOutputBranches.h.

Referenced by branch(), defineBranchesFromFirstEvent(), and fill().

◆ m_singleton

bool TableOutputBranches::m_singleton = false
private

Definition at line 30 of file TableOutputBranches.h.

Referenced by branch(), and fill().

◆ m_token

edm::EDGetToken TableOutputBranches::m_token
private

Definition at line 28 of file TableOutputBranches.h.

Referenced by fill().

◆ m_uint32Branches

std::vector<NamedBranchPtr> TableOutputBranches::m_uint32Branches
private

Definition at line 48 of file TableOutputBranches.h.

Referenced by branch(), defineBranchesFromFirstEvent(), and fill().

◆ m_uint8Branches

std::vector<NamedBranchPtr> TableOutputBranches::m_uint8Branches
private

Definition at line 47 of file TableOutputBranches.h.

Referenced by branch(), defineBranchesFromFirstEvent(), and fill().