CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Static Private Member Functions | Private Attributes
edm::RootOutputTree Class Reference

#include <RootOutputTree.h>

Public Member Functions

template<typename T >
void addAuxiliary (std::string const &branchName, T *&pAux, int bufSize, bool allowCloning=true)
 
template<typename T >
void addAuxiliary (std::string const &branchName, T const *&pAux, int bufSize, bool allowCloning=true)
 
void addBranch (std::string const &branchName, std::string const &className, void const *&pProd, int splitLevel, int basketSize, bool produced)
 
bool checkEntriesInReadBranches (Long64_t expectedNumberOfEntries) const
 
bool checkIfFastClonable (TTree *inputTree) const
 
bool checkSplitLevelsAndBasketSizes (TTree *inputTree) const
 
void close ()
 
void fastCloneTTree (TTree *in, std::string const &option)
 
void fillTree ()
 
bool isValid () const
 
void maybeFastCloneTree (bool canFastClone, bool canFastCloneAux, TTree *tree, std::string const &option)
 
RootOutputTreeoperator= (RootOutputTree const &)=delete
 
void optimizeBaskets (ULong64_t size)
 
 RootOutputTree (RootOutputTree const &)=delete
 
 RootOutputTree (std::shared_ptr< TFile > filePtr, BranchType const &branchType, int splitLevel, int treeMaxVirtualSize, std::string const &processName=std::string())
 
void setAutoFlush (Long64_t size)
 
void setEntries ()
 
TTree * tree ()
 
TTree const * tree () const
 
bool uncloned (std::string const &branchName) const
 
void writeTree ()
 
 ~RootOutputTree ()
 

Static Public Member Functions

static TTree * assignTTree (TFile *file, TTree *tree)
 
static TTree * makeTTree (TFile *filePtr, std::string const &name, int splitLevel)
 
static void writeTTree (TTree *tree)
 

Static Private Member Functions

static void fillTTree (std::vector< TBranch * > const &branches)
 

Private Attributes

std::vector< TBranch * > auxBranches_
 
std::set< std::string > clonedReadBranchNames_
 
bool currentlyFastCloning_
 
bool fastCloneAuxBranches_
 
edm::propagate_const< std::shared_ptr< TFile > > filePtr_
 
std::vector< TBranch * > producedBranches_
 
std::vector< TBranch * > readBranches_
 
edm::propagate_const< TTree * > tree_
 
std::vector< TBranch * > unclonedAuxBranches_
 
std::vector< TBranch * > unclonedReadBranches_
 

Detailed Description

Definition at line 24 of file RootOutputTree.h.

Constructor & Destructor Documentation

◆ RootOutputTree() [1/2]

edm::RootOutputTree::RootOutputTree ( std::shared_ptr< TFile >  filePtr,
BranchType const &  branchType,
int  splitLevel,
int  treeMaxVirtualSize,
std::string const &  processName = std::string() 
)

Definition at line 96 of file RootOutputTree.cc.

101  : filePtr_(filePtr),
102  tree_(processName.empty()
103  ? makeTTree(filePtr.get(), BranchTypeToProductTreeName(branchType), splitLevel)
104  : makeTTree(filePtr.get(), BranchTypeToProductTreeName(branchType, processName), splitLevel)),
106  readBranches_(),
107  auxBranches_(),
111  fastCloneAuxBranches_(false) {
112  if (treeMaxVirtualSize >= 0)
113  tree_->SetMaxVirtualSize(treeMaxVirtualSize);
114  }

References tree_.

◆ ~RootOutputTree()

edm::RootOutputTree::~RootOutputTree ( )
inline

Definition at line 32 of file RootOutputTree.h.

32 {}

◆ RootOutputTree() [2/2]

edm::RootOutputTree::RootOutputTree ( RootOutputTree const &  )
delete

Member Function Documentation

◆ addAuxiliary() [1/2]

template<typename T >
void edm::RootOutputTree::addAuxiliary ( std::string const &  branchName,
T *&  pAux,
int  bufSize,
bool  allowCloning = true 
)
inline

Definition at line 47 of file RootOutputTree.h.

47  {
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  }

References auxBranches_, electrons_cff::branchName, tree_, and unclonedAuxBranches_.

◆ addAuxiliary() [2/2]

template<typename T >
void edm::RootOutputTree::addAuxiliary ( std::string const &  branchName,
T const *&  pAux,
int  bufSize,
bool  allowCloning = true 
)
inline

Definition at line 38 of file RootOutputTree.h.

38  {
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  }

References auxBranches_, electrons_cff::branchName, tree_, and unclonedAuxBranches_.

Referenced by edm::RootOutputFile::RootOutputFile().

◆ addBranch()

void edm::RootOutputTree::addBranch ( std::string const &  branchName,
std::string const &  className,
void const *&  pProd,
int  splitLevel,
int  basketSize,
bool  produced 
)

Definition at line 331 of file RootOutputTree.cc.

336  {
339  TBranch* branch = tree_->Branch(branchName.c_str(), className.c_str(), &pProd, basketSize, splitLevel);
340  assert(branch != nullptr);
341  /*
342  if(pProd != nullptr) {
343  // Delete the product that ROOT has allocated.
344  WrapperBase const* edp = static_cast<WrapperBase const *>(pProd);
345  delete edp;
346  pProd = nullptr;
347  }
348 */
349  if (produced) {
350  producedBranches_.push_back(branch);
351  } else {
352  readBranches_.push_back(branch);
353  }
354  }

References cms::cuda::assert(), MicroEventContent_cff::branch, electrons_cff::branchName, className(), edm::BranchDescription::invalidBasketSize, edm::BranchDescription::invalidSplitLevel, producedBranches_, readBranches_, filterRecHits_cfg::splitLevel, and tree_.

Referenced by edm::RootOutputFile::RootOutputFile().

◆ assignTTree()

TTree * edm::RootOutputTree::assignTTree ( TFile *  file,
TTree *  tree 
)
static

Definition at line 116 of file RootOutputTree.cc.

116  {
117  tree->SetDirectory(filePtr);
118  // Turn off autosaving because it is such a memory hog and we are not using
119  // this check-pointing feature anyway.
121  return tree;
122  }

References SiStripPI::max, and tree().

Referenced by makeTTree().

◆ checkEntriesInReadBranches()

bool edm::RootOutputTree::checkEntriesInReadBranches ( Long64_t  expectedNumberOfEntries) const

Definition at line 205 of file RootOutputTree.cc.

205  {
206  for (auto const& readBranch : readBranches_) {
207  if (readBranch->GetEntries() != expectedNumberOfEntries) {
208  return false;
209  }
210  }
211  return true;
212  }

References readBranches_.

Referenced by edm::RootOutputFile::writeIndexIntoFile().

◆ checkIfFastClonable()

bool edm::RootOutputTree::checkIfFastClonable ( TTree *  inputTree) const

Definition at line 183 of file RootOutputTree.cc.

183  {
184  if (inputTree == nullptr)
185  return false;
186 
187  // Do the sub-branches match in the input and output. Extra sub-branches in the input are OK for fast cloning, but not in the output.
188  for (auto const& outputBr : readBranches_) {
189  TBranchElement* outputBranch = dynamic_cast<TBranchElement*>(outputBr);
190  if (outputBranch != nullptr) {
191  TBranchElement* inputBranch = dynamic_cast<TBranchElement*>(inputTree->GetBranch(outputBranch->GetName()));
192  if (inputBranch != nullptr) {
193  // We have a matching top level branch. Do the recursive check on subbranches.
194  if (!checkMatchingBranches(inputBranch, outputBranch)) {
195  LogInfo("FastCloning") << "Fast Cloning disabled because a data member has been added to split branch: "
196  << inputBranch->GetName() << "\n.";
197  return false;
198  }
199  }
200  }
201  }
202  return true;
203  }

References readBranches_.

Referenced by edm::RootOutputFile::beginInputFile().

◆ checkSplitLevelsAndBasketSizes()

bool edm::RootOutputTree::checkSplitLevelsAndBasketSizes ( TTree *  inputTree) const

Definition at line 135 of file RootOutputTree.cc.

135  {
136  assert(inputTree != nullptr);
137 
138  // Do the split level and basket size match in the input and output?
139  for (auto const& outputBranch : readBranches_) {
140  if (outputBranch != nullptr) {
141  TBranch* inputBranch = inputTree->GetBranch(outputBranch->GetName());
142 
143  if (inputBranch != nullptr) {
144  if (inputBranch->GetSplitLevel() != outputBranch->GetSplitLevel() ||
145  inputBranch->GetBasketSize() != outputBranch->GetBasketSize()) {
146  return false;
147  }
148  }
149  }
150  }
151  return true;
152  }

References cms::cuda::assert(), and readBranches_.

Referenced by edm::RootOutputFile::beginInputFile().

◆ close()

void edm::RootOutputTree::close ( void  )

Definition at line 356 of file RootOutputTree.cc.

356  {
357  // The TFile was just closed.
358  // Just to play it safe, zero all pointers to quantities in the file.
359  auxBranches_.clear();
360  unclonedAuxBranches_.clear();
361  producedBranches_.clear();
362  readBranches_.clear();
363  unclonedReadBranches_.clear();
364  tree_ = nullptr; // propagate_const<T> has no reset() function
365  filePtr_ = nullptr; // propagate_const<T> has no reset() function
366  }

References auxBranches_, filePtr_, producedBranches_, readBranches_, tree_, unclonedAuxBranches_, and unclonedReadBranches_.

Referenced by esMonitoring.AsyncLineReaderMixin::handle_close(), and esMonitoring.FDJsonServer::handle_close().

◆ fastCloneTTree()

void edm::RootOutputTree::fastCloneTTree ( TTree *  in,
std::string const &  option 
)

Definition at line 214 of file RootOutputTree.cc.

214  {
215  if (in->GetEntries() != 0) {
216  TObjArray* branches = tree_->GetListOfBranches();
217  // If any products were produced (not just event products), the EventAuxiliary will be modified.
218  // In that case, don't fast copy auxiliary branches. Remove them, and add back after fast copying.
219  std::map<Int_t, TBranch*> auxIndexes;
220  bool mustRemoveSomeAuxs = false;
221  if (!fastCloneAuxBranches_) {
222  for (auto const& auxBranch : auxBranches_) {
223  int auxIndex = branches->IndexOf(auxBranch);
224  assert(auxIndex >= 0);
225  auxIndexes.insert(std::make_pair(auxIndex, auxBranch));
226  branches->RemoveAt(auxIndex);
227  }
228  mustRemoveSomeAuxs = true;
229  }
230 
231  //Deal with any aux branches which can never be cloned
232  for (auto const& auxBranch : unclonedAuxBranches_) {
233  int auxIndex = branches->IndexOf(auxBranch);
234  assert(auxIndex >= 0);
235  auxIndexes.insert(std::make_pair(auxIndex, auxBranch));
236  branches->RemoveAt(auxIndex);
237  mustRemoveSomeAuxs = true;
238  }
239 
240  if (mustRemoveSomeAuxs) {
241  branches->Compress();
242  }
243 
244  DuplicateTreeSentry dupTree(in);
245  TTreeCloner cloner(
246  dupTree.tree(), tree_, option.c_str(), TTreeCloner::kNoWarnings | TTreeCloner::kIgnoreMissingTopLevel);
247 
248  if (!cloner.IsValid()) {
249  // Let's check why
250  static const char* okerror = "One of the export branch";
251  if (strncmp(cloner.GetWarning(), okerror, strlen(okerror)) == 0) {
252  // That's fine we will handle it;
253  } else {
254  throw edm::Exception(errors::FatalRootError) << "invalid TTreeCloner (" << cloner.GetWarning() << ")\n";
255  }
256  }
257  tree_->SetEntries(tree_->GetEntries() + in->GetEntries());
258  Service<RootHandlers> rootHandler;
259  rootHandler->ignoreWarningsWhileDoing([&cloner] { cloner.Exec(); });
260 
261  if (mustRemoveSomeAuxs) {
262  for (auto const& auxIndex : auxIndexes) {
263  // Add the auxiliary branches back after fast copying the rest of the tree.
264  Int_t last = branches->GetLast();
265  if (last >= 0) {
266  branches->AddAtAndExpand(branches->At(last), last + 1);
267  for (Int_t ind = last - 1; ind >= auxIndex.first; --ind) {
268  branches->AddAt(branches->At(ind), ind + 1);
269  };
270  branches->AddAt(auxIndex.second, auxIndex.first);
271  } else {
272  branches->Add(auxIndex.second);
273  }
274  }
275  }
276  }
277  }

References cms::cuda::assert(), auxBranches_, Exception, fastCloneAuxBranches_, edm::errors::FatalRootError, recoMuon::in, dqmdumpme::last, fileinputsource_cfi::option, edm::DuplicateTreeSentry::tree(), tree_, and unclonedAuxBranches_.

Referenced by maybeFastCloneTree().

◆ fillTree()

void edm::RootOutputTree::fillTree ( )

Definition at line 317 of file RootOutputTree.cc.

317  {
318  if (currentlyFastCloning_) {
324  } else {
325  // Isolate the fill operation so that IMT doesn't grab other large tasks
326  // that could lead to PoolOutputModule stalling
327  tbb::this_task_arena::isolate([&] { tree_->Fill(); });
328  }
329  }

References auxBranches_, currentlyFastCloning_, fastCloneAuxBranches_, fillTTree(), producedBranches_, tree_, unclonedAuxBranches_, and unclonedReadBranches_.

Referenced by core.AutoFillTreeProducer.AutoFillTreeProducer::process().

◆ fillTTree()

void edm::RootOutputTree::fillTTree ( std::vector< TBranch * > const &  branches)
staticprivate

Definition at line 289 of file RootOutputTree.cc.

289  {
290  for_all(branches, std::bind(&TBranch::Fill, std::placeholders::_1));
291  }

References HcalObjRepresent::Fill(), and edm::for_all().

Referenced by fillTree().

◆ isValid()

bool edm::RootOutputTree::isValid ( ) const

◆ makeTTree()

TTree * edm::RootOutputTree::makeTTree ( TFile *  filePtr,
std::string const &  name,
int  splitLevel 
)
static

Definition at line 124 of file RootOutputTree.cc.

124  {
125  TTree* tree = new TTree(name.c_str(), "", splitLevel);
126  if (!tree)
127  throw edm::Exception(errors::FatalRootError) << "Failed to create the tree: " << name << "\n";
128  if (tree->IsZombie())
129  throw edm::Exception(errors::FatalRootError) << "Tree: " << name << " is a zombie."
130  << "\n";
131 
132  return assignTTree(filePtr, tree);
133  }

References assignTTree(), Exception, edm::errors::FatalRootError, Skims_PA_cff::name, and filterRecHits_cfg::splitLevel.

Referenced by edm::RootOutputFile::RootOutputFile().

◆ maybeFastCloneTree()

void edm::RootOutputTree::maybeFastCloneTree ( bool  canFastClone,
bool  canFastCloneAux,
TTree *  tree,
std::string const &  option 
)

Definition at line 295 of file RootOutputTree.cc.

298  {
299  unclonedReadBranches_.clear();
300  clonedReadBranchNames_.clear();
301  currentlyFastCloning_ = canFastClone && !readBranches_.empty();
302  if (currentlyFastCloning_) {
303  fastCloneAuxBranches_ = canFastCloneAux;
305  for (auto const& branch : readBranches_) {
306  if (branch->GetEntries() == tree_->GetEntries()) {
307  clonedReadBranchNames_.insert(std::string(branch->GetName()));
308  } else {
309  unclonedReadBranches_.push_back(branch);
310  }
311  }
312  Service<JobReport> reportSvc;
313  reportSvc->reportFastClonedBranches(clonedReadBranchNames_, tree_->GetEntries());
314  }
315  }

References MicroEventContent_cff::branch, clonedReadBranchNames_, currentlyFastCloning_, fastCloneAuxBranches_, fastCloneTTree(), fileinputsource_cfi::option, readBranches_, AlCaHLTBitMon_QueryRunRegistry::string, tree_, and unclonedReadBranches_.

Referenced by edm::RootOutputFile::beginInputFile().

◆ operator=()

RootOutputTree& edm::RootOutputTree::operator= ( RootOutputTree const &  )
delete

◆ optimizeBaskets()

void edm::RootOutputTree::optimizeBaskets ( ULong64_t  size)
inline

Definition at line 99 of file RootOutputTree.h.

99 { tree_->OptimizeBaskets(size); }

References findQualityFiles::size, and tree_.

Referenced by edm::RootOutputFile::writeLuminosityBlock(), and edm::RootOutputFile::writeRun().

◆ setAutoFlush()

void edm::RootOutputTree::setAutoFlush ( Long64_t  size)
inline

Definition at line 101 of file RootOutputTree.h.

101 { tree_->SetAutoFlush(size); }

References findQualityFiles::size, and tree_.

Referenced by edm::RootOutputFile::RootOutputFile().

◆ setEntries()

void edm::RootOutputTree::setEntries ( )
inline

Definition at line 88 of file RootOutputTree.h.

88  {
89  if (tree_->GetNbranches() != 0)
90  tree_->SetEntries(-1);
91  }

References tree_.

Referenced by edm::RootOutputFile::respondToCloseInputFile(), and edm::RootOutputFile::writeEventAuxiliary().

◆ tree() [1/2]

TTree* edm::RootOutputTree::tree ( )
inline

◆ tree() [2/2]

TTree const* edm::RootOutputTree::tree ( ) const
inline

◆ uncloned()

bool edm::RootOutputTree::uncloned ( std::string const &  branchName) const
inline

Definition at line 93 of file RootOutputTree.h.

93  {
95  }

References electrons_cff::branchName, and clonedReadBranchNames_.

◆ writeTree()

void edm::RootOutputTree::writeTree ( )

Definition at line 293 of file RootOutputTree.cc.

293 { writeTTree(tree()); }

References tree(), and writeTTree().

◆ writeTTree()

void edm::RootOutputTree::writeTTree ( TTree *  tree)
static

Definition at line 279 of file RootOutputTree.cc.

279  {
280  if (tree->GetNbranches() != 0) {
281  // This is required when Fill is called on individual branches
282  // in the TTree instead of calling Fill once for the entire TTree.
283  tree->SetEntries(-1);
284  }
285  setRefCoreStreamer(true);
286  tree->AutoSave("FlushBaskets");
287  }

References edm::setRefCoreStreamer().

Referenced by edm::RootOutputFile::finishEndFile(), and writeTree().

Member Data Documentation

◆ auxBranches_

std::vector<TBranch*> edm::RootOutputTree::auxBranches_
private

Definition at line 113 of file RootOutputTree.h.

Referenced by addAuxiliary(), close(), fastCloneTTree(), and fillTree().

◆ clonedReadBranchNames_

std::set<std::string> edm::RootOutputTree::clonedReadBranchNames_
private

Definition at line 117 of file RootOutputTree.h.

Referenced by maybeFastCloneTree(), and uncloned().

◆ currentlyFastCloning_

bool edm::RootOutputTree::currentlyFastCloning_
private

Definition at line 118 of file RootOutputTree.h.

Referenced by fillTree(), and maybeFastCloneTree().

◆ fastCloneAuxBranches_

bool edm::RootOutputTree::fastCloneAuxBranches_
private

Definition at line 119 of file RootOutputTree.h.

Referenced by fastCloneTTree(), fillTree(), and maybeFastCloneTree().

◆ filePtr_

edm::propagate_const<std::shared_ptr<TFile> > edm::RootOutputTree::filePtr_
private

Definition at line 108 of file RootOutputTree.h.

Referenced by close().

◆ producedBranches_

std::vector<TBranch*> edm::RootOutputTree::producedBranches_
private

Definition at line 111 of file RootOutputTree.h.

Referenced by addBranch(), close(), and fillTree().

◆ readBranches_

std::vector<TBranch*> edm::RootOutputTree::readBranches_
private

◆ tree_

edm::propagate_const<TTree*> edm::RootOutputTree::tree_
private

◆ unclonedAuxBranches_

std::vector<TBranch*> edm::RootOutputTree::unclonedAuxBranches_
private

Definition at line 114 of file RootOutputTree.h.

Referenced by addAuxiliary(), close(), fastCloneTTree(), and fillTree().

◆ unclonedReadBranches_

std::vector<TBranch*> edm::RootOutputTree::unclonedReadBranches_
private

Definition at line 115 of file RootOutputTree.h.

Referenced by close(), fillTree(), and maybeFastCloneTree().

edm::RootOutputTree::fastCloneAuxBranches_
bool fastCloneAuxBranches_
Definition: RootOutputTree.h:119
edm::RootOutputTree::unclonedReadBranches_
std::vector< TBranch * > unclonedReadBranches_
Definition: RootOutputTree.h:115
edm::RootOutputTree::producedBranches_
std::vector< TBranch * > producedBranches_
Definition: RootOutputTree.h:111
edm::RootOutputTree::fillTTree
static void fillTTree(std::vector< TBranch * > const &branches)
Definition: RootOutputTree.cc:289
filterRecHits_cfg.splitLevel
splitLevel
Definition: filterRecHits_cfg.py:41
MicroEventContent_cff.branch
branch
Definition: MicroEventContent_cff.py:174
electrons_cff.branchName
branchName
Definition: electrons_cff.py:520
tree
Definition: tree.py:1
cms::cuda::assert
assert(be >=bs)
edm::propagate_const::get
constexpr element_type const * get() const
Definition: propagate_const.h:64
edm::BranchTypeToProductTreeName
std::string const & BranchTypeToProductTreeName(BranchType const &branchType)
Definition: BranchType.cc:95
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
edm::RootOutputTree::writeTTree
static void writeTTree(TTree *tree)
Definition: RootOutputTree.cc:279
fileinputsource_cfi.option
option
Definition: fileinputsource_cfi.py:94
edm::Exception
Definition: EDMException.h:77
edm::for_all
Func for_all(ForwardSequence &s, Func f)
wrapper for std::for_each
Definition: Algorithms.h:14
edm::RootOutputTree::assignTTree
static TTree * assignTTree(TFile *file, TTree *tree)
Definition: RootOutputTree.cc:116
edm::RootOutputTree::tree_
edm::propagate_const< TTree * > tree_
Definition: RootOutputTree.h:109
dqmdumpme.last
last
Definition: dqmdumpme.py:56
edm::RootOutputTree::unclonedAuxBranches_
std::vector< TBranch * > unclonedAuxBranches_
Definition: RootOutputTree.h:114
edm::errors::FatalRootError
Definition: EDMException.h:51
edm::BranchDescription::invalidSplitLevel
static const int invalidSplitLevel
Definition: BranchDescription.h:34
edm::RootOutputTree::readBranches_
std::vector< TBranch * > readBranches_
Definition: RootOutputTree.h:112
Service
edm::RootOutputTree::fastCloneTTree
void fastCloneTTree(TTree *in, std::string const &option)
Definition: RootOutputTree.cc:214
edm::RootOutputTree::clonedReadBranchNames_
std::set< std::string > clonedReadBranchNames_
Definition: RootOutputTree.h:117
edm::RootOutputTree::makeTTree
static TTree * makeTTree(TFile *filePtr, std::string const &name, int splitLevel)
Definition: RootOutputTree.cc:124
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
recoMuon::in
Definition: RecoMuonEnumerators.h:6
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
HcalObjRepresent::Fill
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
Definition: HcalObjRepresent.h:1053
SimL1EmulatorRepack_CalouGT_cff.processName
processName
Definition: SimL1EmulatorRepack_CalouGT_cff.py:17
edm::RootOutputTree::tree
TTree const * tree() const
Definition: RootOutputTree.h:84
edm::RootOutputTree::filePtr_
edm::propagate_const< std::shared_ptr< TFile > > filePtr_
Definition: RootOutputTree.h:108
Exception
Definition: hltDiff.cc:245
edm::BranchDescription::invalidBasketSize
static const int invalidBasketSize
Definition: BranchDescription.h:35
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
edm::setRefCoreStreamer
void setRefCoreStreamer(bool resetAll=false)
Definition: RefCoreStreamer.cc:83
className
std::string className(const T &t)
Definition: ClassName.h:31
edm::RootOutputTree::auxBranches_
std::vector< TBranch * > auxBranches_
Definition: RootOutputTree.h:113
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443
edm::RootOutputTree::currentlyFastCloning_
bool currentlyFastCloning_
Definition: RootOutputTree.h:118