CMS 3D CMS Logo

EdmProvDump.cc
Go to the documentation of this file.
17 
21 
22 #include "TError.h"
23 #include "TFile.h"
24 #include "TTree.h"
25 
26 #include "boost/program_options.hpp"
27 
28 #include <cassert>
29 #include <iostream>
30 #include <memory>
31 #include <map>
32 #include <set>
33 #include <sstream>
34 #include <vector>
35 
36 typedef std::map<std::string, std::vector<edm::BranchDescription> > IdToBranches;
37 typedef std::map<std::pair<std::string, std::string>, IdToBranches> ModuleToIdBranches;
38 
39 static std::ostream& prettyPrint(std::ostream& oStream, edm::ParameterSet const& iPSet, std::string const& iIndent, std::string const& iIndentDelta);
40 
41 static std::string const triggerResults = std::string("TriggerResults");
42 static std::string const triggerPaths = std::string("@trigger_paths");
43 static std::string const source = std::string("source");
44 static std::string const input = std::string("@main_input");
45 
46 namespace {
47 typedef std::map<edm::ParameterSetID, edm::ParameterSetBlob> ParameterSetMap;
48 
49  class HistoryNode {
50  public:
51  HistoryNode() :
52  config_(),
53  simpleId_(0) {
54  }
55 
56  HistoryNode(edm::ProcessConfiguration const& iConfig, unsigned int iSimpleId) :
57  config_(iConfig),
58  simpleId_(iSimpleId) {
59  }
60 
61  void addChild(HistoryNode const& child) {
62  children_.push_back(child);
63  }
64 
65  edm::ParameterSetID const&
66  parameterSetID() const {
67  return config_.parameterSetID();
68  }
69 
70  std::string const&
71  processName() const {
72  return config_.processName();
73  }
74 
75  std::size_t
76  size() const {
77  return children_.size();
78  }
79 
80  HistoryNode *
81  lastChildAddress() {
82  return &children_.back();
83  }
84 
85  typedef std::vector<HistoryNode>::const_iterator const_iterator;
86  typedef std::vector<HistoryNode>::iterator iterator;
87 
88  iterator begin() { return children_.begin();}
89  iterator end() { return children_.end();}
90 
91  const_iterator begin() const { return children_.begin();}
92  const_iterator end() const { return children_.end();}
93 
94  void print(std::ostream& os) const {
95  os << config_.processName()
96  << " '" << config_.passID() << "' '"
97  << config_.releaseVersion() << "' ["
98  << simpleId_ << "] ("
99  << config_.parameterSetID() << ")"
100  << std::endl;
101  }
102 
103  void printHistory(std::string const& iIndent = std::string(" ")) const;
104  void printEventSetupHistory(ParameterSetMap const& iPSM,
105  std::vector<std::string> const& iFindMatch,
106  std::ostream& oErrorLog) const;
107  void printOtherModulesHistory(ParameterSetMap const& iPSM,
108  ModuleToIdBranches const&,
109  std::vector<std::string> const& iFindMatch,
110  std::ostream& oErrorLog) const;
111  void printTopLevelPSetsHistory(ParameterSetMap const& iPSM,
112  std::vector<std::string> const& iFindMatch,
113  std::ostream& oErrorLog) const;
114 
116  configurationID() const {
117  return config_.id();
118  }
119 
120  static bool sort_;
121  private:
123  std::vector<HistoryNode> children_;
124  unsigned int simpleId_;
125  };
126 
127  std::ostream& operator<<(std::ostream& os, HistoryNode const& node) {
128  node.print(os);
129  return os;
130  }
131  bool HistoryNode::sort_ = false;
132 }
133 
134 std::ostream&
135 operator<<(std::ostream& os, edm::ProcessHistory& iHist) {
136  std::string const indentDelta(" ");
137  std::string indent = indentDelta;
138  for(auto const& process : iHist) {
139  os << indent
140  << process.processName() << " '"
141  << process.passID() << "' '"
142  << process.releaseVersion() << "' ("
143  << process.parameterSetID() << ")"
144  << std::endl;
145  indent += indentDelta;
146  }
147  return os;
148 }
149 
150 void HistoryNode::printHistory(std::string const& iIndent) const {
151  std::string const indentDelta(" ");
152  const std::string& indent = iIndent;
153  for(auto const& item : *this) {
154  std::cout << indent << item;
155  item.printHistory(indent + indentDelta);
156  }
157 }
158 
160  std::string const& iCompName,
161  edm::ParameterSet const& iProcessConfig,
162  std::string const& iProcessName) {
163  std::ostringstream result;
164  edm::ParameterSet const& pset = iProcessConfig.getParameterSet(iCompName);
165  std::string name(pset.getParameter<std::string>("@module_label"));
166  if(name.empty()) {
167  name = pset.getParameter<std::string>("@module_type");
168  }
169 
170  result << iType << ": " << name << " " << iProcessName << "\n"
171  << " parameters: ";
172  prettyPrint(result, pset, " ", " ");
173  return result.str();
174 }
175 
176 void HistoryNode::printEventSetupHistory(ParameterSetMap const& iPSM,
177  std::vector<std::string> const& iFindMatch,
178  std::ostream& oErrorLog) const {
179  for(auto const& itH : *this) {
180  //Get ParameterSet for process
181  ParameterSetMap::const_iterator itFind = iPSM.find(itH.parameterSetID());
182  if(itFind == iPSM.end()){
183  oErrorLog << "No ParameterSetID for " << itH.parameterSetID() << std::endl;
184  } else {
185  edm::ParameterSet processConfig(itFind->second.pset());
186  std::vector<std::string> sourceStrings, moduleStrings;
187  //get the sources
188  std::vector<std::string> sources = processConfig.getParameter<std::vector<std::string> >("@all_essources");
189  for(auto& itM : sources) {
190  std::string retValue = eventSetupComponent("ESSource",
191  itM,
192  processConfig,
193  itH.processName());
194  bool foundMatch = true;
195  if(!iFindMatch.empty()) {
196  for (auto const& stringToFind : iFindMatch) {
197  if (retValue.find(stringToFind) == std::string::npos) {
198  foundMatch = false;
199  break;
200  }
201  }
202  }
203  if (foundMatch) {
204  sourceStrings.push_back(std::move(retValue));
205  }
206  }
207  //get the modules
208  std::vector<std::string> modules = processConfig.getParameter<std::vector<std::string> >("@all_esmodules");
209  for(auto& itM : modules) {
210  std::string retValue = eventSetupComponent("ESModule",
211  itM,
212  processConfig,
213  itH.processName());
214  bool foundMatch = true;
215  if(!iFindMatch.empty()) {
216  for (auto const& stringToFind : iFindMatch) {
217  if (retValue.find(stringToFind) == std::string::npos) {
218  foundMatch = false;
219  break;
220  }
221  }
222  }
223  if (foundMatch) {
224  moduleStrings.push_back(std::move(retValue));
225  }
226  }
227  if(sort_) {
228  std::sort(sourceStrings.begin(), sourceStrings.end());
229  std::sort(moduleStrings.begin(), moduleStrings.end());
230  }
231  std::copy(sourceStrings.begin(), sourceStrings.end(),
232  std::ostream_iterator<std::string>(std::cout, "\n"));
233  std::copy(moduleStrings.begin(), moduleStrings.end(),
234  std::ostream_iterator<std::string>(std::cout, "\n"));
235 
236  }
237  itH.printEventSetupHistory(iPSM, iFindMatch, oErrorLog);
238  }
239 }
240 
242  edm::ParameterSet const& iProcessConfig,
243  std::string const& iProcessName) {
244  std::ostringstream result;
245  edm::ParameterSet const& pset = iProcessConfig.getParameterSet(iCompName);
246  std::string label(pset.getParameter<std::string>("@module_label"));
247 
248  result << "Module: " << label << " " << iProcessName << "\n" << " parameters: ";
249  prettyPrint(result, pset, " ", " ");
250  return result.str();
251 }
252 
253 void HistoryNode::printOtherModulesHistory(ParameterSetMap const& iPSM,
254  ModuleToIdBranches const& iModules,
255  std::vector<std::string> const& iFindMatch,
256  std::ostream& oErrorLog) const {
257  for(auto const& itH : *this) {
258  //Get ParameterSet for process
259  ParameterSetMap::const_iterator itFind = iPSM.find(itH.parameterSetID());
260  if(itFind == iPSM.end()){
261  oErrorLog << "No ParameterSetID for " << itH.parameterSetID() << std::endl;
262  } else {
263  edm::ParameterSet processConfig(itFind->second.pset());
264  std::vector<std::string> moduleStrings;
265  //get all modules
266  std::vector<std::string> modules = processConfig.getParameter<std::vector<std::string> >("@all_modules");
267  for(auto& itM : modules) {
268  //if we didn't already handle this from the branches
269  if(iModules.end() == iModules.find(std::make_pair(itH.processName(), itM))) {
271  itM,
272  processConfig,
273  itH.processName()));
274  bool foundMatch = true;
275  if(!iFindMatch.empty()) {
276  for (auto const& stringToFind : iFindMatch) {
277  if (retValue.find(stringToFind) == std::string::npos) {
278  foundMatch = false;
279  break;
280  }
281  }
282  }
283  if (foundMatch) {
284  moduleStrings.push_back(std::move(retValue));
285  }
286  }
287  }
288  if(sort_) {
289  std::sort(moduleStrings.begin(), moduleStrings.end());
290  }
291  std::copy(moduleStrings.begin(), moduleStrings.end(),
292  std::ostream_iterator<std::string>(std::cout, "\n"));
293  }
294  itH.printOtherModulesHistory(iPSM, iModules, iFindMatch, oErrorLog);
295  }
296 }
297 
298 static void appendToSet(std::set<std::string>&iSet, std::vector<std::string> const& iFrom){
299  for(auto const& n : iFrom) {
300  iSet.insert(n);
301  }
302 }
303 
305  edm::ParameterSet const& iProcessConfig,
306  std::string const& iProcessName) {
307  std::ostringstream result;
308  edm::ParameterSet const& pset = iProcessConfig.getParameterSet(iName);
309 
310  result << "PSet: " << iName << " " << iProcessName << "\n" << " parameters: ";
311  prettyPrint(result, pset, " ", " ");
312  return result.str();
313 }
314 
315 
316 void HistoryNode::printTopLevelPSetsHistory(ParameterSetMap const& iPSM,
317  std::vector<std::string> const& iFindMatch,
318  std::ostream& oErrorLog) const {
319  for(auto const& itH : *this) {
320  //Get ParameterSet for process
321  ParameterSetMap::const_iterator itFind = iPSM.find(itH.parameterSetID());
322  if(itFind == iPSM.end()){
323  oErrorLog << "No ParameterSetID for " << itH.parameterSetID() << std::endl;
324  } else {
325  edm::ParameterSet processConfig(itFind->second.pset());
326  //Need to get the names of PSets which are used by the framework (e.g. names of modules)
327  std::set<std::string> namesToExclude;
328  appendToSet(namesToExclude,processConfig.getParameter<std::vector<std::string> >("@all_modules"));
329  appendToSet(namesToExclude,processConfig.getParameter<std::vector<std::string> >("@all_sources"));
330  appendToSet(namesToExclude,processConfig.getParameter<std::vector<std::string> >("@all_loopers"));
331  //appendToSet(namesToExclude,processConfig.getParameter<std::vector<std::string> >("@all_subprocesses"));//untracked
332  appendToSet(namesToExclude,processConfig.getParameter<std::vector<std::string> >("@all_esmodules"));
333  appendToSet(namesToExclude,processConfig.getParameter<std::vector<std::string> >("@all_essources"));
334  appendToSet(namesToExclude,processConfig.getParameter<std::vector<std::string> >("@all_esprefers"));
335  if (processConfig.existsAs<std::vector<std::string>>("all_aliases")) {
336  appendToSet(namesToExclude,processConfig.getParameter<std::vector<std::string> >("@all_aliases"));
337  }
338 
339  std::vector<std::string> allNames{};
340  processConfig.getParameterSetNames(allNames);
341 
342  std::vector<std::string> results;
343  for(auto const& name: allNames){
344  if (name.empty() || '@' == name[0] || namesToExclude.find(name)!=namesToExclude.end()) {
345  continue;
346  }
347  std::string retValue = topLevelPSet(name,processConfig,itH.processName());
348 
349  bool foundMatch = true;
350  if(!iFindMatch.empty()) {
351  for (auto const& stringToFind : iFindMatch) {
352  if (retValue.find(stringToFind) == std::string::npos) {
353  foundMatch = false;
354  break;
355  }
356  }
357  }
358  if (foundMatch) {
359  results.push_back(std::move(retValue));
360  }
361  }
362  if(sort_) {
363  std::sort(results.begin(), results.end());
364  }
365  std::copy(results.begin(), results.end(),
366  std::ostream_iterator<std::string>(std::cout, "\n"));
367  }
368  itH.printTopLevelPSetsHistory(iPSM, iFindMatch, oErrorLog);
369  }
370 }
371 
372 
373 namespace {
374  std::unique_ptr<TFile>
375  makeTFileWithLookup(std::string const& filename) {
376  // See if it is a logical file name.
377  std::unique_ptr<edm::SiteLocalConfig> slcptr = std::make_unique<edm::service::SiteLocalConfigService>(edm::ParameterSet());
378  auto slc = std::make_shared<edm::serviceregistry::ServiceWrapper<edm::SiteLocalConfig> >(std::move(slcptr));
381  std::string override;
382  std::vector<std::string> fileNames;
383  fileNames.push_back(filename);
384  edm::InputFileCatalog catalog(fileNames, override, true);
385  if(catalog.fileNames()[0] == filename) {
386  throw cms::Exception("FileNotFound", "RootFile::RootFile()")
387  << "File " << filename << " was not found or could not be opened.\n";
388  }
389  // filename is a valid LFN.
390  std::unique_ptr<TFile> result(TFile::Open(catalog.fileNames()[0].c_str()));
391  if(!result.get()) {
392  throw cms::Exception("FileNotFound", "RootFile::RootFile()")
393  << "File " << fileNames[0] << " was not found or could not be opened.\n";
394  }
395  return result;
396  }
397 
398  // Open the input file, returning the TFile object that represents it.
399  // The returned unique_ptr will not be null. The argument must not be null.
400  // We first try the file name as a PFN, so that the catalog and related
401  // services are not loaded unless needed.
402  std::unique_ptr<TFile>
403  makeTFile(std::string const& filename) {
404  gErrorIgnoreLevel = kFatal;
405  std::unique_ptr<TFile> result(TFile::Open(filename.c_str()));
407  if(!result.get()) {
408  // Try again with catalog.
409  return makeTFileWithLookup(filename);
410  }
411  return result;
412  }
413 }
414 
415 
416 static std::ostream& prettyPrint(std::ostream& os, edm::ParameterSetEntry const& psetEntry, std::string const& iIndent, std::string const& iIndentDelta) {
417  char const* trackiness = (psetEntry.isTracked()?"tracked":"untracked");
418  os << "PSet " << trackiness << " = (";
419  prettyPrint(os, psetEntry.pset(), iIndent + iIndentDelta, iIndentDelta);
420  os << ")";
421  return os;
422 }
423 
424 static std::ostream& prettyPrint(std::ostream& os, edm::VParameterSetEntry const& vpsetEntry, std::string const& iIndent, std::string const& iIndentDelta) {
425  std::vector<edm::ParameterSet> const& vps = vpsetEntry.vpset();
426  os << "VPSet " << (vpsetEntry.isTracked() ? "tracked" : "untracked") << " = ({" << std::endl;
427  std::string newIndent = iIndent+iIndentDelta;
429  std::string const between(",\n");
430  for(auto const& item : vps) {
431  os << start << newIndent;
432  prettyPrint(os, item, newIndent, iIndentDelta);
433  start = between;
434  }
435  if(!vps.empty()) {
436  os << std::endl;
437  }
438  os << iIndent<< "})";
439  return os;
440 }
441 
442 
443 static std::ostream& prettyPrint(std::ostream& oStream, edm::ParameterSet const& iPSet, std::string const& iIndent, std::string const& iIndentDelta) {
444  std::string newIndent = iIndent+iIndentDelta;
445 
446  oStream << "{" << std::endl;
447  for(auto const& item : iPSet.tbl()) {
448  // indent a bit
449  oStream << newIndent<< item.first << ": " << item.second << std::endl;
450  }
451  for(auto const& item : iPSet.psetTable()) {
452  // indent a bit
453  edm::ParameterSetEntry const& pe = item.second;
454  oStream << newIndent << item.first << ": ";
455  prettyPrint(oStream, pe, iIndent, iIndentDelta);
456  oStream<< std::endl;
457  }
458  for(auto const& item : iPSet.vpsetTable()) {
459  // indent a bit
460  edm::VParameterSetEntry const& pe = item.second;
461  oStream << newIndent << item.first << ": ";
462  prettyPrint(oStream, pe, newIndent, iIndentDelta);
463  oStream<< std::endl;
464  }
465  oStream << iIndent<< "}";
466 
467  return oStream;
468 }
469 
470 
472 public:
473  // It is illegal to call this constructor with a null pointer; a
474  // legal C-style string is required.
476  bool showDependencies,
477  bool extendedAncestors,
478  bool extendedDescendants,
479  bool excludeESModules,
480  bool showAllModules,
481  bool showTopLevelPSets,
482  std::vector<std::string> const& findMatch,
483  bool dontPrintProducts,
484  std::string const& dumpPSetID);
485 
486  ProvenanceDumper(ProvenanceDumper const&) = delete; // Disallow copying and moving
487  ProvenanceDumper& operator=(ProvenanceDumper const&) = delete; // Disallow copying and moving
488 
489  // Write the provenenace information to the given stream.
490  void dump();
491  void printErrors(std::ostream& os);
492  int exitCode() const;
493 
494 private:
495 
496  void addAncestors(edm::BranchID const& branchID,
497  std::set<edm::BranchID>& ancestorBranchIDs,
498  std::ostringstream& sout,
499  std::map<edm::BranchID, std::set<edm::ParentageID> >& perProductParentage) const;
500 
501  void addDescendants(edm::BranchID const& branchID, std::set<edm::BranchID>& descendantBranchIDs,
502  std::ostringstream& sout,
503  std::map<edm::BranchID, std::set<edm::BranchID> >& parentToChildren) const;
504 
508  std::stringstream errorLog_;
513  ParameterSetMap psm_;
514  HistoryNode historyGraph_;
522  std::vector<std::string> findMatch_;
525 
526  void work_();
527  void dumpProcessHistory_();
528  void dumpEventFilteringParameterSets_(TFile * file);
529  void dumpEventFilteringParameterSets(edm::EventSelectionIDVector const& ids);
530  void dumpParameterSetForID_(edm::ParameterSetID const& id);
531 };
532 
534  bool showDependencies,
535  bool extendedAncestors,
536  bool extendedDescendants,
537  bool excludeESModules,
538  bool showOtherModules,
539  bool showTopLevelPSets,
540  std::vector<std::string> const& findMatch,
541  bool dontPrintProducts,
542  std::string const& dumpPSetID) :
543  filename_(filename),
544  inputFile_(makeTFile(filename)),
545  exitCode_(0),
546  errorLog_(),
547  errorCount_(0),
548  showDependencies_(showDependencies),
549  extendedAncestors_(extendedAncestors),
550  extendedDescendants_(extendedDescendants),
551  excludeESModules_(excludeESModules),
552  showOtherModules_(showOtherModules),
553  productRegistryPresent_(true),
554  showTopLevelPSets_(showTopLevelPSets),
555  findMatch_(findMatch),
556  dontPrintProducts_(dontPrintProducts),
557  dumpPSetID_(dumpPSetID) {
558 }
559 
560 void
562  work_();
563 }
564 
565 void
566 ProvenanceDumper::printErrors(std::ostream& os) {
567  if(errorCount_ > 0) os << errorLog_.str() << std::endl;
568 }
569 
570 int
572  return exitCode_;
573 }
574 
575 void
577  edm::EventSelectionIDVector::size_type num_ids = ids.size();
578  if(num_ids == 0) {
579  std::cout << "No event filtering information is available.\n";
580  std::cout << "------------------------------\n";
581  } else {
582  std::cout << "Event filtering information for "
583  << num_ids
584  << " processing steps is available.\n"
585  << "The ParameterSets will be printed out, "
586  << "with the oldest printed first.\n";
587  for(edm::EventSelectionIDVector::size_type i = 0; i != num_ids; ++i) {
589  }
590  }
591 }
592 
593 void
595 
596  TTree* history = dynamic_cast<TTree*>(file->Get(edm::poolNames::eventHistoryTreeName().c_str()));
597  if(history != nullptr) {
598  edm::History h;
599  edm::History* ph = &h;
600 
601  history->SetBranchAddress(edm::poolNames::eventHistoryBranchName().c_str(), &ph);
602  if(history->GetEntry(0) <= 0) {
603  std::cout << "No event filtering information is available; the event history tree has no entries\n";
604  } else {
606  }
607  } else {
608  TTree* events = dynamic_cast<TTree*>(file->Get(edm::poolNames::eventTreeName().c_str()));
609  assert (events != nullptr);
610  TBranch* eventSelectionsBranch = events->GetBranch(edm::poolNames::eventSelectionsBranchName().c_str());
611  if (eventSelectionsBranch == nullptr) return;
614  eventSelectionsBranch->SetAddress(&pids);
615  if(eventSelectionsBranch->GetEntry(0) <= 0) {
616  std::cout << "No event filtering information is available; the event selections branch has no entries\n";
617  } else {
619  }
620  }
621 }
622 
623 void
625  std::cout << "ParameterSetID: " << id << '\n';
626  if(id.isValid()) {
627  ParameterSetMap::const_iterator i = psm_.find(id);
628  if(i == psm_.end()) {
629  std::cout << "We are unable to find the corresponding ParameterSet\n";
631  empty.registerIt();
632  if(id == empty.id()) {
633  std::cout << "But it would have been empty anyway\n";
634  }
635  } else {
636  edm::ParameterSet ps(i->second.pset());
637  prettyPrint(std::cout, ps, " ", " ");
638  std::cout<< '\n';
639  }
640  } else {
641  std::cout << "This ID is not valid\n";
642  }
643  std::cout << " -------------------------\n";
644 }
645 
646 void
648  std::cout << "Processing History:" << std::endl;
649  std::map<edm::ProcessConfigurationID, unsigned int> simpleIDs;
650  for(auto const& ph : phv_) {
651  //loop over the history entries looking for matches
652  HistoryNode* parent = &historyGraph_;
653  for(auto const& pc : ph) {
654  if(parent->size() == 0) {
655  unsigned int id = simpleIDs[pc.id()];
656  if(0 == id) {
657  id = 1;
658  simpleIDs[pc.id()] = id;
659  }
660  parent->addChild(HistoryNode(pc, id));
661  parent = parent->lastChildAddress();
662  } else {
663  //see if this is unique
664  bool isUnique = true;
665  for(auto& child : *parent) {
666  if(child.configurationID() == pc.id()) {
667  isUnique = false;
668  parent = &child;
669  break;
670  }
671  }
672  if(isUnique) {
673  simpleIDs[pc.id()] = parent->size() + 1;
674  parent->addChild(HistoryNode(pc, simpleIDs[pc.id()]));
675  parent = parent->lastChildAddress();
676  }
677  }
678  }
679  }
680  historyGraph_.printHistory();
681 }
682 
683 void
685 
686  TTree* meta = dynamic_cast<TTree*>(inputFile_->Get(edm::poolNames::metaDataTreeName().c_str()));
687  assert(nullptr != meta);
688 
689  edm::ProductRegistry* pReg = &reg_;
690  if(meta->FindBranch(edm::poolNames::productDescriptionBranchName().c_str()) != nullptr) {
691  meta->SetBranchAddress(edm::poolNames::productDescriptionBranchName().c_str(), &pReg);
692  } else {
693  productRegistryPresent_ = false;
694  }
695 
696  ParameterSetMap* pPsm = &psm_;
697  if(meta->FindBranch(edm::poolNames::parameterSetMapBranchName().c_str()) != nullptr) {
698  meta->SetBranchAddress(edm::poolNames::parameterSetMapBranchName().c_str(), &pPsm);
699  } else {
700  TTree* psetTree = dynamic_cast<TTree *>(inputFile_->Get(edm::poolNames::parameterSetsTreeName().c_str()));
701  assert(nullptr != psetTree);
702  typedef std::pair<edm::ParameterSetID, edm::ParameterSetBlob> IdToBlobs;
703  IdToBlobs idToBlob;
704  IdToBlobs* pIdToBlob = &idToBlob;
705  psetTree->SetBranchAddress(edm::poolNames::idToParameterSetBlobsBranchName().c_str(), &pIdToBlob);
706  for(long long i = 0; i != psetTree->GetEntries(); ++i) {
707  psetTree->GetEntry(i);
708  psm_.insert(idToBlob);
709  }
710  }
711 
713  if(meta->FindBranch(edm::poolNames::processHistoryBranchName().c_str()) != nullptr) {
714  meta->SetBranchAddress(edm::poolNames::processHistoryBranchName().c_str(), &pPhv);
715  }
716 
718  edm::ProcessHistoryMap* pPhm = &phm;
719  if(meta->FindBranch(edm::poolNames::processHistoryMapBranchName().c_str()) != nullptr) {
720  meta->SetBranchAddress(edm::poolNames::processHistoryMapBranchName().c_str(), &pPhm);
721  }
722 
723  if(meta->FindBranch(edm::poolNames::moduleDescriptionMapBranchName().c_str()) != nullptr) {
724  if(meta->GetBranch(edm::poolNames::moduleDescriptionMapBranchName().c_str())->GetSplitLevel() != 0) {
725  meta->SetBranchStatus((edm::poolNames::moduleDescriptionMapBranchName() + ".*").c_str(), false);
726  } else {
727  meta->SetBranchStatus(edm::poolNames::moduleDescriptionMapBranchName().c_str(), false);
728  }
729  }
730 
731  meta->GetEntry(0);
732  assert(nullptr != pReg);
733 
735  for(auto const& item : psm_) {
736  edm::ParameterSet pset(item.second.pset());
737  pset.setID(item.first);
738  psetRegistry.insertMapped(pset);
739  }
740 
741 
742  if(!phv_.empty()) {
743  for(auto const& history : phv_) {
744  for(auto const& process : history) {
745  phc_.push_back(process);
746  }
747  }
749  phc_.erase(std::unique(phc_.begin(), phc_.end()), phc_.end());
750 
751  }
752  // backward compatibility
753  else if(!phm.empty()) {
754  for(auto const& history : phm) {
755  phv_.push_back(history.second);
756  for(auto const& process : history.second) {
757  phc_.push_back(process);
758  }
759  }
761  phc_.erase(std::unique(phc_.begin(), phc_.end()), phc_.end());
762  }
763 
764  if(!dumpPSetID_.empty()) {
765  edm::ParameterSetID psetID;
766  try {
768  } catch (cms::Exception const& x) {
769  throw cms::Exception("Command Line Argument") << "Illegal ParameterSetID string. It should contain 32 hexadecimal characters";
770  }
771  dumpParameterSetForID_(psetID);
772  return;
773  }
774 
775  //Prepare the parentage information if requested
776  std::map<edm::BranchID, std::set<edm::ParentageID> > perProductParentage;
777 
779  TTree* parentageTree = dynamic_cast<TTree*>(inputFile_->Get(edm::poolNames::parentageTreeName().c_str()));
780  if(nullptr == parentageTree) {
781  std::cerr << "ERROR, no Parentage tree available so cannot show dependencies, ancestors, or descendants.\n";
782  std::cerr << "Possibly this is not a standard EDM format file. For example, dependency, ancestor, and\n";
783  std::cerr << "descendant options to edmProvDump will not work with nanoAOD format files.\n\n";
784  showDependencies_ = false;
785  extendedAncestors_ = false;
786  extendedDescendants_ = false;
787  } else {
788 
790 
791  std::vector<edm::ParentageID> orderedParentageIDs;
792  orderedParentageIDs.reserve(parentageTree->GetEntries());
793  for(Long64_t i = 0, numEntries = parentageTree->GetEntries(); i < numEntries; ++i) {
794  edm::Parentage parentageBuffer;
795  edm::Parentage *pParentageBuffer = &parentageBuffer;
796  parentageTree->SetBranchAddress(edm::poolNames::parentageBranchName().c_str(), &pParentageBuffer);
797  parentageTree->GetEntry(i);
798  registry.insertMapped(parentageBuffer);
799  orderedParentageIDs.push_back(parentageBuffer.id());
800  }
801  parentageTree->SetBranchAddress(edm::poolNames::parentageBranchName().c_str(), nullptr);
802 
803  TTree* eventMetaTree = dynamic_cast<TTree*>(inputFile_->Get(edm::BranchTypeToMetaDataTreeName(edm::InEvent).c_str()));
804  if(nullptr == eventMetaTree) {
805  eventMetaTree = dynamic_cast<TTree*>(inputFile_->Get(edm::BranchTypeToProductTreeName(edm::InEvent).c_str()));
806  }
807  if(nullptr == eventMetaTree) {
808  std::cerr << "ERROR, no '" << edm::BranchTypeToProductTreeName(edm::InEvent)<< "' Tree in file so can not show dependencies\n";
809  showDependencies_ = false;
810  extendedAncestors_ = false;
811  extendedDescendants_ = false;
812  } else {
813  TBranch* storedProvBranch = eventMetaTree->GetBranch(edm::BranchTypeToProductProvenanceBranchName(edm::InEvent).c_str());
814 
815  if(nullptr!=storedProvBranch) {
816  std::vector<edm::StoredProductProvenance> info;
817  std::vector<edm::StoredProductProvenance>* pInfo = &info;
818  storedProvBranch->SetAddress(&pInfo);
819  for(Long64_t i = 0, numEntries = eventMetaTree->GetEntries(); i < numEntries; ++i) {
820  storedProvBranch->GetEntry(i);
821  for(auto const& item : info) {
822  edm::BranchID bid(item.branchID_);
823  perProductParentage[bid].insert(orderedParentageIDs.at(item.parentageIDIndex_));
824  }
825  }
826  } else {
827  //backwards compatible check
828  TBranch* productProvBranch = eventMetaTree->GetBranch(edm::BranchTypeToBranchEntryInfoBranchName(edm::InEvent).c_str());
829  if (nullptr != productProvBranch) {
830  std::vector<edm::ProductProvenance> info;
831  std::vector<edm::ProductProvenance>* pInfo = &info;
832  productProvBranch->SetAddress(&pInfo);
833  for(Long64_t i = 0, numEntries = eventMetaTree->GetEntries(); i < numEntries; ++i) {
834  productProvBranch->GetEntry(i);
835  for(auto const& item : info) {
836  perProductParentage[item.branchID()].insert(item.parentageID());
837  }
838  }
839  } else {
840  std::cerr <<" ERROR, could not find provenance information so can not show dependencies\n";
841  showDependencies_=false;
842  extendedAncestors_ = false;
843  extendedDescendants_ = false;
844  }
845  }
846  }
847  }
848  }
849 
850  std::map<edm::BranchID, std::set<edm::BranchID> > parentToChildren;
852 
853  if (extendedDescendants_) {
854  for (auto const& itParentageSet : perProductParentage) {
855  edm::BranchID childBranchID = itParentageSet.first;
856  for (auto const& itParentageID : itParentageSet.second) {
857  edm::Parentage const* parentage = registry.getMapped(itParentageID);
858  if(nullptr != parentage) {
859  for(auto const& branch : parentage->parents()) {
860  parentToChildren[branch].insert(childBranchID);
861  }
862  } else {
863  std::cerr << " ERROR:parentage info not in registry ParentageID=" << itParentageID << std::endl;
864  }
865  }
866  }
867  }
868 
870 
872 
873 
875  std::cout << "---------Producers with data in file---------" << std::endl;
876  }
877 
878  //using edm::ParameterSetID as the key does not work
879  // typedef std::map<edm::ParameterSetID, std::vector<edm::BranchDescription> > IdToBranches
880  ModuleToIdBranches moduleToIdBranches;
881  //IdToBranches idToBranches;
882 
883  std::map<edm::BranchID, std::string> branchIDToBranchName;
884 
885  for(auto const& processConfig : phc_) {
886  edm::ParameterSet const* processParameterSet = edm::pset::Registry::instance()->getMapped(processConfig.parameterSetID());
887  if(nullptr == processParameterSet || processParameterSet->empty()) {
888  continue;
889  }
890  for(auto& item : reg_.productListUpdator()) {
891  auto& product = item.second;
892  if(product.processName() != processConfig.processName()) {
893  continue;
894  }
895  //force it to rebuild the branch name
896  product.init();
897 
899  branchIDToBranchName[product.branchID()] = product.branchName();
900  }
901  /*
902  std::cout << product.branchName()
903  << " id " << product.productID() << std::endl;
904  */
905  std::string moduleLabel = product.moduleLabel();
906  if(moduleLabel == source) {
907  moduleLabel = input;
908  } else if (moduleLabel == triggerResults) {
909  moduleLabel = triggerPaths;
910  }
911 
912  std::stringstream s;
913 
914  if(processParameterSet->existsAs<edm::ParameterSet>(moduleLabel)) {
915  edm::ParameterSet const& moduleParameterSet = processParameterSet->getParameterSet(moduleLabel);
916  if(!moduleParameterSet.isRegistered()) {
917  edm::ParameterSet moduleParameterSetCopy = processParameterSet->getParameterSet(moduleLabel);
918  moduleParameterSetCopy.registerIt();
919  s << moduleParameterSetCopy.id();
920  } else {
921  s << moduleParameterSet.id();
922  }
923  moduleToIdBranches[std::make_pair(product.processName(), product.moduleLabel())][s.str()].push_back(product);
924  }
925  }
926  }
927 
928  for(auto const& item : moduleToIdBranches) {
929  std::ostringstream sout;
930  sout << "Module: " << item.first.second << " " << item.first.first << std::endl;
931  std::set<edm::BranchID> allBranchIDsForLabelAndProcess;
932  IdToBranches const& idToBranches = item.second;
933  for(auto const& idBranch : idToBranches) {
934  sout << " PSet id:" << idBranch.first << std::endl;
935  if(!dontPrintProducts_) {
936  sout << " products: {" << std::endl;
937  }
938  std::set<edm::BranchID> branchIDs;
939  for(auto const& branch : idBranch.second) {
940  if(!dontPrintProducts_) {
941  sout << " " << branch.branchName() << std::endl;
942  }
943  branchIDs.insert(branch.branchID());
944  allBranchIDsForLabelAndProcess.insert(branch.branchID());
945  }
946  sout << " }" << std::endl;
947  edm::ParameterSetID psid(idBranch.first);
948  ParameterSetMap::const_iterator itpsm = psm_.find(psid);
949  if(psm_.end() == itpsm) {
950  ++errorCount_;
951  errorLog_ << "No ParameterSetID for " << psid << std::endl;
952  exitCode_ = 1;
953  } else {
954  sout << " parameters: ";
955  prettyPrint(sout, edm::ParameterSet((*itpsm).second.pset()), " ", " ");
956  sout << std::endl;
957  }
958  if(showDependencies_) {
959 
960  sout << " dependencies: {" << std::endl;
961  std::set<edm::ParentageID> parentageIDs;
962  for(auto const& branch : branchIDs) {
963 
964  //Save these BranchIDs
965  std::set<edm::ParentageID> const& temp = perProductParentage[branch];
966  parentageIDs.insert(temp.begin(), temp.end());
967  }
968  for(auto const& parentID : parentageIDs) {
969  edm::Parentage const* parentage = registry.getMapped(parentID);
970  if(nullptr != parentage) {
971  for(auto const& branch : parentage->parents()) {
972  sout << " " << branchIDToBranchName[branch] << std::endl;
973  }
974  } else {
975  sout << " ERROR:parentage info not in registry ParentageID=" << parentID << std::endl;
976  }
977  }
978  if(parentageIDs.empty()) {
979  sout << " no dependencies recorded (event may not contain data from this module)" << std::endl;
980  }
981  sout << " }" << std::endl;
982  }
983  } // end loop over PSetIDs
984  if (extendedAncestors_) {
985  sout << " extendedAncestors: {" << std::endl;
986  std::set<edm::BranchID> ancestorBranchIDs;
987  for (auto const& branchID : allBranchIDsForLabelAndProcess) {
988  addAncestors(branchID, ancestorBranchIDs, sout, perProductParentage);
989  }
990  for (auto const& ancestorBranchID : ancestorBranchIDs) {
991  sout << " " << branchIDToBranchName[ancestorBranchID] << "\n";
992  }
993  sout << " }" << std::endl;
994  }
995 
996  if (extendedDescendants_) {
997  sout << " extendedDescendants: {" << std::endl;
998  std::set<edm::BranchID> descendantBranchIDs;
999  for (auto const& branchID : allBranchIDsForLabelAndProcess) {
1000  addDescendants(branchID, descendantBranchIDs, sout, parentToChildren);
1001  }
1002  for (auto const& descendantBranchID : descendantBranchIDs) {
1003  sout << " " << branchIDToBranchName[descendantBranchID] << "\n";
1004  }
1005  sout << " }" << std::endl;
1006  }
1007  bool foundMatch = true;
1008  if(!findMatch_.empty()) {
1009  for (auto const& stringToFind : findMatch_) {
1010  if (sout.str().find(stringToFind) == std::string::npos) {
1011  foundMatch = false;
1012  break;
1013  }
1014  }
1015  }
1016  if (foundMatch) {
1017  std::cout <<sout.str()<<std::endl;
1018  }
1019  } // end loop over module label/process
1020 
1022  std::cout << "---------Other Modules---------" << std::endl;
1023  historyGraph_.printOtherModulesHistory(psm_, moduleToIdBranches, findMatch_, errorLog_);
1024  } else if (!productRegistryPresent_) {
1025  std::cout << "---------All Modules---------" << std::endl;
1026  historyGraph_.printOtherModulesHistory(psm_, moduleToIdBranches, findMatch_, errorLog_);
1027  }
1028 
1029  if(!excludeESModules_) {
1030  std::cout << "---------EventSetup---------" << std::endl;
1031  historyGraph_.printEventSetupHistory(psm_, findMatch_, errorLog_);
1032  }
1033 
1034  if(showTopLevelPSets_) {
1035  std::cout << "---------Top Level PSets---------" << std::endl;
1036  historyGraph_.printTopLevelPSetsHistory(psm_, findMatch_, errorLog_);
1037  }
1038  if(errorCount_ != 0) {
1039  exitCode_ = 1;
1040  }
1041 }
1042 
1043 void
1044 ProvenanceDumper::addAncestors(edm::BranchID const& branchID, std::set<edm::BranchID>& ancestorBranchIDs, std::ostringstream& sout,
1045  std::map<edm::BranchID, std::set<edm::ParentageID> >& perProductParentage) const {
1046 
1048 
1049  std::set<edm::ParentageID> const& parentIDs = perProductParentage[branchID];
1050  for (auto const& parentageID : parentIDs) {
1051  edm::Parentage const* parentage = registry.getMapped(parentageID);
1052  if(nullptr != parentage) {
1053  for(auto const& branch : parentage->parents()) {
1054 
1055  if(ancestorBranchIDs.insert(branch).second) {
1056  addAncestors(branch, ancestorBranchIDs, sout, perProductParentage);
1057  }
1058  }
1059  } else {
1060  sout << " ERROR:parentage info not in registry ParentageID=" << parentageID << std::endl;
1061  }
1062  }
1063 }
1064 
1065 void
1066 ProvenanceDumper::addDescendants(edm::BranchID const& branchID, std::set<edm::BranchID>& descendantBranchIDs, std::ostringstream& sout,
1067  std::map<edm::BranchID, std::set<edm::BranchID> >& parentToChildren) const {
1068 
1069  for (auto const& childBranchID : parentToChildren[branchID]) {
1070  if (descendantBranchIDs.insert(childBranchID).second) {
1071  addDescendants(childBranchID, descendantBranchIDs, sout, parentToChildren);
1072  }
1073  }
1074 }
1075 
1076 static char const* const kSortOpt = "sort";
1077 static char const* const kSortCommandOpt = "sort,s";
1078 static char const* const kDependenciesOpt = "dependencies";
1079 static char const* const kDependenciesCommandOpt = "dependencies,d";
1080 static char const* const kExtendedAncestorsOpt = "extendedAncestors";
1081 static char const* const kExtendedAncestorsCommandOpt = "extendedAncestors,x";
1082 static char const* const kExtendedDescendantsOpt = "extendedDescendants";
1083 static char const* const kExtendedDescendantsCommandOpt = "extendedDescendants,c";
1084 static char const* const kExcludeESModulesOpt = "excludeESModules";
1085 static char const* const kExcludeESModulesCommandOpt = "excludeESModules,e";
1086 static char const* const kShowAllModulesOpt = "showAllModules";
1087 static char const* const kShowAllModulesCommandOpt = "showAllModules,a";
1088 static char const* const kFindMatchOpt = "findMatch";
1089 static char const* const kFindMatchCommandOpt = "findMatch,f";
1090 static char const* const kDontPrintProductsOpt = "dontPrintProducts";
1091 static char const* const kDontPrintProductsCommandOpt = "dontPrintProducts,p";
1092 static char const* const kShowTopLevelPSetsOpt = "showTopLevelPSets";
1093 static char const* const kShowTopLevelPSetsCommandOpt ="showTopLevelPSets,t";
1094 static char const* const kHelpOpt = "help";
1095 static char const* const kHelpCommandOpt = "help,h";
1096 static char const* const kFileNameOpt = "input-file";
1097 static char const* const kDumpPSetIDOpt = "dumpPSetID";
1098 static char const* const kDumpPSetIDCommandOpt = "dumpPSetID,i";
1099 
1100 int main(int argc, char* argv[]) {
1101  using namespace boost::program_options;
1102 
1103  std::string descString(argv[0]);
1104  descString += " [options] <filename>";
1105  descString += "\nAllowed options";
1106  options_description desc(descString);
1107  desc.add_options()
1108  (kHelpCommandOpt, "show help message")
1109  (kSortCommandOpt
1110  , "alphabetially sort EventSetup components")
1112  , "print what data each EDProducer is directly dependent upon")
1113  (kExtendedAncestorsCommandOpt
1114  , "print what data each EDProducer is dependent upon including indirect dependences")
1116  , "print what data depends on the data each EDProducer produces including indirect dependences")
1117  (kExcludeESModulesCommandOpt
1118  , "do not print ES module information")
1120  , "show all modules (not just those that created data in the file)")
1121  (kShowTopLevelPSetsCommandOpt,"show all top level PSets")
1122  (kFindMatchCommandOpt, boost::program_options::value<std::vector<std::string> >(),
1123  "show only modules whose information contains the matching string (or all the matching strings, this option can be repeated with different strings)")
1125  , "do not print products produced by module")
1126  (kDumpPSetIDCommandOpt, value<std::string>()
1127  , "print the parameter set associated with the parameter set ID string (and print nothing else)")
1128  ;
1129  //we don't want users to see these in the help messages since this
1130  // name only exists since the parser needs it
1131  options_description hidden;
1132  hidden.add_options()(kFileNameOpt, value<std::string>(), "file name");
1133 
1134  //full list of options for the parser
1135  options_description cmdline_options;
1136  cmdline_options.add(desc).add(hidden);
1137 
1138  positional_options_description p;
1139  p.add(kFileNameOpt, -1);
1140 
1141  variables_map vm;
1142  try {
1143  store(command_line_parser(argc, argv).options(cmdline_options).positional(p).run(), vm);
1144  notify(vm);
1145  } catch(error const& iException) {
1146  std::cerr << iException.what();
1147  return 1;
1148  }
1149 
1150  if(vm.count(kHelpOpt)) {
1151  std::cout << desc << std::endl;
1152  return 0;
1153  }
1154 
1155  if(vm.count(kSortOpt)) {
1156  HistoryNode::sort_ = true;
1157  }
1158 
1159  bool showDependencies = false;
1160  if(vm.count(kDependenciesOpt)) {
1161  showDependencies = true;
1162  }
1163 
1164  bool extendedAncestors = false;
1165  if(vm.count(kExtendedAncestorsOpt)) {
1166  extendedAncestors = true;
1167  }
1168 
1169  bool extendedDescendants = false;
1170  if(vm.count(kExtendedDescendantsOpt)) {
1171  extendedDescendants = true;
1172  }
1173 
1174  bool excludeESModules = false;
1175  if(vm.count(kExcludeESModulesOpt)) {
1176  excludeESModules = true;
1177  }
1178 
1179  bool showAllModules = false;
1180  if(vm.count(kShowAllModulesOpt)) {
1181  showAllModules = true;
1182  }
1183 
1184  bool showTopLevelPSets = false;
1185  if(vm.count(kShowTopLevelPSetsOpt)) {
1186  showTopLevelPSets=true;
1187  }
1188 
1190  if(vm.count(kFileNameOpt)) {
1191  try {
1192  fileName = vm[kFileNameOpt].as<std::string>();
1193  } catch(boost::bad_any_cast const& e) {
1194  std::cout << e.what() << std::endl;
1195  return 2;
1196  }
1197  } else {
1198  std::cout << "Data file not specified." << std::endl;
1199  std::cout << desc << std::endl;
1200  return 2;
1201  }
1202 
1203  std::string dumpPSetID;
1204  if(vm.count(kDumpPSetIDOpt)) {
1205  try {
1206  dumpPSetID = vm[kDumpPSetIDOpt].as<std::string>();
1207  } catch(boost::bad_any_cast const& e) {
1208  std::cout << e.what() << std::endl;
1209  return 2;
1210  }
1211  }
1212 
1213  std::vector<std::string> findMatch;
1214  if(vm.count(kFindMatchOpt)) {
1215  try {
1216  findMatch = vm[kFindMatchOpt].as<std::vector<std::string> >();
1217  } catch(boost::bad_any_cast const& e) {
1218  std::cout << e.what() << std::endl;
1219  return 2;
1220  }
1221  }
1222 
1223  bool dontPrintProducts = false;
1224  if(vm.count(kDontPrintProductsOpt)) {
1225  dontPrintProducts=true;
1226  }
1227 
1228  //silence ROOT warnings about missing dictionaries
1230 
1231  ProvenanceDumper dumper(fileName, showDependencies, extendedAncestors, extendedDescendants,
1232  excludeESModules, showAllModules, showTopLevelPSets, findMatch, dontPrintProducts, dumpPSetID);
1233  int exitCode(0);
1234  try {
1235  dumper.dump();
1236  exitCode = dumper.exitCode();
1237  }
1238  catch (cms::Exception const& x) {
1239  std::cerr << "cms::Exception caught\n";
1240  std::cerr << x.what() << '\n';
1241  exitCode = 2;
1242  }
1243  catch (std::exception& x) {
1244  std::cerr << "std::exception caught\n";
1245  std::cerr << x.what() << '\n';
1246  exitCode = 3;
1247  }
1248  catch (...) {
1249  std::cerr << "Unknown exception caught\n";
1250  exitCode = 4;
1251  }
1252 
1253  dumper.printErrors(std::cerr);
1254  return exitCode;
1255 }
std::stringstream errorLog_
Definition: EdmProvDump.cc:508
static char const *const kDontPrintProductsCommandOpt
std::vector< ProcessHistory > ProcessHistoryVector
size
Write out results.
T getParameter(std::string const &) const
bool empty() const
Definition: ParameterSet.h:218
std::string const & idToParameterSetBlobsBranchName()
Definition: BranchType.cc:255
std::vector< ProcessConfiguration > ProcessConfigurationVector
std::string const & BranchTypeToMetaDataTreeName(BranchType const &branchType)
Definition: BranchType.cc:107
static const TGPicture * info(bool iBackgroundIsBlack)
static char const *const kDumpPSetIDOpt
static char const *const kDependenciesOpt
std::string const & parentageTreeName()
Definition: BranchType.cc:159
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:186
static char const *const kFindMatchCommandOpt
std::string dumpPSetID_
Definition: EdmProvDump.cc:524
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
def copy(args, dbName)
static char const *const kShowTopLevelPSetsCommandOpt
bool productRegistryPresent_
Definition: EdmProvDump.cc:520
ParameterSetID id() const
ParentageID id() const
Definition: Parentage.cc:23
edm::ProductRegistry reg_
Definition: EdmProvDump.cc:510
ParameterSetMap psm_
Definition: EdmProvDump.cc:513
void addAncestors(edm::BranchID const &branchID, std::set< edm::BranchID > &ancestorBranchIDs, std::ostringstream &sout, std::map< edm::BranchID, std::set< edm::ParentageID > > &perProductParentage) const
void dumpParameterSetForID_(edm::ParameterSetID const &id)
Definition: EdmProvDump.cc:624
static char const *const kHelpOpt
HistoryNode historyGraph_
Definition: EdmProvDump.cc:514
char const * what() const override
Definition: Exception.cc:141
static char const *const kDontPrintProductsOpt
std::string const & eventSelectionsBranchName()
Definition: BranchType.cc:243
S & print(S &os, JobReport::InputFile const &f)
Definition: JobReport.cc:65
void dumpEventFilteringParameterSets_(TFile *file)
Definition: EdmProvDump.cc:594
uint16_t size_type
edm::ProcessHistoryVector phv_
Definition: EdmProvDump.cc:512
static char const *const kDependenciesCommandOpt
std::vector< EventSelectionID > EventSelectionIDVector
static char const *const kHelpCommandOpt
std::string const & parameterSetsTreeName()
Definition: BranchType.cc:251
static std::string const input
Definition: EdmProvDump.cc:44
static char const *const kShowTopLevelPSetsOpt
std::ostream & operator<<(std::ostream &os, edm::ProcessHistory &iHist)
Definition: EdmProvDump.cc:135
std::vector< BranchID > const & parents() const
Definition: Parentage.h:44
static char const *const kShowAllModulesCommandOpt
ParameterSet const & pset() const
returns the PSet
static char const *const kExcludeESModulesCommandOpt
std::string const & processHistoryMapBranchName()
Definition: BranchType.cc:193
edm::propagate_const< std::unique_ptr< TFile > > inputFile_
Definition: EdmProvDump.cc:506
static char const *const kSortOpt
bool getMapped(key_type const &k, value_type &result) const
EventSelectionIDVector const & eventSelectionIDs() const
Definition: History.h:42
static char const *const kExcludeESModulesOpt
std::map< std::pair< std::string, std::string >, IdToBranches > ModuleToIdBranches
Definition: EdmProvDump.cc:37
void dumpEventFilteringParameterSets(edm::EventSelectionIDVector const &ids)
Definition: EdmProvDump.cc:576
std::string const & eventHistoryBranchName()
Definition: BranchType.cc:238
Long64_t numEntries(TFile *hdl, std::string const &trname)
Definition: CollUtil.cc:50
def unique(seq, keepstr=True)
Definition: tier0.py:24
static char const *const kSortCommandOpt
std::string eventSetupComponent(char const *iType, std::string const &iCompName, edm::ParameterSet const &iProcessConfig, std::string const &iProcessName)
Definition: EdmProvDump.cc:159
std::string nonProducerComponent(std::string const &iCompName, edm::ParameterSet const &iProcessConfig, std::string const &iProcessName)
Definition: EdmProvDump.cc:241
static ServiceToken createContaining(std::unique_ptr< T > iService)
create a service token that holds the service defined by iService
bool getMapped(key_type const &k, value_type &result) const
Definition: Registry.cc:19
std::string const & BranchTypeToBranchEntryInfoBranchName(BranchType const &branchType)
Definition: BranchType.cc:127
std::vector< ParameterSet > const & vpset() const
returns the VPSet
bool insertMapped(value_type const &v, bool forceUpdate=false)
Definition: Registry.cc:36
ProvenanceDumper(std::string const &filename, bool showDependencies, bool extendedAncestors, bool extendedDescendants, bool excludeESModules, bool showAllModules, bool showTopLevelPSets, std::vector< std::string > const &findMatch, bool dontPrintProducts, std::string const &dumpPSetID)
Definition: EdmProvDump.cc:533
#define end
Definition: vmac.h:39
std::string const & metaDataTreeName()
Definition: BranchType.cc:168
std::string const & BranchTypeToProductTreeName(BranchType const &branchType)
Definition: BranchType.cc:103
static char const *const kExtendedAncestorsCommandOpt
static std::string const triggerResults
Definition: EdmProvDump.cc:41
bool isRegistered() const
Definition: ParameterSet.h:65
Hash< ParameterSetType > ParameterSetID
std::string const & parameterSetMapBranchName()
Definition: BranchType.cc:183
element_type const * get() const
static void appendToSet(std::set< std::string > &iSet, std::vector< std::string > const &iFrom)
Definition: EdmProvDump.cc:298
static std::ostream & prettyPrint(std::ostream &oStream, edm::ParameterSet const &iPSet, std::string const &iIndent, std::string const &iIndentDelta)
Definition: EdmProvDump.cc:443
std::string const & processHistoryBranchName()
Definition: BranchType.cc:198
std::map< std::string, std::vector< edm::BranchDescription > > IdToBranches
Definition: EdmProvDump.cc:36
int main(int argc, char *argv[])
void dumpProcessHistory_()
Definition: EdmProvDump.cc:647
edm::ProcessConfigurationVector phc_
Definition: EdmProvDump.cc:511
psettable const & psetTable() const
Definition: ParameterSet.h:257
std::vector< std::string > const & fileNames() const
void sort_all(RandomAccessSequence &s)
wrappers for std::sort
Definition: Algorithms.h:120
std::string filename_
Definition: EdmProvDump.cc:505
ParameterSet const & getParameterSet(std::string const &) const
static char const *const kShowAllModulesOpt
std::string const & parentageBranchName()
Definition: BranchType.cc:163
ProductList & productListUpdator()
void addDescendants(edm::BranchID const &branchID, std::set< edm::BranchID > &descendantBranchIDs, std::ostringstream &sout, std::map< edm::BranchID, std::set< edm::BranchID > > &parentToChildren) const
gErrorIgnoreLevel
Definition: utils.py:25
std::vector< std::string > findMatch_
Definition: EdmProvDump.cc:522
std::map< ParameterSetID, ParameterSetBlob > ParameterSetMap
std::string const & productDescriptionBranchName()
Definition: BranchType.cc:173
static char const *const kExtendedDescendantsOpt
#define begin
Definition: vmac.h:32
vpsettable const & vpsetTable() const
Definition: ParameterSet.h:260
static char const *const kFileNameOpt
std::string const & BranchTypeToProductProvenanceBranchName(BranchType const &BranchType)
Definition: BranchType.cc:131
std::string const & eventTreeName()
Definition: BranchType.cc:260
std::string const & eventHistoryTreeName()
Definition: BranchType.cc:268
static char const *const kExtendedAncestorsOpt
static Interceptor::Registry registry("Interceptor")
table const & tbl() const
Definition: ParameterSet.h:254
static ParentageRegistry * instance()
static std::string const triggerPaths
Definition: EdmProvDump.cc:42
ParameterSet const & registerIt()
static std::string const source
Definition: EdmProvDump.cc:43
int exitCode() const
Definition: EdmProvDump.cc:571
std::map< ProcessHistoryID, ProcessHistory > ProcessHistoryMap
std::string const & moduleDescriptionMapBranchName()
Definition: BranchType.cc:188
bool insertMapped(value_type const &v)
def move(src, dest)
Definition: eostools.py:510
static Registry * instance()
Definition: Registry.cc:13
static std::string topLevelPSet(std::string const &iName, edm::ParameterSet const &iProcessConfig, std::string const &iProcessName)
Definition: EdmProvDump.cc:304
static char const *const kDumpPSetIDCommandOpt
static char const *const kExtendedDescendantsCommandOpt
def operate(timelog, memlog, json_f, num)
void printErrors(std::ostream &os)
Definition: EdmProvDump.cc:566
static char const *const kFindMatchOpt