CMS 3D CMS Logo

RootOutputTree.h
Go to the documentation of this file.
1 #ifndef IOPool_Output_RootOutputTree_h
2 #define IOPool_Output_RootOutputTree_h
3 
4 /*----------------------------------------------------------------------
5 
6 RootOutputTree.h // used by ROOT output modules
7 
8 ----------------------------------------------------------------------*/
9 
10 #include <string>
11 #include <vector>
12 #include <set>
13 #include <memory>
14 
17 
18 #include "TTree.h"
19 
20 class TFile;
21 class TBranch;
22 
23 namespace edm {
25  public:
26  RootOutputTree(std::shared_ptr<TFile> filePtr,
27  BranchType const& branchType,
28  int splitLevel,
29  int treeMaxVirtualSize,
31 
33 
34  RootOutputTree(RootOutputTree const&) = delete; // Disallow copying and moving
35  RootOutputTree& operator=(RootOutputTree const&) = delete; // Disallow copying and moving
36 
37  template <typename T>
38  void addAuxiliary(std::string const& branchName, T const*& pAux, int bufSize, bool allowCloning = true) {
39  if (allowCloning) {
40  auxBranches_.push_back(tree_->Branch(branchName.c_str(), &pAux, bufSize, 0));
41  } else {
42  unclonedAuxBranches_.push_back(tree_->Branch(branchName.c_str(), &pAux, bufSize, 0));
43  }
44  }
45 
46  template <typename T>
47  void addAuxiliary(std::string const& branchName, T*& pAux, int bufSize, bool allowCloning = true) {
48  if (allowCloning) {
49  auxBranches_.push_back(tree_->Branch(branchName.c_str(), &pAux, bufSize, 0));
50  } else {
51  unclonedAuxBranches_.push_back(tree_->Branch(branchName.c_str(), &pAux, bufSize, 0));
52  }
53  }
54 
55  void fastCloneTTree(TTree* in, std::string const& option);
56 
57  static TTree* makeTTree(TFile* filePtr, std::string const& name, int splitLevel);
58 
59  static TTree* assignTTree(TFile* file, TTree* tree);
60 
61  static void writeTTree(TTree* tree);
62 
63  bool isValid() const;
64 
65  void addBranch(std::string const& branchName,
66  std::string const& className,
67  void const*& pProd,
68  int splitLevel,
69  int basketSize,
70  bool produced);
71 
72  bool checkSplitLevelsAndBasketSizes(TTree* inputTree) const;
73 
74  bool checkIfFastClonable(TTree* inputTree) const;
75 
76  void setSubBranchBasketSizes(TTree* inputTree) const;
77 
78  bool checkEntriesInReadBranches(Long64_t expectedNumberOfEntries) const;
79 
80  void maybeFastCloneTree(bool canFastClone, bool canFastCloneAux, TTree* tree, std::string const& option);
81 
82  void fillTree();
83 
84  void writeTree();
85 
86  TTree const* tree() const { return tree_.get(); }
87 
88  TTree* tree() { return tree_.get(); }
89 
90  void setEntries() {
91  if (tree_->GetNbranches() != 0)
92  tree_->SetEntries(-1);
93  }
94 
95  bool uncloned(std::string const& branchName) const {
97  }
98 
99  void close();
100 
101  void optimizeBaskets(ULong64_t size) { tree_->OptimizeBaskets(size); }
102 
103  void setAutoFlush(Long64_t size) { tree_->SetAutoFlush(size); }
104 
105  private:
106  static void fillTTree(std::vector<TBranch*> const& branches);
107  // We use bare pointers for pointers to some ROOT entities.
108  // Root owns them and uses bare pointers internally.
109  // Therefore, using smart pointers here will do no good.
112 
113  std::vector<TBranch*> producedBranches_; // does not include cloned branches
114  std::vector<TBranch*> readBranches_;
115  std::vector<TBranch*> auxBranches_;
116  std::vector<TBranch*> unclonedAuxBranches_;
117  std::vector<TBranch*> unclonedReadBranches_;
118 
119  std::set<std::string> clonedReadBranchNames_;
122  };
123 } // namespace edm
124 #endif
std::set< std::string > clonedReadBranchNames_
edm::propagate_const< TTree * > tree_
bool checkEntriesInReadBranches(Long64_t expectedNumberOfEntries) const
void setSubBranchBasketSizes(TTree *inputTree) const
bool uncloned(std::string const &branchName) const
void addAuxiliary(std::string const &branchName, T *&pAux, int bufSize, bool allowCloning=true)
void setAutoFlush(Long64_t size)
std::vector< TBranch * > unclonedAuxBranches_
edm::propagate_const< std::shared_ptr< TFile > > filePtr_
BranchType
Definition: BranchType.h:11
static void fillTTree(std::vector< TBranch *> const &branches)
std::vector< TBranch * > producedBranches_
std::vector< TBranch * > auxBranches_
RootOutputTree(std::shared_ptr< TFile > filePtr, BranchType const &branchType, int splitLevel, int treeMaxVirtualSize, std::string const &processName=std::string())
constexpr element_type const * get() const
bool checkSplitLevelsAndBasketSizes(TTree *inputTree) const
static TTree * assignTTree(TFile *file, TTree *tree)
void addBranch(std::string const &branchName, std::string const &className, void const *&pProd, int splitLevel, int basketSize, bool produced)
bool isValid() const
RootOutputTree & operator=(RootOutputTree const &)=delete
std::vector< TBranch * > unclonedReadBranches_
static TTree * makeTTree(TFile *filePtr, std::string const &name, int splitLevel)
void addAuxiliary(std::string const &branchName, T const *&pAux, int bufSize, bool allowCloning=true)
static void writeTTree(TTree *tree)
TTree const * tree() const
std::vector< TBranch * > readBranches_
HLT enums.
Definition: tree.py:1
void maybeFastCloneTree(bool canFastClone, bool canFastCloneAux, TTree *tree, std::string const &option)
long double T
void optimizeBaskets(ULong64_t size)
bool checkIfFastClonable(TTree *inputTree) const
std::string className(const T &t)
Definition: ClassName.h:31
void fastCloneTTree(TTree *in, std::string const &option)