|
|
Go to the documentation of this file.
26 #include "TBranchElement.h"
27 #include "TObjArray.h"
33 #include "boost/algorithm/string.hpp"
39 rootServiceChecker_(),
41 selectedOutputItemList_(),
42 fileName_(
pset.getUntrackedParameter<
std::
string>(
"fileName")),
43 logicalFileName_(
pset.getUntrackedParameter<
std::
string>(
"logicalFileName")),
45 maxFileSize_(
pset.getUntrackedParameter<
int>(
"maxSize")),
46 compressionLevel_(
pset.getUntrackedParameter<
int>(
"compressionLevel")),
47 compressionAlgorithm_(
pset.getUntrackedParameter<
std::
string>(
"compressionAlgorithm")),
48 basketSize_(
pset.getUntrackedParameter<
int>(
"basketSize")),
49 eventAutoFlushSize_(
pset.getUntrackedParameter<
int>(
"eventAutoFlushCompressedSize")),
50 splitLevel_(
std::
min<
int>(
pset.getUntrackedParameter<
int>(
"splitLevel") + 1, 99)),
51 basketOrder_(
pset.getUntrackedParameter<
std::
string>(
"sortBaskets")),
52 treeMaxVirtualSize_(
pset.getUntrackedParameter<
int>(
"treeMaxVirtualSize")),
53 whyNotFastClonable_(
pset.getUntrackedParameter<
bool>(
"fastCloning") ?
FileBlock::CanFastClone
55 dropMetaData_(DropNone),
56 moduleLabel_(
pset.getParameter<
std::
string>(
"@module_label")),
57 initializedFromInput_(
false),
62 overrideInputFileSplitLevels_(
pset.getUntrackedParameter<
bool>(
"overrideInputFileSplitLevels")),
65 if (
pset.getUntrackedParameter<
bool>(
"writeStatusFile")) {
66 std::ostringstream statusfilename;
85 <<
"Legal values are 'NONE', 'DROPPED', 'PRIOR', and 'ALL'.\n";
92 auto const& specialSplit{
pset.getUntrackedParameterSetVector(
"overrideBranchesSplitLevel")};
95 for (
auto const&
s : specialSplit) {
97 s.getUntrackedParameter<
int>(
"splitLevel"));
103 pset.getUntrackedParameterSet(
"dataset");
108 for (
auto const&
prod : reg->productList()) {
121 : branchDescription_(nullptr),
135 if (
tree !=
nullptr) {
136 TObjArray* branches =
tree->GetListOfBranches();
137 for (
int i = 0;
i < branches->GetEntries(); ++
i) {
138 TBranchElement*
br = (TBranchElement*)branches->At(
i);
147 if (treeMap_->empty())
149 std::string const& lstring =
lh.branchDescription_->branchName();
151 std::map<std::string, int>::const_iterator lit = treeMap_->find(lstring);
152 std::map<std::string, int>::const_iterator rit = treeMap_->find(rstring);
153 bool lfound = (lit != treeMap_->end());
154 bool rfound = (rit != treeMap_->end());
155 if (lfound && rfound) {
156 return lit->second < rit->second;
166 return std::regex_match(iBranchName, branch_);
171 boost::replace_all(
tmp,
"*",
".*");
172 boost::replace_all(
tmp,
"?",
".");
173 return std::regex(
tmp);
194 for (
auto const& kept : keptVector) {
200 ? theInputTree->GetBranch(
prod.branchName().c_str())
203 if (theBranch !=
nullptr) {
209 if (
b.match(
prod.branchName())) {
227 auto const& branchToChildMap =
fb.branchChildren().childLookup();
228 for (
auto const& parentToChildren : branchToChildMap) {
229 for (
auto const&
child : parentToChildren.second) {
251 BranchType branchType = static_cast<BranchType>(
i);
252 TTree* theInputTree =
253 (branchType ==
InEvent ?
fb.tree() : (branchType ==
InLumi ?
fb.lumiTree() :
fb.runTree()));
278 statusFile <<
e.id() <<
" time: " << std::setprecision(3) <<
TimeOfDay() <<
'\n';
337 <<
"Please report this to the core framework developers.\n";
345 std::ostringstream ofilename;
346 std::ostringstream lfilename;
347 ofilename << fileBase;
358 return std::make_pair(ofilename.str(), lfilename.str());
373 if (provenance !=
nullptr) {
399 auto const*
ep = dynamic_cast<EventPrincipal const*>(&iPrincipal);
401 auto pr =
ep->productProvenanceRetrieverPtr();
403 pr->readProvenanceAsync(iTask, &iModuleCallingContext);
412 std::set<ParentageID>
const& eIds = branchParent.second;
413 for (
auto const& eId : eIds) {
427 desc.setComment(
"Writes runs, lumis, and events into EDM/ROOT files.");
428 desc.addUntracked<
std::string>(
"fileName")->setComment(
"Name of output file.");
430 ->setComment(
"Passed to job report. Otherwise unused by module.");
432 ->setComment(
"Passed to job report. Otherwise unused by module.");
433 desc.addUntracked<
int>(
"maxSize", 0x7f000000)
435 "Maximum output file size, in kB.\n"
436 "If over maximum, new output file will be started at next input file transition.");
437 desc.addUntracked<
int>(
"compressionLevel", 9)->setComment(
"ROOT compression level of output file.");
439 ->setComment(
"Algorithm used to compress data in the ROOT output file, allowed values are ZLIB and LZMA");
440 desc.addUntracked<
int>(
"basketSize", 16384)->setComment(
"Default ROOT basket size in output file.");
441 desc.addUntracked<
int>(
"eventAutoFlushCompressedSize", 20 * 1024 * 1024)
443 "Set ROOT auto flush stored data size (in bytes) for event TTree. The value sets how large the compressed "
444 "buffer is allowed to get. The uncompressed buffer can be quite a bit larger than this depending on the "
445 "average compression ratio. The value of -1 just uses ROOT's default value. The value of 0 turns off this "
447 desc.addUntracked<
int>(
"splitLevel", 99)->setComment(
"Default ROOT branch split level in output file.");
450 "Legal values: 'sortbasketsbyoffset', 'sortbasketsbybranch', 'sortbasketsbyentry'.\n"
451 "Used by ROOT when fast copying. Affects performance.");
452 desc.addUntracked<
int>(
"treeMaxVirtualSize", -1)
453 ->setComment(
"Size of ROOT TTree TBasket cache. Affects performance.");
454 desc.addUntracked<
bool>(
"fastCloning",
true)
456 "True: Allow fast copying, if possible.\n"
457 "False: Disable fast copying.");
458 desc.addUntracked<
bool>(
"overrideInputFileSplitLevels",
false)
460 "False: Use branch split levels and basket sizes from input file, if possible.\n"
461 "True: Always use specified or default split levels and basket sizes.");
462 desc.addUntracked<
bool>(
"writeStatusFile",
false)
463 ->setComment(
"Write a status file. Intended for use by workflow management.");
466 "Determines handling of per product per event metadata. Options are:\n"
467 "'NONE': Keep all of it.\n"
468 "'DROPPED': Keep it for products produced in current process and all kept products. Drop it for dropped "
469 "products produced in prior processes.\n"
470 "'PRIOR': Keep it for products produced in current process. Drop it for products produced in prior "
472 "'ALL': Drop all of it.");
477 ->setComment(
"PSet is only used by Data Operations and not by this module.");
482 "Name of branch needing a special split level. The name can contain wildcards '*' and '?'");
483 specialSplit.
addUntracked<
int>(
"splitLevel")->setComment(
"The special split level for the branch");
484 desc.addVPSetUntracked(
"overrideBranchesSplitLevel", specialSplit, std::vector<ParameterSet>());
486 OutputModule::fillDescription(
desc);
492 descriptions.
add(
"edmOutput",
desc);
~PoolOutputModule() override
int remainingEvents() const
std::vector< BranchID > const & parents() const
void updateBranchParents(EventForOutput const &e)
BranchChildren branchChildren_
void respondToOpenInputFile(FileBlock const &fb) override
SubProcessParentageHelper const * subProcessParentageHelper() const
BranchID branchID() const
std::regex convert(std::string const &iGlobBranchExpression) const
std::vector< std::string > processesWithSelectedMergeableRunProducts_
void sort_all(RandomAccessSequence &s)
wrappers for std::sort
std::vector< OutputItem > OutputItemList
EventID const & min(EventID const &lh, EventID const &rh)
edm::propagate_const< std::unique_ptr< RootOutputFile > > rootOutputFile_
void openFile(FileBlock const &fb) override
void writeParameterSetRegistry()
static ParentageRegistry * instance()
std::string const & currentFileName() const
bool initializedFromInput_
void preActionBeforeRunEventAsync(WaitingTask *iTask, ModuleCallingContext const &iModuleCallingContext, Principal const &iPrincipal) const override
void fillSelectedItemList(BranchType branchtype, TTree *theInputTree)
bool match(std::string const &iBranchName) const
void setProcessesWithSelectedMergeableRunProducts(std::set< std::string > const &) override
void updateBranchParentsForOneBranch(ProductProvenanceRetriever const *provRetriever, BranchID const &branchID)
BranchDescription const * branchDescription_
virtual void doExtrasAfterCloseFile()
std::string const & BranchTypeToAuxiliaryBranchName(BranchType const &branchType)
std::vector< SpecialSplitLevelForBranch > specialSplitLevelForBranches_
std::vector< std::pair< BranchDescription const *, EDGetToken > > SelectedProducts
PoolOutputModule(ParameterSet const &ps)
int const & basketSize() const
const std::string moduleLabel_
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void writeFileFormatVersion()
const std::string names[nVars_]
bool operator()(OutputItem const &lh, OutputItem const &rh) const
OutputItemListArray selectedOutputItemList_
std::vector< BranchID > producedBranches_
BranchParents branchParents_
static const int invalidSplitLevel
DropMetaData const & dropMetaData() const
bool wantAllEvents() const
std::shared_ptr< std::map< std::string, int > > treeMap_
bool overrideInputFileSplitLevels_
void writeThinnedAssociationsHelper()
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
void writeIndexIntoFile()
bool getMapped(key_type const &k, value_type &result) const
SelectedProductsForBranchType const & keptProducts() const
void writeProductDependencies()
std::string const & branchName() const
ParentageID const & parentageID() const
bool isFileOpen() const override
void writeStoredMergeableRunProductMetadata()
void writeRun(RunForOutput const &r) override
void beginInputFile(FileBlock const &fb)
std::string const & fileName() const
void writeProductDescriptionRegistry()
void writeBranchIDListRegistry()
void fillDependencyGraph()
static void fillDescriptions(ConfigurationDescriptions &descriptions)
bool shouldWeCloseFile() const override
allow inheriting classes to override but still be able to call this method in the overridden version
void reallyCloseFile() override
std::string statusFileName_
std::string const & logicalFileName() const
static const int invalidBasketSize
ProductProvenance const * branchIDToProvenanceForProducedOnly(BranchID const &bid) const
void writeLuminosityBlock(LuminosityBlockForOutput const &lb) override
void writeProcessHistoryRegistry()
void respondToCloseInputFile(FileBlock const &fb) override
DropMetaData dropMetaData_
void writeFileIdentifier()
void write(EventForOutput const &e) override
void writeParentageRegistry()
static void fillDescription(ParameterSetDescription &desc)
void insertChild(BranchID parent, BranchID child)
virtual std::pair< std::string, std::string > physicalAndLogicalNameForNewFile()
int const & splitLevel() const