CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 
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);
30 
32 
33  RootOutputTree(RootOutputTree const&) = delete; // Disallow copying and moving
34  RootOutputTree& operator=(RootOutputTree const&) = delete; // Disallow copying and moving
35 
36  template <typename T>
37  void
38  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
48  addAuxiliary(std::string const& branchName, T*& pAux, int bufSize,bool allowCloning=true) {
49  if(allowCloning) {
50  auxBranches_.push_back(tree_->Branch(branchName.c_str(), &pAux, bufSize, 0));
51  } else {
52  unclonedAuxBranches_.push_back(tree_->Branch(branchName.c_str(), &pAux, bufSize, 0));
53  }
54  }
55 
56  void fastCloneTTree(TTree* in, std::string const& option);
57 
58  static TTree* makeTTree(TFile* filePtr, std::string const& name, int splitLevel);
59 
60  static TTree* assignTTree(TFile* file, TTree* tree);
61 
62  static void writeTTree(TTree* tree);
63 
64  bool isValid() const;
65 
66  void addBranch(std::string const& branchName,
67  std::string const& className,
68  void const*& pProd,
69  int splitLevel,
70  int basketSize,
71  bool produced);
72 
73  bool checkSplitLevelsAndBasketSizes(TTree* inputTree) const;
74 
75  bool checkIfFastClonable(TTree* inputTree) const;
76 
77  bool checkEntriesInReadBranches(Long64_t expectedNumberOfEntries) const;
78 
79  void maybeFastCloneTree(bool canFastClone, bool canFastCloneAux, TTree* tree, std::string const& option);
80 
81  void fillTree() const;
82 
83  void writeTree() const;
84 
85  TTree* tree() const {
86  return tree_;
87  }
88 
89  void setEntries() {
90  if(tree_->GetNbranches() != 0) tree_->SetEntries(-1);
91  }
92 
93  bool
94  uncloned(std::string const& branchName) const {
95  return clonedReadBranchNames_.find(branchName) == clonedReadBranchNames_.end();
96  }
97 
98  void close();
99 
100  void optimizeBaskets(ULong64_t size) {
101  tree_->OptimizeBaskets(size);
102  }
103 
104  void setAutoFlush(Long64_t size) {
105  tree_->SetAutoFlush(size);
106  }
107  private:
108  static void fillTTree(std::vector<TBranch*> const& branches);
109 // We use bare pointers for pointers to some ROOT entities.
110 // Root owns them and uses bare pointers internally.
111 // Therefore, using smart pointers here will do no good.
112  std::shared_ptr<TFile> filePtr_;
113  TTree* tree_;
114  std::vector<TBranch*> producedBranches_; // does not include cloned branches
115  std::vector<TBranch*> readBranches_;
116  std::vector<TBranch*> auxBranches_;
117  std::vector<TBranch*> unclonedAuxBranches_;
118  std::vector<TBranch*> unclonedReadBranches_;
119  std::set<std::string> clonedReadBranchNames_;
122  };
123 }
124 #endif
std::set< std::string > clonedReadBranchNames_
void writeTree() const
void fillTree() const
static void fillTTree(std::vector< TBranch * > const &branches)
bool checkSplitLevelsAndBasketSizes(TTree *inputTree) const
std::shared_ptr< TFile > filePtr_
void addAuxiliary(std::string const &branchName, T *&pAux, int bufSize, bool allowCloning=true)
void setAutoFlush(Long64_t size)
std::vector< TBranch * > unclonedAuxBranches_
static int const bufSize
Definition: Guid.cc:24
bool checkIfFastClonable(TTree *inputTree) const
BranchType
Definition: BranchType.h:11
std::vector< TBranch * > producedBranches_
std::vector< TBranch * > auxBranches_
RootOutputTree(std::shared_ptr< TFile > filePtr, BranchType const &branchType, int splitLevel, int treeMaxVirtualSize)
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)
RootOutputTree & operator=(RootOutputTree const &)=delete
std::vector< TBranch * > unclonedReadBranches_
bool uncloned(std::string const &branchName) const
bool checkEntriesInReadBranches(Long64_t expectedNumberOfEntries) const
static TTree * makeTTree(TFile *filePtr, std::string const &name, int splitLevel)
eventsetup::produce::Produce produced
Definition: ESProducts.cc:20
bool isValid() const
void addAuxiliary(std::string const &branchName, T const *&pAux, int bufSize, bool allowCloning=true)
static void writeTTree(TTree *tree)
std::vector< TBranch * > readBranches_
TTree * tree() const
void maybeFastCloneTree(bool canFastClone, bool canFastCloneAux, TTree *tree, std::string const &option)
long double T
void optimizeBaskets(ULong64_t size)
tuple size
Write out results.
std::string className(const T &t)
Definition: ClassName.h:30
void fastCloneTTree(TTree *in, std::string const &option)