CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
edm::RootOutputFile Class Reference

#include <RootOutputFile.h>

Public Types

typedef
PoolOutputModule::OutputItem 
OutputItem
 
typedef
PoolOutputModule::OutputItemList 
OutputItemList
 
typedef std::array
< RootOutputTree
*, NumBranchTypes
RootOutputTreePtrArray
 

Public Member Functions

void beginInputFile (FileBlock const &fb, int remainingEvents)
 
std::string const & fileName () const
 
void finishEndFile ()
 
void respondToCloseInputFile (FileBlock const &fb)
 
 RootOutputFile (PoolOutputModule *om, std::string const &fileName, std::string const &logicalFileName)
 
bool shouldWeCloseFile () const
 
void writeBranchIDListRegistry ()
 
void writeFileFormatVersion ()
 
void writeFileIdentifier ()
 
void writeIndexIntoFile ()
 
void writeLuminosityBlock (LuminosityBlockPrincipal const &lb, ModuleCallingContext const *)
 
void writeOne (EventPrincipal const &e, ModuleCallingContext const *)
 
void writeParameterSetRegistry ()
 
void writeParentageRegistry ()
 
void writeProcessHistoryRegistry ()
 
void writeProductDependencies ()
 
void writeProductDescriptionRegistry ()
 
void writeRun (RunPrincipal const &r, ModuleCallingContext const *)
 
 ~RootOutputFile ()
 

Private Member Functions

void fillBranches (BranchType const &branchType, Principal const &principal, StoredProductProvenanceVector *productProvenanceVecPtr, ModuleCallingContext const *)
 
void insertAncestors (ProductProvenance const &iGetParents, EventPrincipal const &principal, bool produced, std::set< StoredProductProvenance > &oToFill, ModuleCallingContext const *)
 
bool insertProductProvenance (const ProductProvenance &, std::set< StoredProductProvenance > &oToInsert)
 
void setBranchAliases (TTree *tree, SelectedProducts const &branches) const
 

Private Attributes

std::set< BranchIDbranchesWithStoredHistory_
 
bool canFastCloneAux_
 
bool dataTypeReported_
 
StoredProductProvenanceVector eventEntryInfoVector_
 
IndexIntoFile::EntryNumber_t eventEntryNumber_
 
RootOutputTree eventTree_
 
FileID fid_
 
std::string file_
 
boost::shared_ptr< TFile > filePtr_
 
IndexIntoFile indexIntoFile_
 
std::string logicalFile_
 
LuminosityBlockAuxiliary lumiAux_
 
IndexIntoFile::EntryNumber_t lumiEntryNumber_
 
RootOutputTree lumiTree_
 
TTree * metaDataTree_
 
unsigned long nEventsInLumi_
 
PoolOutputModule const * om_
 
TTree * parameterSetsTree_
 
std::map< ParentageID,
unsigned int > 
parentageIDs_
 
TTree * parentageTree_
 
BranchListIndexes const * pBranchListIndexes_
 
EventAuxiliary const * pEventAux_
 
StoredProductProvenanceVectorpEventEntryInfoVector_
 
EventSelectionIDVector const * pEventSelectionIDs_
 
LuminosityBlockAuxiliary const * pLumiAux_
 
ProcessHistoryRegistry processHistoryRegistry_
 
RunAuxiliary const * pRunAux_
 
JobReport::Token reportToken_
 
RunAuxiliary runAux_
 
IndexIntoFile::EntryNumber_t runEntryNumber_
 
RootOutputTree runTree_
 
RootOutputTreePtrArray treePointers_
 
int whyNotFastClonable_
 

Detailed Description

Definition at line 43 of file RootOutputFile.h.

Member Typedef Documentation

Definition at line 45 of file RootOutputFile.h.

Definition at line 46 of file RootOutputFile.h.

Definition at line 47 of file RootOutputFile.h.

Constructor & Destructor Documentation

edm::RootOutputFile::RootOutputFile ( PoolOutputModule om,
std::string const &  fileName,
std::string const &  logicalFileName 
)
explicit

Definition at line 66 of file RootOutputFile.cc.

References edm::RootOutputTree::addAuxiliary(), edm::RootOutputTree::addBranch(), edm::PoolOutputModule::auxItems(), branchesWithStoredHistory_, edm::poolNames::branchListIndexesBranchName(), edm::BranchDescription::branchName(), revisionDML::branchType(), edm::BranchTypeToAuxiliaryBranchName(), edm::BranchTypeToProductProvenanceBranchName(), edm::PoolOutputModule::catalog(), edm::PoolOutputModule::compressionAlgorithm(), edm::errors::Configuration, edm::createGlobalIdentifier(), cms::Digest::digest(), edm::PoolOutputModule::eventAutoFlushSize(), edm::poolNames::eventSelectionsBranchName(), eventTree_, edm::hlt::Exception, fid_, file_, filePtr_, edm::BranchDescription::fullClassName(), edm::BranchDescription::getInterface(), i, edm::InEvent, edm::InLumi, edm::InRun, logicalFile_, lumiTree_, edm::RootOutputTree::makeTTree(), metaDataTree_, edm::poolNames::metaDataTreeName(), edm::PoolOutputModule::moduleLabel(), edm::BranchDescription::moduleLabel(), edm::moduleName(), edm::NumBranchTypes, om_, parameterSetsTree_, edm::poolNames::parameterSetsTreeName(), parentageTree_, edm::poolNames::parentageTreeName(), pBranchListIndexes_, pEventAux_, pEventEntryInfoVector_, pEventSelectionIDs_, pLumiAux_, edm::BranchDescription::processName(), edm::BranchDescription::productInstanceName(), pRunAux_, reportToken_, runTree_, edm::PoolOutputModule::selectedOutputItemList(), edm::RootOutputTree::setAutoFlush(), edm::sort_all(), AlCaHLTBitMon_QueryRunRegistry::string, cms::MD5Result::toString(), treePointers_, and edm::BranchDescription::wrappedName().

66  :
67  file_(fileName),
68  logicalFile_(logicalFileName),
69  reportToken_(0),
70  om_(om),
72  canFastCloneAux_(false),
73  filePtr_(TFile::Open(file_.c_str(), "recreate", "", om_->compressionLevel())),
74  fid_(),
75  eventEntryNumber_(0LL),
76  lumiEntryNumber_(0LL),
77  runEntryNumber_(0LL),
79  nEventsInLumi_(0),
80  metaDataTree_(nullptr),
81  parameterSetsTree_(nullptr),
82  parentageTree_(nullptr),
83  lumiAux_(),
84  runAux_(),
85  pEventAux_(nullptr),
87  pRunAux_(&runAux_),
90  pBranchListIndexes_(nullptr),
91  pEventSelectionIDs_(nullptr),
95  treePointers_(),
96  dataTypeReported_(false),
98  parentageIDs_(),
100 #if ROOT_VERSION_CODE >= ROOT_VERSION(5,30,0)
101  if (om_->compressionAlgorithm() == std::string("ZLIB")) {
102  filePtr_->SetCompressionAlgorithm(ROOT::kZLIB);
103  } else if (om_->compressionAlgorithm() == std::string("LZMA")) {
104  filePtr_->SetCompressionAlgorithm(ROOT::kLZMA);
105  } else {
106  throw Exception(errors::Configuration) << "PoolOutputModule configured with unknown compression algorithm '" << om_->compressionAlgorithm() << "'\n"
107  << "Allowed compression algorithms are ZLIB and LZMA\n";
108  }
109 #endif
110  if (-1 != om->eventAutoFlushSize()) {
111  eventTree_.setAutoFlush(-1*om->eventAutoFlushSize());
112  }
114  pEventAux_, om_->auxItems()[InEvent].basketSize_);
116  pEventEntryInfoVector_, om_->auxItems()[InEvent].basketSize_);
118  pEventSelectionIDs_, om_->auxItems()[InEvent].basketSize_,false);
120  pBranchListIndexes_, om_->auxItems()[InEvent].basketSize_);
121 
123  pLumiAux_, om_->auxItems()[InLumi].basketSize_);
124 
126  pRunAux_, om_->auxItems()[InRun].basketSize_);
127 
129  treePointers_[InLumi] = &lumiTree_;
130  treePointers_[InRun] = &runTree_;
131 
132  for(int i = InEvent; i < NumBranchTypes; ++i) {
133  BranchType branchType = static_cast<BranchType>(i);
134  RootOutputTree *theTree = treePointers_[branchType];
135  for(auto const& item : om_->selectedOutputItemList()[branchType]) {
136  item.product_ = nullptr;
137  BranchDescription const& desc = *item.branchDescription_;
138  theTree->addBranch(desc.branchName(),
139  desc.wrappedName(),
140  desc.getInterface(),
141  item.product_,
142  item.splitLevel_,
143  item.basketSize_,
144  item.branchDescription_->produced());
145  //make sure we always store product registry info for all branches we create
146  branchesWithStoredHistory_.insert(item.branchID());
147  }
148  }
149  // Don't split metadata tree or event description tree
153 
154  fid_ = FileID(createGlobalIdentifier());
155 
156  // For the Job Report, get a vector of branch names in the "Events" tree.
157  // Also create a hash of all the branch names in the "Events" tree
158  // in a deterministic order, except use the full class name instead of the friendly class name.
159  // To avoid extra string copies, we create a vector of pointers into the product registry,
160  // and use a custom comparison operator for sorting.
161  std::vector<std::string> branchNames;
162  std::vector<BranchDescription const*> branches;
163  branchNames.reserve(om_->selectedOutputItemList()[InEvent].size());
164  branches.reserve(om->selectedOutputItemList()[InEvent].size());
165  for(auto const& item : om_->selectedOutputItemList()[InEvent]) {
166  branchNames.push_back(item.branchDescription_->branchName());
167  branches.push_back(item.branchDescription_);
168  }
169  // Now sort the branches for the hash.
170  sort_all(branches, sorterForJobReportHash);
171  // Now, make a concatenated string.
172  std::ostringstream oss;
173  char const underscore = '_';
174  for(auto const& branch : branches) {
175  BranchDescription const& bd = *branch;
176  oss << bd.fullClassName() << underscore
177  << bd.moduleLabel() << underscore
178  << bd.productInstanceName() << underscore
179  << bd.processName() << underscore;
180  }
181  std::string stringrep = oss.str();
182  cms::Digest md5alg(stringrep);
183 
184  // Register the output file with the JobReport service
185  // and get back the token for it.
186  std::string moduleName = "PoolOutputModule";
187  Service<JobReport> reportSvc;
188  reportToken_ = reportSvc->outputFileOpened(
189  file_, logicalFile_, // PFN and LFN
190  om_->catalog(), // catalog
191  moduleName, // module class name
192  om_->moduleLabel(), // module label
193  fid_.fid(), // file id (guid)
194  std::string(), // data type (not yet known, so string is empty).
195  md5alg.digest().toString(), // branch hash
196  branchNames); // branch names being written
197  }
int i
Definition: DBlmapReader.cc:9
LuminosityBlockAuxiliary lumiAux_
std::string const & BranchTypeToAuxiliaryBranchName(BranchType const &branchType)
Definition: BranchType.cc:114
std::string const & parentageTreeName()
Definition: BranchType.cc:158
std::string const & catalog() const
std::string const & moduleLabel() const
int const & compressionLevel() const
unsigned long nEventsInLumi_
OutputItemListArray const & selectedOutputItemList() const
ProcessHistoryRegistry processHistoryRegistry_
std::string const & eventSelectionsBranchName()
Definition: BranchType.cc:237
void setAutoFlush(Long64_t size)
BranchType
Definition: BranchType.h:11
std::set< BranchID > branchesWithStoredHistory_
std::vector< EventSelectionID > EventSelectionIDVector
std::string const & parameterSetsTreeName()
Definition: BranchType.cc:245
std::string const & fileName() const
std::map< ParentageID, unsigned int > parentageIDs_
RootOutputTree eventTree_
std::vector< BranchListIndex > BranchListIndexes
std::string moduleName(Provenance const &provenance)
Definition: Provenance.cc:27
PoolOutputModule const * om_
std::string const & compressionAlgorithm() const
IndexIntoFile::EntryNumber_t eventEntryNumber_
LuminosityBlockAuxiliary const * pLumiAux_
std::string logicalFile_
int const & splitLevel() const
std::string const & metaDataTreeName()
Definition: BranchType.cc:167
static TTree * makeTTree(TFile *filePtr, std::string const &name, int splitLevel)
int const & whyNotFastClonable() const
EventSelectionIDVector const * pEventSelectionIDs_
StoredProductProvenanceVector * pEventEntryInfoVector_
void sort_all(RandomAccessSequence &s)
wrappers for std::sort
Definition: Algorithms.h:120
RootOutputTree runTree_
StoredProductProvenanceVector eventEntryInfoVector_
AuxItemArray const & auxItems() const
void addAuxiliary(std::string const &branchName, T const *&pAux, int bufSize, bool allowCloning=true)
std::vector< StoredProductProvenance > StoredProductProvenanceVector
IndexIntoFile indexIntoFile_
int const & treeMaxVirtualSize() const
IndexIntoFile::EntryNumber_t runEntryNumber_
EventAuxiliary const * pEventAux_
RunAuxiliary runAux_
std::string const & BranchTypeToProductProvenanceBranchName(BranchType const &BranchType)
Definition: BranchType.cc:130
std::string const & branchListIndexesBranchName()
Definition: BranchType.cc:241
RootOutputTreePtrArray treePointers_
BranchListIndexes const * pBranchListIndexes_
IndexIntoFile::EntryNumber_t lumiEntryNumber_
RootOutputTree lumiTree_
boost::shared_ptr< TFile > filePtr_
RunAuxiliary const * pRunAux_
JobReport::Token reportToken_
std::string createGlobalIdentifier()
edm::RootOutputFile::~RootOutputFile ( )
inline

Definition at line 50 of file RootOutputFile.h.

50 {}

Member Function Documentation

void edm::RootOutputFile::beginInputFile ( FileBlock const &  fb,
int  remainingEvents 
)

Definition at line 289 of file RootOutputFile.cc.

References edm::PoolOutputModule::basketOrder(), edm::FileBlock::BranchMismatch, edm::FileBlock::CanFastClone, canFastCloneAux_, edm::RootOutputTree::checkIfFastClonable(), edm::RootOutputTree::checkSplitLevelsAndBasketSizes(), eventTree_, edm::hlt::Exception, file_, edm::FileBlock::fileName(), edm::PoolOutputModule::inputFileCount(), edm::match(), edm::RootOutputTree::maybeFastCloneTree(), edm::errors::MismatchedInputFiles, edm::FileBlock::NoRootInputSource, om_, edm::FileBlock::OutputMaxEventsTooSmall, edm::PoolOutputModule::overrideInputFileSplitLevels(), reportToken_, edm::FileBlock::SplitLevelMismatch, edm::FileBlock::tree(), edm::PoolOutputModule::whyNotFastClonable(), edm::FileBlock::whyNotFastClonable(), and whyNotFastClonable_.

289  {
290 
291  // Reset per input file information
293  canFastCloneAux_ = false;
294 
295  if(fb.tree() != nullptr) {
296 
297  whyNotFastClonable_ |= fb.whyNotFastClonable();
298 
299  if(remainingEvents >= 0 && remainingEvents < fb.tree()->GetEntries()) {
301  }
302 
304  if(!match) {
306  // We may be fast copying. We must disable fast copying if the split levels
307  // or basket sizes do not match.
309  } else {
310  // We are using the input split levels and basket sizes from the first input file
311  // for copied output branches. In this case, we throw an exception if any branches
312  // have different split levels or basket sizes in a subsequent input file.
313  // If the mismatch is in the first file, there is a bug somewhere, so we assert.
314  assert(om_->inputFileCount() > 1);
315  throw Exception(errors::MismatchedInputFiles, "RootOutputFile::beginInputFile()") <<
316  "Merge failure because input file " << file_ << " has different ROOT split levels or basket sizes\n" <<
317  "than previous files. To allow merging in splite of this, use the configuration parameter\n" <<
318  "overrideInputFileSplitLevels=cms.untracked.bool(True)\n" <<
319  "in every PoolOutputModule.\n";
320  }
321  }
322 
323  // Since this check can be time consuming, we do it only if we would otherwise fast clone.
325  if(!eventTree_.checkIfFastClonable(fb.tree())) {
327  }
328  }
329  // We now check if we can fast copy the auxiliary branches.
330  // We can do so only if we can otherwise fast copy,
331  // the input file has the current format (these branches are in the Events Tree),
332  // there are no newly dropped or produced products,
333  // no metadata has been dropped,
334  // ID's have not been modified,
335  // and the branch list indexes do not need modification.
336 
337  // Note: Fast copy of the EventProductProvenance branch is unsafe
338  // unless we can enforce that the parentage information for a fully copied
339  // output file will be the same as for the input file, with nothing dropped.
340  // This has never been enforced, and, withthe EDAlias feature, it may no longer
341  // work by accident.
342  // So, for now, we do not enable fast cloning of the non-product branches.
343 /*
344  Service<ConstProductRegistry> reg;
345  canFastCloneAux_ = (whyNotFastClonable_ == FileBlock::CanFastClone) &&
346  fb.fileFormatVersion().noMetaDataTrees() &&
347  !om_->hasNewlyDroppedBranch()[InEvent] &&
348  !fb.hasNewlyDroppedBranch()[InEvent] &&
349  om_->dropMetaData() == PoolOutputModule::DropNone &&
350  !reg->anyProductProduced() &&
351  !fb.modifiedIDs() &&
352  fb.branchListIndexesUnchanged();
353 */
354 
355  // Report the fast copying status.
356  Service<JobReport> reportSvc;
357  reportSvc->reportFastCopyingStatus(reportToken_, fb.fileName(), whyNotFastClonable_ == FileBlock::CanFastClone);
358  } else {
360  }
361 
363 
364  // Possibly issue warning or informational message if we haven't fast cloned.
365  if(fb.tree() != nullptr && whyNotFastClonable_ != FileBlock::CanFastClone) {
366  maybeIssueWarning(whyNotFastClonable_, fb.fileName(), file_);
367  }
368  }
bool const & overrideInputFileSplitLevels() const
bool checkSplitLevelsAndBasketSizes(TTree *inputTree) const
bool checkIfFastClonable(TTree *inputTree) const
RootOutputTree eventTree_
PoolOutputModule const * om_
std::string const & basketOrder() const
int const & whyNotFastClonable() const
void maybeFastCloneTree(bool canFastClone, bool canFastCloneAux, TTree *tree, std::string const &option)
int const & inputFileCount() const
JobReport::Token reportToken_
std::string match(BranchDescription const &a, BranchDescription const &b, std::string const &fileName)
std::string const& edm::RootOutputFile::fileName ( ) const
inline

Definition at line 70 of file RootOutputFile.h.

References file_.

70 {return file_;}
void edm::RootOutputFile::fillBranches ( BranchType const &  branchType,
Principal const &  principal,
StoredProductProvenanceVector productProvenanceVecPtr,
ModuleCallingContext const *  mcc 
)
private

Definition at line 672 of file RootOutputFile.cc.

References branchesWithStoredHistory_, revisionDML::branchType(), edm::FileBlock::CanFastClone, compareJSON::const, CommonMethods::cp(), edm::PoolOutputModule::DropDroppedPrior, edm::PoolOutputModule::dropMetaData(), edm::PoolOutputModule::DropNone, edm::PoolOutputModule::DropPrior, read312RV_cfg::fastCloning, edm::Principal::getForOutput(), edm::InEvent, insertAncestors(), insertProductProvenance(), om_, cmsRelvalreport::principal(), edm::es::produced, edm::OutputHandle::productProvenance(), edm::PoolOutputModule::selectedOutputItemList(), treePointers_, whyNotFastClonable_, and edm::OutputHandle::wrapper().

Referenced by writeLuminosityBlock(), writeOne(), and writeRun().

676  {
677 
678  typedef std::vector<std::pair<TClass*, void const*> > Dummies;
679  Dummies dummies;
680 
682 
684 
685  std::set<StoredProductProvenance> provenanceToKeep;
686 
687  // Loop over EDProduct branches, fill the provenance, and write the branch.
688  for(auto const& item : items) {
689 
690  BranchID const& id = item.branchDescription_->branchID();
691  branchesWithStoredHistory_.insert(id);
692 
693  bool produced = item.branchDescription_->produced();
694  bool keepProvenance = productProvenanceVecPtr != nullptr &&
698  bool getProd = (produced || !fastCloning ||
699  treePointers_[branchType]->uncloned(item.branchDescription_->branchName()));
700 
701  void const* product = nullptr;
702  OutputHandle const oh = principal.getForOutput(id, getProd, mcc);
703  if(keepProvenance && oh.productProvenance()) {
704  insertProductProvenance(*oh.productProvenance(),provenanceToKeep);
705  //provenanceToKeep.insert(*oh.productProvenance());
706  EventPrincipal const& eventPrincipal = dynamic_cast<EventPrincipal const&>(principal);
707  assert(eventPrincipal.productProvenanceRetrieverPtr());
708  insertAncestors(*oh.productProvenance(), eventPrincipal, produced, provenanceToKeep, mcc);
709  }
710  product = oh.wrapper();
711  if(getProd) {
712  if(product == nullptr) {
713  // No product with this ID is in the event.
714  // Add a null product.
715  TClass* cp = gROOT->GetClass(item.branchDescription_->wrappedName().c_str());
716  product = cp->New();
717  dummies.emplace_back(cp, product);
718  }
719  item.product_ = product;
720  }
721  }
722 
723  if(productProvenanceVecPtr != nullptr) productProvenanceVecPtr->assign(provenanceToKeep.begin(), provenanceToKeep.end());
724  treePointers_[branchType]->fillTree();
725  if(productProvenanceVecPtr != nullptr) productProvenanceVecPtr->clear();
726  for(auto& dummy : dummies) {
727  dummy.first->Destructor(const_cast<void *>(dummy.second));
728  }
729  }
DropMetaData const & dropMetaData() const
OutputItemListArray const & selectedOutputItemList() const
std::set< BranchID > branchesWithStoredHistory_
PoolOutputModule const * om_
void insertAncestors(ProductProvenance const &iGetParents, EventPrincipal const &principal, bool produced, std::set< StoredProductProvenance > &oToFill, ModuleCallingContext const *)
PoolOutputModule::OutputItemList OutputItemList
eventsetup::produce::Produce produced
Definition: ESProducts.cc:20
string const
Definition: compareJSON.py:14
bool insertProductProvenance(const ProductProvenance &, std::set< StoredProductProvenance > &oToInsert)
RootOutputTreePtrArray treePointers_
void edm::RootOutputFile::finishEndFile ( )

Definition at line 595 of file RootOutputFile.cc.

References revisionDML::branchType(), filePtr_, i, edm::InEvent, edm::one::OutputModuleBase::keptProducts(), metaDataTree_, edm::NumBranchTypes, om_, parameterSetsTree_, parentageTree_, reportToken_, setBranchAliases(), MainPageGenerator::tree, treePointers_, and edm::RootOutputTree::writeTTree().

595  {
596  metaDataTree_->SetEntries(-1);
599 
601 
602  // Create branch aliases for all the branches in the
603  // events/lumis/runs trees. The loop is over all types of data
604  // products.
605  for(int i = InEvent; i < NumBranchTypes; ++i) {
606  BranchType branchType = static_cast<BranchType>(i);
608  treePointers_[branchType]->writeTree();
609  }
610 
611  // close the file -- mfp
612  // Just to play it safe, zero all pointers to objects in the TFile to be closed.
613  metaDataTree_ = parentageTree_ = nullptr;
614  for(auto& treePointer : treePointers_) {
615  treePointer->close();
616  treePointer = nullptr;
617  }
618  filePtr_->Close();
619  filePtr_.reset();
620 
621  // report that file has been closed
622  Service<JobReport> reportSvc;
623  reportSvc->outputFileClosed(reportToken_);
624 
625  }
int i
Definition: DBlmapReader.cc:9
BranchType
Definition: BranchType.h:11
PoolOutputModule const * om_
SelectedProductsForBranchType const & keptProducts() const
void setBranchAliases(TTree *tree, SelectedProducts const &branches) const
static void writeTTree(TTree *tree)
RootOutputTreePtrArray treePointers_
boost::shared_ptr< TFile > filePtr_
JobReport::Token reportToken_
void edm::RootOutputFile::insertAncestors ( ProductProvenance const &  iGetParents,
EventPrincipal const &  principal,
bool  produced,
std::set< StoredProductProvenance > &  oToFill,
ModuleCallingContext const *  mcc 
)
private

Definition at line 647 of file RootOutputFile.cc.

References branchesWithStoredHistory_, edm::ProductProvenance::branchID(), edm::ProductProvenanceRetriever::branchIDToProvenance(), edm::PoolOutputModule::DropAll, edm::PoolOutputModule::DropDroppedPrior, edm::PoolOutputModule::dropMetaData(), edm::PoolOutputModule::DropNone, edm::PoolOutputModule::DropPrior, edm::EventPrincipal::getProvenance(), info(), insertProductProvenance(), om_, edm::ProductProvenance::parentage(), edm::Parentage::parents(), edm::es::produced, and edm::EventPrincipal::productProvenanceRetrieverPtr().

Referenced by fillBranches().

651  {
655  ProductProvenanceRetriever const& iMapper = *principal.productProvenanceRetrieverPtr();
656  std::vector<BranchID> const& parentIDs = iGetParents.parentage().parents();
657  for(auto const& parentID : parentIDs) {
658  branchesWithStoredHistory_.insert(parentID);
659  ProductProvenance const* info = iMapper.branchIDToProvenance(parentID);
660  if(info) {
662  principal.getProvenance(info->branchID(), mcc).product().produced()) {
663  if(insertProductProvenance(*info,oToFill) ) {
664  //haven't seen this one yet
665  insertAncestors(*info, principal, produced, oToFill, mcc);
666  }
667  }
668  }
669  }
670  }
static const TGPicture * info(bool iBackgroundIsBlack)
DropMetaData const & dropMetaData() const
std::set< BranchID > branchesWithStoredHistory_
PoolOutputModule const * om_
void insertAncestors(ProductProvenance const &iGetParents, EventPrincipal const &principal, bool produced, std::set< StoredProductProvenance > &oToFill, ModuleCallingContext const *)
eventsetup::produce::Produce produced
Definition: ESProducts.cc:20
bool insertProductProvenance(const ProductProvenance &, std::set< StoredProductProvenance > &oToInsert)
bool edm::RootOutputFile::insertProductProvenance ( const ProductProvenance ,
std::set< StoredProductProvenance > &  oToInsert 
)
private

Definition at line 732 of file RootOutputFile.cc.

References edm::ProductProvenance::branchID(), edm::StoredProductProvenance::branchID_, edm::hlt::Exception, i, edm::BranchID::id(), edm::errors::LogicError, edm::ProductProvenance::parentageID(), edm::StoredProductProvenance::parentageIDIndex_, and parentageIDs_.

Referenced by fillBranches(), and insertAncestors().

733  {
734  StoredProductProvenance toStore;
735  toStore.branchID_ = iProv.branchID().id();
736  std::set<edm::StoredProductProvenance>::iterator itFound = oToInsert.find(toStore);
737  if(itFound == oToInsert.end()) {
738  //get the index to the ParentageID or insert a new value if not already present
739  std::pair<std::map<edm::ParentageID,unsigned int>::iterator,bool> i = parentageIDs_.insert(std::make_pair(iProv.parentageID(),static_cast<unsigned int>(parentageIDs_.size())));
740  toStore.parentageIDIndex_ = i.first->second;
741  if(toStore.parentageIDIndex_ >= parentageIDs_.size()) {
743  << "RootOutputFile::insertProductProvenance\n"
744  << "The parentage ID index value " << toStore.parentageIDIndex_ << " is out of bounds. The maximum value is currently " << parentageIDs_.size()-1 << ".\n"
745  << "This should never happen.\n"
746  << "Please report this to the framework hypernews forum 'hn-cms-edmFramework@cern.ch'.\n";
747  }
748 
749  oToInsert.insert(toStore);
750  return true;
751  }
752  return false;
753  }
int i
Definition: DBlmapReader.cc:9
std::map< ParentageID, unsigned int > parentageIDs_
void edm::RootOutputFile::respondToCloseInputFile ( FileBlock const &  fb)

Definition at line 370 of file RootOutputFile.cc.

References eventTree_, lumiTree_, runTree_, and edm::RootOutputTree::setEntries().

370  {
374  }
RootOutputTree eventTree_
RootOutputTree runTree_
RootOutputTree lumiTree_
void edm::RootOutputFile::setBranchAliases ( TTree *  tree,
SelectedProducts const &  branches 
) const
private

Definition at line 628 of file RootOutputFile.cc.

References edm::BranchDescription::branchAliases(), edm::BranchDescription::branchName(), full, edm::BranchDescription::moduleLabel(), edm::BranchDescription::productInstanceName(), corrVsCorr::selection, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by finishEndFile().

628  {
629  if(tree && tree->GetNbranches() != 0) {
630  for(auto const& selection : branches) {
631  BranchDescription const& pd = *selection;
632  std::string const& full = pd.branchName() + "obj";
633  if(pd.branchAliases().empty()) {
634  std::string const& alias =
635  (pd.productInstanceName().empty() ? pd.moduleLabel() : pd.productInstanceName());
636  tree->SetAlias(alias.c_str(), full.c_str());
637  } else {
638  for(auto const& alias : pd.branchAliases()) {
639  tree->SetAlias(alias.c_str(), full.c_str());
640  }
641  }
642  }
643  }
644  }
selection
main part
Definition: corrVsCorr.py:98
Definition: GenABIO.cc:180
bool edm::RootOutputFile::shouldWeCloseFile ( ) const

Definition at line 376 of file RootOutputFile.cc.

References filePtr_, edm::PoolOutputModule::maxFileSize(), om_, and findQualityFiles::size.

376  {
377  unsigned int const oneK = 1024;
378  Long64_t size = filePtr_->GetSize()/oneK;
379  return(size >= om_->maxFileSize());
380  }
unsigned int const & maxFileSize() const
PoolOutputModule const * om_
boost::shared_ptr< TFile > filePtr_
tuple size
Write out results.
void edm::RootOutputFile::writeBranchIDListRegistry ( )

Definition at line 536 of file RootOutputFile.cc.

References b, edm::PoolOutputModule::basketSize(), edm::poolNames::branchIDListBranchName(), edm::one::OutputModuleBase::branchIDLists(), metaDataTree_, om_, and AlCaHLTBitMon_ParallelJobs::p.

536  {
537  BranchIDLists const* p = om_->branchIDLists();
538  TBranch* b = metaDataTree_->Branch(poolNames::branchIDListBranchName().c_str(), &p, om_->basketSize(), 0);
539  assert(b);
540  b->Fill();
541  }
BranchIDLists const * branchIDLists() const
int const & basketSize() const
std::vector< BranchIDList > BranchIDLists
Definition: BranchIDList.h:19
PoolOutputModule const * om_
double b
Definition: hdecay.h:120
std::string const & branchIDListBranchName()
Definition: BranchType.cc:207
void edm::RootOutputFile::writeFileFormatVersion ( )

Definition at line 493 of file RootOutputFile.cc.

References b, edm::PoolOutputModule::basketSize(), edm::poolNames::fileFormatVersionBranchName(), edm::getFileFormatVersion(), metaDataTree_, and om_.

493  {
494  FileFormatVersion fileFormatVersion(getFileFormatVersion());
495  FileFormatVersion* pFileFmtVsn = &fileFormatVersion;
496  TBranch* b = metaDataTree_->Branch(poolNames::fileFormatVersionBranchName().c_str(), &pFileFmtVsn, om_->basketSize(), 0);
497  assert(b);
498  b->Fill();
499  }
int const & basketSize() const
std::string const & fileFormatVersionBranchName()
Definition: BranchType.cc:212
PoolOutputModule const * om_
int getFileFormatVersion()
double b
Definition: hdecay.h:120
void edm::RootOutputFile::writeFileIdentifier ( )

Definition at line 501 of file RootOutputFile.cc.

References b, edm::PoolOutputModule::basketSize(), fid_, edm::poolNames::fileIdentifierBranchName(), metaDataTree_, and om_.

501  {
502  FileID* fidPtr = &fid_;
503  TBranch* b = metaDataTree_->Branch(poolNames::fileIdentifierBranchName().c_str(), &fidPtr, om_->basketSize(), 0);
504  assert(b);
505  b->Fill();
506  }
int const & basketSize() const
PoolOutputModule const * om_
double b
Definition: hdecay.h:120
std::string const & fileIdentifierBranchName()
Definition: BranchType.cc:217
void edm::RootOutputFile::writeIndexIntoFile ( )

Definition at line 508 of file RootOutputFile.cc.

References cms::Exception::addContext(), b, edm::PoolOutputModule::basketSize(), edm::RootOutputTree::checkEntriesInReadBranches(), eventEntryNumber_, eventTree_, indexIntoFile_, edm::poolNames::indexIntoFileBranchName(), metaDataTree_, om_, edm::errors::OtherCMS, and edm::IndexIntoFile::sortVector_Run_Or_Lumi_Entries().

508  {
511  ex << "The number of entries in at least one output TBranch whose entries\n"
512  "were copied from the input does not match the number of events\n"
513  "recorded in IndexIntoFile. This might (or might not) indicate a\n"
514  "problem related to fast copy.";
515  ex.addContext("Calling RootOutputFile::writeIndexIntoFile");
516  throw ex;
517  }
519  IndexIntoFile* iifPtr = &indexIntoFile_;
520  TBranch* b = metaDataTree_->Branch(poolNames::indexIntoFileBranchName().c_str(), &iifPtr, om_->basketSize(), 0);
521  assert(b);
522  b->Fill();
523  }
int const & basketSize() const
void sortVector_Run_Or_Lumi_Entries()
RootOutputTree eventTree_
PoolOutputModule const * om_
IndexIntoFile::EntryNumber_t eventEntryNumber_
std::string const & indexIntoFileBranchName()
Definition: BranchType.cc:227
bool checkEntriesInReadBranches(Long64_t expectedNumberOfEntries) const
double b
Definition: hdecay.h:120
IndexIntoFile indexIntoFile_
void edm::RootOutputFile::writeLuminosityBlock ( LuminosityBlockPrincipal const &  lb,
ModuleCallingContext const *  mcc 
)

Definition at line 428 of file RootOutputFile.cc.

References edm::IndexIntoFile::addEntry(), edm::LuminosityBlockPrincipal::aux(), fillBranches(), edm::LuminosityBlockPrincipal::id(), indexIntoFile_, edm::InLumi, lumiAux_, lumiEntryNumber_, edm::LuminosityBlockAuxiliary::luminosityBlock(), edm::LuminosityBlockID::luminosityBlock(), lumiTree_, nEventsInLumi_, edm::RootOutputTree::optimizeBaskets(), edm::Principal::processHistory(), edm::Principal::processHistoryID(), processHistoryRegistry_, edm::ProcessHistoryRegistry::reducedProcessHistoryID(), edm::ProcessHistoryRegistry::registerProcessHistory(), reportToken_, edm::LuminosityBlockID::run(), edm::LuminosityBlockAuxiliary::run(), and edm::LuminosityBlockAuxiliary::setProcessHistoryID().

428  {
429  // Auxiliary branch
430  // NOTE: lumiAux_ must be filled before calling fillBranches since it gets written out in that routine.
431  lumiAux_ = lb.aux();
432  // Use the updated process historyID
433  lumiAux_.setProcessHistoryID(lb.processHistoryID());
434  // Store the process history.
435  processHistoryRegistry_.registerProcessHistory(lb.processHistory());
436  // Store the reduced ID in the IndexIntoFile
437  ProcessHistoryID reducedPHID = processHistoryRegistry_.reducedProcessHistoryID(lb.processHistoryID());
438  // Add lumi to index.
441  fillBranches(InLumi, lb, nullptr, mcc);
442  lumiTree_.optimizeBaskets(10ULL*1024*1024);
443 
444  Service<JobReport> reportSvc;
445  reportSvc->reportLumiSection(reportToken_, lb.id().run(), lb.id().luminosityBlock(),nEventsInLumi_);
446  nEventsInLumi_ = 0;
447  }
void fillBranches(BranchType const &branchType, Principal const &principal, StoredProductProvenanceVector *productProvenanceVecPtr, ModuleCallingContext const *)
LuminosityBlockAuxiliary lumiAux_
bool registerProcessHistory(ProcessHistory const &processHistory)
unsigned long nEventsInLumi_
ProcessHistoryRegistry processHistoryRegistry_
ProcessHistoryID const & reducedProcessHistoryID(ProcessHistoryID const &fullID) const
void setProcessHistoryID(ProcessHistoryID const &phid)
LuminosityBlockNumber_t luminosityBlock() const
void addEntry(ProcessHistoryID const &processHistoryID, RunNumber_t run, LuminosityBlockNumber_t lumi, EventNumber_t event, EntryNumber_t entry)
Hash< ProcessHistoryType > ProcessHistoryID
IndexIntoFile indexIntoFile_
IndexIntoFile::EntryNumber_t lumiEntryNumber_
RootOutputTree lumiTree_
void optimizeBaskets(ULong64_t size)
JobReport::Token reportToken_
void edm::RootOutputFile::writeOne ( EventPrincipal const &  e,
ModuleCallingContext const *  mcc 
)

Definition at line 382 of file RootOutputFile.cc.

References edm::IndexIntoFile::addEntry(), edm::EventPrincipal::aux(), edm::EventPrincipal::branchListIndexes(), dtTPAnalyzer_cfg::dataType, dataTypeReported_, edm::EventID::event(), edm::EventAuxiliary::event(), eventEntryNumber_, edm::EventPrincipal::eventSelectionIDs(), fillBranches(), edm::EventPrincipal::id(), indexIntoFile_, edm::InEvent, edm::EventAuxiliary::isRealData(), edm::EventAuxiliary::luminosityBlock(), nEventsInLumi_, om_, pBranchListIndexes_, pEventAux_, pEventEntryInfoVector_, pEventSelectionIDs_, edm::Principal::processHistory(), edm::EventAuxiliary::processHistoryID(), edm::Principal::processHistoryID(), processHistoryRegistry_, edm::ProcessHistoryRegistry::reducedProcessHistoryID(), edm::ProcessHistoryRegistry::registerProcessHistory(), reportToken_, edm::EventID::run(), edm::EventAuxiliary::run(), edm::one::OutputModuleBase::selectorConfig(), AlCaHLTBitMon_QueryRunRegistry::string, and edm::one::OutputModuleBase::wantAllEvents().

383  {
384  // Auxiliary branch
385  pEventAux_ = &e.aux();
386 
387  // Because getting the data may cause an exception to be thrown we want to do that
388  // first before writing anything to the file about this event
389  // NOTE: pEventAux_, pBranchListIndexes_, pEventSelectionIDs_, and pEventEntryInfoVector_
390  // must be set before calling fillBranches since they get written out in that routine.
391  assert(pEventAux_->processHistoryID() == e.processHistoryID());
392  pBranchListIndexes_ = &e.branchListIndexes();
393 
394  // Note: The EventSelectionIDVector should have a one to one correspondence with the processes in the process history.
395  // Therefore, a new entry should be added if and only if the current process has been added to the process history,
396  // which is done if and only if there is a produced product.
398  EventSelectionIDVector esids = e.eventSelectionIDs();
399  if (reg->anyProductProduced() || !om_->wantAllEvents()) {
400  esids.push_back(om_->selectorConfig());
401  }
402  pEventSelectionIDs_ = &esids;
404 
405  // Add the dataType to the job report if it hasn't already been done
406  if(!dataTypeReported_) {
407  Service<JobReport> reportSvc;
408  std::string dataType("MC");
409  if(pEventAux_->isRealData()) dataType = "Data";
410  reportSvc->reportDataType(reportToken_, dataType);
411  dataTypeReported_ = true;
412  }
413 
414  // Store the process history.
416  // Store the reduced ID in the IndexIntoFile
417  ProcessHistoryID reducedPHID = processHistoryRegistry_.reducedProcessHistoryID(e.processHistoryID());
418  // Add event to index
421 
422  // Report event written
423  Service<JobReport> reportSvc;
424  reportSvc->eventWrittenToFile(reportToken_, e.id().run(), e.id().event());
425  ++nEventsInLumi_;
426  }
void fillBranches(BranchType const &branchType, Principal const &principal, StoredProductProvenanceVector *productProvenanceVecPtr, ModuleCallingContext const *)
bool isRealData() const
bool registerProcessHistory(ProcessHistory const &processHistory)
RunNumber_t run() const
unsigned long nEventsInLumi_
ProcessHistoryRegistry processHistoryRegistry_
ParameterSetID selectorConfig() const
std::vector< EventSelectionID > EventSelectionIDVector
LuminosityBlockNumber_t luminosityBlock() const
PoolOutputModule const * om_
IndexIntoFile::EntryNumber_t eventEntryNumber_
ProcessHistoryID const & reducedProcessHistoryID(ProcessHistoryID const &fullID) const
void addEntry(ProcessHistoryID const &processHistoryID, RunNumber_t run, LuminosityBlockNumber_t lumi, EventNumber_t event, EntryNumber_t entry)
Hash< ProcessHistoryType > ProcessHistoryID
EventSelectionIDVector const * pEventSelectionIDs_
StoredProductProvenanceVector * pEventEntryInfoVector_
IndexIntoFile indexIntoFile_
ProcessHistoryID const & processHistoryID() const
EventAuxiliary const * pEventAux_
BranchListIndexes const * pBranchListIndexes_
EventNumber_t event() const
JobReport::Token reportToken_
void edm::RootOutputFile::writeParameterSetRegistry ( )

Definition at line 543 of file RootOutputFile.cc.

References b, edm::PoolOutputModule::basketSize(), edm::poolNames::idToParameterSetBlobsBranchName(), edm::pset::Registry::instance(), om_, and parameterSetsTree_.

543  {
544  std::pair<ParameterSetID, ParameterSetBlob> idToBlob;
545  std::pair<ParameterSetID, ParameterSetBlob>* pIdToBlob = &idToBlob;
546  TBranch* b = parameterSetsTree_->Branch(poolNames::idToParameterSetBlobsBranchName().c_str(),&pIdToBlob,om_->basketSize(), 0);
547 
548  for(auto const& pset : *pset::Registry::instance()) {
549  idToBlob.first = pset.first;
550  idToBlob.second.pset() = pset.second.toString();
551 
552  b->Fill();
553  }
554  }
std::string const & idToParameterSetBlobsBranchName()
Definition: BranchType.cc:249
int const & basketSize() const
PoolOutputModule const * om_
double b
Definition: hdecay.h:120
static Registry * instance()
Definition: Registry.cc:14
void edm::RootOutputFile::writeParentageRegistry ( )

Definition at line 469 of file RootOutputFile.cc.

References edm::PoolOutputModule::basketSize(), edm::hlt::Exception, edm::errors::FatalRootError, edm::ParentageRegistry::getMapped(), edm::ParentageRegistry::instance(), om_, edm::poolNames::parentageBranchName(), parentageIDs_, and parentageTree_.

469  {
470  Parentage const* desc(nullptr);
471 
472  if(!parentageTree_->Branch(poolNames::parentageBranchName().c_str(),
473  &desc, om_->basketSize(), 0))
475  << "Failed to create a branch for Parentages in the output file";
476 
477  ParentageRegistry& ptReg = *ParentageRegistry::instance();
478 
479  std::vector<ParentageID> orderedIDs(parentageIDs_.size());
480  for(auto const& parentageID : parentageIDs_) {
481  orderedIDs[parentageID.second] = parentageID.first;
482  }
483  //now put them into the TTree in the correct order
484  for(auto const& orderedID : orderedIDs) {
485  desc = ptReg.getMapped(orderedID);
486  //NOTE: some old format files have missing Parentage info
487  // so a null value of desc can't be fatal.
488  // Root will default construct an object in that case.
489  parentageTree_->Fill();
490  }
491  }
int const & basketSize() const
std::map< ParentageID, unsigned int > parentageIDs_
PoolOutputModule const * om_
std::string const & parentageBranchName()
Definition: BranchType.cc:162
static ParentageRegistry * instance()
void edm::RootOutputFile::writeProcessHistoryRegistry ( )

Definition at line 525 of file RootOutputFile.cc.

References b, edm::PoolOutputModule::basketSize(), metaDataTree_, om_, AlCaHLTBitMon_ParallelJobs::p, edm::poolNames::processHistoryBranchName(), and processHistoryRegistry_.

525  {
526  ProcessHistoryVector procHistoryVector;
527  for(auto const& ph : processHistoryRegistry_) {
528  procHistoryVector.push_back(ph.second);
529  }
530  ProcessHistoryVector* p = &procHistoryVector;
531  TBranch* b = metaDataTree_->Branch(poolNames::processHistoryBranchName().c_str(), &p, om_->basketSize(), 0);
532  assert(b);
533  b->Fill();
534  }
std::vector< ProcessHistory > ProcessHistoryVector
int const & basketSize() const
ProcessHistoryRegistry processHistoryRegistry_
PoolOutputModule const * om_
std::string const & processHistoryBranchName()
Definition: BranchType.cc:197
double b
Definition: hdecay.h:120
void edm::RootOutputFile::writeProductDependencies ( )

Definition at line 587 of file RootOutputFile.cc.

References b, edm::PoolOutputModule::basketSize(), edm::one::OutputModuleBase::branchChildren(), metaDataTree_, om_, and edm::poolNames::productDependenciesBranchName().

587  {
588  BranchChildren& pDeps = const_cast<BranchChildren&>(om_->branchChildren());
589  BranchChildren* ppDeps = &pDeps;
590  TBranch* b = metaDataTree_->Branch(poolNames::productDependenciesBranchName().c_str(), &ppDeps, om_->basketSize(), 0);
591  assert(b);
592  b->Fill();
593  }
int const & basketSize() const
PoolOutputModule const * om_
BranchChildren const & branchChildren() const
double b
Definition: hdecay.h:120
std::string const & productDependenciesBranchName()
Definition: BranchType.cc:177
void edm::RootOutputFile::writeProductDescriptionRegistry ( )

Definition at line 556 of file RootOutputFile.cc.

References b, edm::PoolOutputModule::basketSize(), branchesWithStoredHistory_, end, metaDataTree_, om_, parseEventContent::prod, and edm::poolNames::productDescriptionBranchName().

556  {
557  // Make a local copy of the ProductRegistry, removing any transient or pruned products.
558  typedef ProductRegistry::ProductList ProductList;
560  ProductRegistry pReg(reg->productList());
561  ProductList& pList = const_cast<ProductList &>(pReg.productList());
562  for(auto const& prod : pList) {
563  if(prod.second.branchID() != prod.second.originalBranchID()) {
564  if(branchesWithStoredHistory_.find(prod.second.branchID()) != branchesWithStoredHistory_.end()) {
565  branchesWithStoredHistory_.insert(prod.second.originalBranchID());
566  }
567  }
568  }
569  std::set<BranchID>::iterator end = branchesWithStoredHistory_.end();
570  for(ProductList::iterator it = pList.begin(); it != pList.end();) {
571  if(branchesWithStoredHistory_.find(it->second.branchID()) == end) {
572  // avoid invalidating iterator on deletion
573  ProductList::iterator itCopy = it;
574  ++it;
575  pList.erase(itCopy);
576 
577  } else {
578  ++it;
579  }
580  }
581 
582  ProductRegistry* ppReg = &pReg;
583  TBranch* b = metaDataTree_->Branch(poolNames::productDescriptionBranchName().c_str(), &ppReg, om_->basketSize(), 0);
584  assert(b);
585  b->Fill();
586  }
int const & basketSize() const
std::map< BranchKey, BranchDescription > ProductList
std::set< BranchID > branchesWithStoredHistory_
PoolOutputModule const * om_
#define end
Definition: vmac.h:37
double b
Definition: hdecay.h:120
std::string const & productDescriptionBranchName()
Definition: BranchType.cc:172
void edm::RootOutputFile::writeRun ( RunPrincipal const &  r,
ModuleCallingContext const *  mcc 
)

Definition at line 449 of file RootOutputFile.cc.

References edm::IndexIntoFile::addEntry(), edm::RunPrincipal::aux(), fillBranches(), indexIntoFile_, edm::InRun, edm::RootOutputTree::optimizeBaskets(), edm::Principal::processHistory(), edm::Principal::processHistoryID(), processHistoryRegistry_, edm::ProcessHistoryRegistry::reducedProcessHistoryID(), edm::ProcessHistoryRegistry::registerProcessHistory(), reportToken_, edm::RunAuxiliary::run(), edm::RunPrincipal::run(), runAux_, runEntryNumber_, runTree_, and edm::RunAuxiliary::setProcessHistoryID().

449  {
450  // Auxiliary branch
451  // NOTE: runAux_ must be filled before calling fillBranches since it gets written out in that routine.
452  runAux_ = r.aux();
453  // Use the updated process historyID
454  runAux_.setProcessHistoryID(r.processHistoryID());
455  // Store the process history.
457  // Store the reduced ID in the IndexIntoFile
458  ProcessHistoryID reducedPHID = processHistoryRegistry_.reducedProcessHistoryID(r.processHistoryID());
459  // Add run to index.
460  indexIntoFile_.addEntry(reducedPHID, runAux_.run(), 0U, 0U, runEntryNumber_);
461  ++runEntryNumber_;
462  fillBranches(InRun, r, nullptr, mcc);
463  runTree_.optimizeBaskets(10ULL*1024*1024);
464 
465  Service<JobReport> reportSvc;
466  reportSvc->reportRunNumber(reportToken_, r.run());
467  }
void fillBranches(BranchType const &branchType, Principal const &principal, StoredProductProvenanceVector *productProvenanceVecPtr, ModuleCallingContext const *)
bool registerProcessHistory(ProcessHistory const &processHistory)
ProcessHistoryRegistry processHistoryRegistry_
ProcessHistoryID const & reducedProcessHistoryID(ProcessHistoryID const &fullID) const
void addEntry(ProcessHistoryID const &processHistoryID, RunNumber_t run, LuminosityBlockNumber_t lumi, EventNumber_t event, EntryNumber_t entry)
Hash< ProcessHistoryType > ProcessHistoryID
RootOutputTree runTree_
IndexIntoFile indexIntoFile_
IndexIntoFile::EntryNumber_t runEntryNumber_
RunAuxiliary runAux_
void setProcessHistoryID(ProcessHistoryID const &phid)
Definition: RunAuxiliary.h:36
void optimizeBaskets(ULong64_t size)
RunNumber_t run() const
Definition: RunAuxiliary.h:41
JobReport::Token reportToken_

Member Data Documentation

std::set<BranchID> edm::RootOutputFile::branchesWithStoredHistory_
private
bool edm::RootOutputFile::canFastCloneAux_
private

Definition at line 104 of file RootOutputFile.h.

Referenced by beginInputFile().

bool edm::RootOutputFile::dataTypeReported_
private

Definition at line 128 of file RootOutputFile.h.

Referenced by writeOne().

StoredProductProvenanceVector edm::RootOutputFile::eventEntryInfoVector_
private

Definition at line 120 of file RootOutputFile.h.

IndexIntoFile::EntryNumber_t edm::RootOutputFile::eventEntryNumber_
private

Definition at line 107 of file RootOutputFile.h.

Referenced by writeIndexIntoFile(), and writeOne().

RootOutputTree edm::RootOutputFile::eventTree_
private
FileID edm::RootOutputFile::fid_
private

Definition at line 106 of file RootOutputFile.h.

Referenced by RootOutputFile(), and writeFileIdentifier().

std::string edm::RootOutputFile::file_
private

Definition at line 99 of file RootOutputFile.h.

Referenced by beginInputFile(), fileName(), and RootOutputFile().

boost::shared_ptr<TFile> edm::RootOutputFile::filePtr_
private

Definition at line 105 of file RootOutputFile.h.

Referenced by finishEndFile(), RootOutputFile(), and shouldWeCloseFile().

IndexIntoFile edm::RootOutputFile::indexIntoFile_
private

Definition at line 110 of file RootOutputFile.h.

Referenced by writeIndexIntoFile(), writeLuminosityBlock(), writeOne(), and writeRun().

std::string edm::RootOutputFile::logicalFile_
private

Definition at line 100 of file RootOutputFile.h.

Referenced by RootOutputFile().

LuminosityBlockAuxiliary edm::RootOutputFile::lumiAux_
private

Definition at line 115 of file RootOutputFile.h.

Referenced by writeLuminosityBlock().

IndexIntoFile::EntryNumber_t edm::RootOutputFile::lumiEntryNumber_
private

Definition at line 108 of file RootOutputFile.h.

Referenced by writeLuminosityBlock().

RootOutputTree edm::RootOutputFile::lumiTree_
private

Definition at line 125 of file RootOutputFile.h.

Referenced by respondToCloseInputFile(), RootOutputFile(), and writeLuminosityBlock().

TTree* edm::RootOutputFile::metaDataTree_
private
unsigned long edm::RootOutputFile::nEventsInLumi_
private

Definition at line 111 of file RootOutputFile.h.

Referenced by writeLuminosityBlock(), and writeOne().

PoolOutputModule const* edm::RootOutputFile::om_
private
TTree* edm::RootOutputFile::parameterSetsTree_
private

Definition at line 113 of file RootOutputFile.h.

Referenced by finishEndFile(), RootOutputFile(), and writeParameterSetRegistry().

std::map<ParentageID,unsigned int> edm::RootOutputFile::parentageIDs_
private

Definition at line 130 of file RootOutputFile.h.

Referenced by insertProductProvenance(), and writeParentageRegistry().

TTree* edm::RootOutputFile::parentageTree_
private

Definition at line 114 of file RootOutputFile.h.

Referenced by finishEndFile(), RootOutputFile(), and writeParentageRegistry().

BranchListIndexes const* edm::RootOutputFile::pBranchListIndexes_
private

Definition at line 122 of file RootOutputFile.h.

Referenced by RootOutputFile(), and writeOne().

EventAuxiliary const* edm::RootOutputFile::pEventAux_
private

Definition at line 117 of file RootOutputFile.h.

Referenced by RootOutputFile(), and writeOne().

StoredProductProvenanceVector* edm::RootOutputFile::pEventEntryInfoVector_
private

Definition at line 121 of file RootOutputFile.h.

Referenced by RootOutputFile(), and writeOne().

EventSelectionIDVector const* edm::RootOutputFile::pEventSelectionIDs_
private

Definition at line 123 of file RootOutputFile.h.

Referenced by RootOutputFile(), and writeOne().

LuminosityBlockAuxiliary const* edm::RootOutputFile::pLumiAux_
private

Definition at line 118 of file RootOutputFile.h.

Referenced by RootOutputFile().

ProcessHistoryRegistry edm::RootOutputFile::processHistoryRegistry_
private
RunAuxiliary const* edm::RootOutputFile::pRunAux_
private

Definition at line 119 of file RootOutputFile.h.

Referenced by RootOutputFile().

JobReport::Token edm::RootOutputFile::reportToken_
private
RunAuxiliary edm::RootOutputFile::runAux_
private

Definition at line 116 of file RootOutputFile.h.

Referenced by writeRun().

IndexIntoFile::EntryNumber_t edm::RootOutputFile::runEntryNumber_
private

Definition at line 109 of file RootOutputFile.h.

Referenced by writeRun().

RootOutputTree edm::RootOutputFile::runTree_
private

Definition at line 126 of file RootOutputFile.h.

Referenced by respondToCloseInputFile(), RootOutputFile(), and writeRun().

RootOutputTreePtrArray edm::RootOutputFile::treePointers_
private

Definition at line 127 of file RootOutputFile.h.

Referenced by fillBranches(), finishEndFile(), and RootOutputFile().

int edm::RootOutputFile::whyNotFastClonable_
private

Definition at line 103 of file RootOutputFile.h.

Referenced by beginInputFile(), and fillBranches().