CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EdmProvDump.cc
Go to the documentation of this file.
17 
20 
21 #include "Cintex/Cintex.h"
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  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(0 == name.size()) {
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.size() == 0 || '@' == 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::auto_ptr<edm::SiteLocalConfig> slcptr(new edm::service::SiteLocalConfigService(edm::ParameterSet()));
378  boost::shared_ptr<edm::serviceregistry::ServiceWrapper<edm::SiteLocalConfig> > slc(new edm::serviceregistry::ServiceWrapper<edm::SiteLocalConfig>(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()));
406  gErrorIgnoreLevel = kError;
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.
475  ProvenanceDumper(std::string const& filename,
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 
485  ProvenanceDumper(ProvenanceDumper const&) = delete; // Disallow copying and moving
486  ProvenanceDumper& operator=(ProvenanceDumper const&) = delete; // Disallow copying and moving
487 
488  // Write the provenenace information to the given stream.
489  void dump();
490  void printErrors(std::ostream& os);
491  int exitCode() const;
492 
493 private:
494 
495  void addAncestors(edm::BranchID const& branchID,
496  std::set<edm::BranchID>& ancestorBranchIDs,
497  std::ostringstream& sout,
498  std::map<edm::BranchID, std::set<edm::ParentageID> >& perProductParentage) const;
499 
500  void addDescendants(edm::BranchID const& branchID, std::set<edm::BranchID>& descendantBranchIDs,
501  std::ostringstream& sout,
502  std::map<edm::BranchID, std::set<edm::BranchID> >& parentToChildren) const;
503 
505  std::unique_ptr<TFile> inputFile_;
507  std::stringstream errorLog_;
512  ParameterSetMap psm_;
513  HistoryNode historyGraph_;
520  std::vector<std::string> findMatch_;
522 
523  void work_();
524  void dumpProcessHistory_();
528 };
529 
531  bool showDependencies,
532  bool extendedAncestors,
533  bool extendedDescendants,
534  bool excludeESModules,
535  bool showOtherModules,
536  bool showTopLevelPSets,
537  std::vector<std::string> const& findMatch,
538  bool dontPrintProducts) :
539  filename_(filename),
540  inputFile_(makeTFile(filename)),
541  exitCode_(0),
542  errorLog_(),
543  errorCount_(0),
544  showDependencies_(showDependencies),
545  extendedAncestors_(extendedAncestors),
546  extendedDescendants_(extendedDescendants),
547  excludeESModules_(excludeESModules),
548  showOtherModules_(showOtherModules),
549  showTopLevelPSets_(showTopLevelPSets),
550  findMatch_(findMatch),
551  dontPrintProducts_(dontPrintProducts) {
552 }
553 
554 void
556  work_();
557 }
558 
559 void
560 ProvenanceDumper::printErrors(std::ostream& os) {
561  if(errorCount_ > 0) os << errorLog_.str() << std::endl;
562 }
563 
564 int
566  return exitCode_;
567 }
568 
569 void
571  edm::EventSelectionIDVector::size_type num_ids = ids.size();
572  if(num_ids == 0) {
573  std::cout << "No event filtering information is available.\n";
574  std::cout << "------------------------------\n";
575  } else {
576  std::cout << "Event filtering information for "
577  << num_ids
578  << " processing steps is available.\n"
579  << "The ParameterSets will be printed out, "
580  << "with the oldest printed first.\n";
581  for(edm::EventSelectionIDVector::size_type i = 0; i != num_ids; ++i) {
583  }
584  }
585 }
586 
587 void
589 
590  TTree* history = dynamic_cast<TTree*>(file->Get(edm::poolNames::eventHistoryTreeName().c_str()));
591  if(history != 0) {
592  edm::History h;
593  edm::History* ph = &h;
594 
595  history->SetBranchAddress(edm::poolNames::eventHistoryBranchName().c_str(), &ph);
596  if(history->GetEntry(0) <= 0) {
597  std::cout << "No event filtering information is available; the event history tree has no entries\n";
598  } else {
600  }
601  } else {
602  TTree* events = dynamic_cast<TTree*>(file->Get(edm::poolNames::eventTreeName().c_str()));
603  assert (events != 0);
604  TBranch* eventSelectionsBranch = events->GetBranch(edm::poolNames::eventSelectionsBranchName().c_str());
605  assert (eventSelectionsBranch != 0);
607  edm::EventSelectionIDVector* pids = &ids;
608  eventSelectionsBranch->SetAddress(&pids);
609  if(eventSelectionsBranch->GetEntry(0) <= 0) {
610  std::cout << "No event filtering information is available; the event selections branch has no entries\n";
611  } else {
613  }
614  }
615 }
616 
617 void
619  std::cout << "ParameterSetID: " << id << '\n';
620  if(id.isValid()) {
621  ParameterSetMap::const_iterator i = psm_.find(id);
622  if(i == psm_.end()) {
623  std::cout << "We are unable to find the corresponding ParameterSet\n";
625  if(id == empty.id()) {
626  std::cout << "But it would have been empty anyway\n";
627  }
628  } else {
629  edm::ParameterSet ps(i->second.pset());
630  prettyPrint(std::cout, ps, " ", " ");
631  std::cout<< '\n';
632  }
633  } else {
634  std::cout << "This ID is not valid\n";
635  }
636  std::cout << " -------------------------\n";
637 }
638 
639 void
641  std::cout << "Processing History:" << std::endl;
642  if(1 == phv_.size()) {
643  std::cout << *phv_.begin();
644  historyGraph_.addChild(HistoryNode(*(phv_.begin()->begin()), 1));
645  } else {
646  std::map<edm::ProcessConfigurationID, unsigned int> simpleIDs;
647  for(auto const& ph : phv_) {
648  //loop over the history entries looking for matches
649  HistoryNode* parent = &historyGraph_;
650  for(auto const& pc : ph) {
651  if(parent->size() == 0) {
652  unsigned int id = simpleIDs[pc.id()];
653  if(0 == id) {
654  id = 1;
655  simpleIDs[pc.id()] = id;
656  }
657  parent->addChild(HistoryNode(pc, id));
658  parent = parent->lastChildAddress();
659  } else {
660  //see if this is unique
661  bool isUnique = true;
662  for(auto& child : *parent) {
663  if(child.configurationID() == pc.id()) {
664  isUnique = false;
665  parent = &child;
666  break;
667  }
668  }
669  if(isUnique) {
670  simpleIDs[pc.id()] = parent->size() + 1;
671  parent->addChild(HistoryNode(pc, simpleIDs[pc.id()]));
672  parent = parent->lastChildAddress();
673  }
674  }
675  }
676  }
677  historyGraph_.printHistory();
678  }
679 }
680 
681 void
683 
684  TTree* meta = dynamic_cast<TTree*>(inputFile_->Get(edm::poolNames::metaDataTreeName().c_str()));
685  assert(0 != meta);
686 
687  edm::ProductRegistry* pReg = &reg_;
688  meta->SetBranchAddress(edm::poolNames::productDescriptionBranchName().c_str(), &pReg);
689 
690  ParameterSetMap* pPsm = &psm_;
691  if(meta->FindBranch(edm::poolNames::parameterSetMapBranchName().c_str()) != 0) {
692  meta->SetBranchAddress(edm::poolNames::parameterSetMapBranchName().c_str(), &pPsm);
693  } else {
694  TTree* psetTree = dynamic_cast<TTree *>(inputFile_->Get(edm::poolNames::parameterSetsTreeName().c_str()));
695  assert(0 != psetTree);
696  typedef std::pair<edm::ParameterSetID, edm::ParameterSetBlob> IdToBlobs;
697  IdToBlobs idToBlob;
698  IdToBlobs* pIdToBlob = &idToBlob;
699  psetTree->SetBranchAddress(edm::poolNames::idToParameterSetBlobsBranchName().c_str(), &pIdToBlob);
700  for(long long i = 0; i != psetTree->GetEntries(); ++i) {
701  psetTree->GetEntry(i);
702  psm_.insert(idToBlob);
703  }
704  }
705 
707  if(meta->FindBranch(edm::poolNames::processHistoryBranchName().c_str()) != 0) {
708  meta->SetBranchAddress(edm::poolNames::processHistoryBranchName().c_str(), &pPhv);
709  }
710 
712  edm::ProcessHistoryMap* pPhm = &phm;
713  if(meta->FindBranch(edm::poolNames::processHistoryMapBranchName().c_str()) != 0) {
714  meta->SetBranchAddress(edm::poolNames::processHistoryMapBranchName().c_str(), &pPhm);
715  }
716 
717  if(meta->FindBranch(edm::poolNames::moduleDescriptionMapBranchName().c_str()) != 0) {
718  if(meta->GetBranch(edm::poolNames::moduleDescriptionMapBranchName().c_str())->GetSplitLevel() != 0) {
719  meta->SetBranchStatus((edm::poolNames::moduleDescriptionMapBranchName() + ".*").c_str(), 0);
720  } else {
721  meta->SetBranchStatus(edm::poolNames::moduleDescriptionMapBranchName().c_str(), 0);
722  }
723  }
724 
725  meta->GetEntry(0);
726  assert(nullptr != pReg);
727 
729  for(auto const& item : psm_) {
730  edm::ParameterSet pset(item.second.pset());
731  pset.setID(item.first);
732  psetRegistry.insertMapped(pset);
733  }
734 
735 
736  if(!phv_.empty()) {
737  for(auto const& history : phv_) {
738  for(auto const& process : history) {
739  phc_.push_back(process);
740  }
741  }
743  phc_.erase(std::unique(phc_.begin(), phc_.end()), phc_.end());
744 
745  }
746  // backward compatibility
747  else if(!phm.empty()) {
748  for(auto const& history : phm) {
749  phv_.push_back(history.second);
750  for(auto const& process : history.second) {
751  phc_.push_back(process);
752  }
753  }
755  phc_.erase(std::unique(phc_.begin(), phc_.end()), phc_.end());
756  }
757 
758  //Prepare the parentage information if requested
759  std::map<edm::BranchID, std::set<edm::ParentageID> > perProductParentage;
760 
762  TTree* parentageTree = dynamic_cast<TTree*>(inputFile_->Get(edm::poolNames::parentageTreeName().c_str()));
763  if(nullptr == parentageTree) {
764  std::cerr << "ERROR, no Parentage tree available so can not show dependencies/n";
765  showDependencies_ = false;
766  extendedAncestors_ = false;
767  extendedDescendants_ = false;
768  } else {
769 
771 
772  std::vector<edm::ParentageID> orderedParentageIDs;
773  orderedParentageIDs.reserve(parentageTree->GetEntries());
774  for(Long64_t i = 0, numEntries = parentageTree->GetEntries(); i < numEntries; ++i) {
775  edm::Parentage parentageBuffer;
776  edm::Parentage *pParentageBuffer = &parentageBuffer;
777  parentageTree->SetBranchAddress(edm::poolNames::parentageBranchName().c_str(), &pParentageBuffer);
778  parentageTree->GetEntry(i);
779  registry.insertMapped(parentageBuffer);
780  orderedParentageIDs.push_back(parentageBuffer.id());
781  }
782  parentageTree->SetBranchAddress(edm::poolNames::parentageBranchName().c_str(), 0);
783 
784  TTree* eventMetaTree = dynamic_cast<TTree*>(inputFile_->Get(edm::BranchTypeToMetaDataTreeName(edm::InEvent).c_str()));
785  if(0 == eventMetaTree) {
786  eventMetaTree = dynamic_cast<TTree*>(inputFile_->Get(edm::BranchTypeToProductTreeName(edm::InEvent).c_str()));
787  }
788  if(0 == eventMetaTree) {
789  std::cerr << "ERROR, no '" << edm::BranchTypeToProductTreeName(edm::InEvent)<< "' Tree in file so can not show dependencies\n";
790  showDependencies_ = false;
791  extendedAncestors_ = false;
792  extendedDescendants_ = false;
793  } else {
794  TBranch* storedProvBranch = eventMetaTree->GetBranch(edm::BranchTypeToProductProvenanceBranchName(edm::InEvent).c_str());
795 
796  if(0!=storedProvBranch) {
797  std::vector<edm::StoredProductProvenance> info;
798  std::vector<edm::StoredProductProvenance>* pInfo = &info;
799  storedProvBranch->SetAddress(&pInfo);
800  for(Long64_t i = 0, numEntries = eventMetaTree->GetEntries(); i < numEntries; ++i) {
801  storedProvBranch->GetEntry(i);
802  for(auto const& item : info) {
803  edm::BranchID bid(item.branchID_);
804  perProductParentage[bid].insert(orderedParentageIDs[item.parentageIDIndex_]);
805  }
806  }
807  } else {
808  //backwards compatible check
809  TBranch* productProvBranch = eventMetaTree->GetBranch(edm::BranchTypeToBranchEntryInfoBranchName(edm::InEvent).c_str());
810  if (0 != productProvBranch) {
811  std::vector<edm::ProductProvenance> info;
812  std::vector<edm::ProductProvenance>* pInfo = &info;
813  productProvBranch->SetAddress(&pInfo);
814  for(Long64_t i = 0, numEntries = eventMetaTree->GetEntries(); i < numEntries; ++i) {
815  productProvBranch->GetEntry(i);
816  for(auto const& item : info) {
817  perProductParentage[item.branchID()].insert(item.parentageID());
818  }
819  }
820  } else {
821  std::cerr <<" ERROR, could not find provenance information so can not show dependencies\n";
822  showDependencies_=false;
823  extendedAncestors_ = false;
824  extendedDescendants_ = false;
825  }
826  }
827  }
828  }
829  }
830 
831  std::map<edm::BranchID, std::set<edm::BranchID> > parentToChildren;
833 
834  if (extendedDescendants_) {
835  for (auto const& itParentageSet : perProductParentage) {
836  edm::BranchID childBranchID = itParentageSet.first;
837  for (auto const& itParentageID : itParentageSet.second) {
838  edm::Parentage const* parentage = registry.getMapped(itParentageID);
839  if(0 != parentage) {
840  for(auto const& branch : parentage->parents()) {
841  parentToChildren[branch].insert(childBranchID);
842  }
843  } else {
844  std::cerr << " ERROR:parentage info not in registry ParentageID=" << itParentageID << std::endl;
845  }
846  }
847  }
848  }
849 
851 
853 
854  std::cout << "---------Producers with data in file---------" << std::endl;
855 
856  //using edm::ParameterSetID as the key does not work
857  // typedef std::map<edm::ParameterSetID, std::vector<edm::BranchDescription> > IdToBranches
858  ModuleToIdBranches moduleToIdBranches;
859  //IdToBranches idToBranches;
860 
861  std::map<edm::BranchID, std::string> branchIDToBranchName;
862 
863  for(auto const& processConfig : phc_) {
864  edm::ParameterSet const* processParameterSet = edm::pset::Registry::instance()->getMapped(processConfig.parameterSetID());
865  if(nullptr == processParameterSet || processParameterSet->empty()) {
866  continue;
867  }
868  for(auto& item : reg_.productListUpdator()) {
869  auto& product = item.second;
870  if(product.processName() != processConfig.processName()) {
871  continue;
872  }
873  //force it to rebuild the branch name
874  product.init();
875 
877  branchIDToBranchName[product.branchID()] = product.branchName();
878  }
879  /*
880  std::cout << product.branchName()
881  << " id " << product.productID() << std::endl;
882  */
883  std::string moduleLabel = product.moduleLabel();
884  if(moduleLabel == source) {
885  moduleLabel = input;
886  } else if (moduleLabel == triggerResults) {
887  moduleLabel = triggerPaths;
888  }
889 
890  std::stringstream s;
891 
892  if(processParameterSet->existsAs<edm::ParameterSet>(moduleLabel)) {
893  edm::ParameterSet const& moduleParameterSet = processParameterSet->getParameterSet(moduleLabel);
894  if(!moduleParameterSet.isRegistered()) {
895  edm::ParameterSet moduleParameterSetCopy = processParameterSet->getParameterSet(moduleLabel);
896  moduleParameterSetCopy.registerIt();
897  s << moduleParameterSetCopy.id();
898  } else {
899  s << moduleParameterSet.id();
900  }
901  moduleToIdBranches[std::make_pair(product.processName(), product.moduleLabel())][s.str()].push_back(product);
902  }
903  }
904  }
905 
906  for(auto const& item : moduleToIdBranches) {
907  std::ostringstream sout;
908  sout << "Module: " << item.first.second << " " << item.first.first << std::endl;
909  std::set<edm::BranchID> allBranchIDsForLabelAndProcess;
910  IdToBranches const& idToBranches = item.second;
911  for(auto const& idBranch : idToBranches) {
912  sout << " PSet id:" << idBranch.first << std::endl;
913  if(!dontPrintProducts_) {
914  sout << " products: {" << std::endl;
915  }
916  std::set<edm::BranchID> branchIDs;
917  for(auto const& branch : idBranch.second) {
918  if(!dontPrintProducts_) {
919  sout << " " << branch.branchName() << std::endl;
920  }
921  branchIDs.insert(branch.branchID());
922  allBranchIDsForLabelAndProcess.insert(branch.branchID());
923  }
924  sout << " }" << std::endl;
925  edm::ParameterSetID psid(idBranch.first);
926  ParameterSetMap::const_iterator itpsm = psm_.find(psid);
927  if(psm_.end() == itpsm) {
928  ++errorCount_;
929  errorLog_ << "No ParameterSetID for " << psid << std::endl;
930  exitCode_ = 1;
931  } else {
932  sout << " parameters: ";
933  prettyPrint(sout, edm::ParameterSet((*itpsm).second.pset()), " ", " ");
934  sout << std::endl;
935  }
936  if(showDependencies_) {
937 
938  sout << " dependencies: {" << std::endl;
939  std::set<edm::ParentageID> parentageIDs;
940  for(auto const& branch : branchIDs) {
941 
942  //Save these BranchIDs
943  std::set<edm::ParentageID> const& temp = perProductParentage[branch];
944  parentageIDs.insert(temp.begin(), temp.end());
945  }
946  for(auto const& parentID : parentageIDs) {
947  edm::Parentage const* parentage = registry.getMapped(parentID);
948  if(nullptr != parentage) {
949  for(auto const& branch : parentage->parents()) {
950  sout << " " << branchIDToBranchName[branch] << std::endl;
951  }
952  } else {
953  sout << " ERROR:parentage info not in registry ParentageID=" << parentID << std::endl;
954  }
955  }
956  if(parentageIDs.empty()) {
957  sout << " no dependencies recorded (event may not contain data from this module)" << std::endl;
958  }
959  sout << " }" << std::endl;
960  }
961  } // end loop over PSetIDs
962  if (extendedAncestors_) {
963  sout << " extendedAncestors: {" << std::endl;
964  std::set<edm::BranchID> ancestorBranchIDs;
965  for (auto const& branchID : allBranchIDsForLabelAndProcess) {
966  addAncestors(branchID, ancestorBranchIDs, sout, perProductParentage);
967  }
968  for (auto const& ancestorBranchID : ancestorBranchIDs) {
969  sout << " " << branchIDToBranchName[ancestorBranchID] << "\n";
970  }
971  sout << " }" << std::endl;
972  }
973 
974  if (extendedDescendants_) {
975  sout << " extendedDescendants: {" << std::endl;
976  std::set<edm::BranchID> descendantBranchIDs;
977  for (auto const& branchID : allBranchIDsForLabelAndProcess) {
978  addDescendants(branchID, descendantBranchIDs, sout, parentToChildren);
979  }
980  for (auto const& descendantBranchID : descendantBranchIDs) {
981  sout << " " << branchIDToBranchName[descendantBranchID] << "\n";
982  }
983  sout << " }" << std::endl;
984  }
985  bool foundMatch = true;
986  if(!findMatch_.empty()) {
987  for (auto const& stringToFind : findMatch_) {
988  if (sout.str().find(stringToFind) == std::string::npos) {
989  foundMatch = false;
990  break;
991  }
992  }
993  }
994  if (foundMatch) {
995  std::cout <<sout.str()<<std::endl;
996  }
997  } // end loop over module label/process
998  if(showOtherModules_) {
999  std::cout << "---------Other Modules---------" << std::endl;
1000  historyGraph_.printOtherModulesHistory(psm_, moduleToIdBranches, findMatch_, errorLog_);
1001  }
1002 
1003  if(!excludeESModules_) {
1004  std::cout << "---------EventSetup---------" << std::endl;
1005  historyGraph_.printEventSetupHistory(psm_, findMatch_, errorLog_);
1006  }
1007 
1008  if(showTopLevelPSets_) {
1009  std::cout << "---------Top Level PSets---------" << std::endl;
1010  historyGraph_.printTopLevelPSetsHistory(psm_, findMatch_, errorLog_);
1011  }
1012  if(errorCount_ != 0) {
1013  exitCode_ = 1;
1014  }
1015 }
1016 
1017 void
1018 ProvenanceDumper::addAncestors(edm::BranchID const& branchID, std::set<edm::BranchID>& ancestorBranchIDs, std::ostringstream& sout,
1019  std::map<edm::BranchID, std::set<edm::ParentageID> >& perProductParentage) const {
1020 
1022 
1023  std::set<edm::ParentageID> const& parentIDs = perProductParentage[branchID];
1024  for (auto const& parentageID : parentIDs) {
1025  edm::Parentage const* parentage = registry.getMapped(parentageID);
1026  if(0 != parentage) {
1027  for(auto const& branch : parentage->parents()) {
1028 
1029  if(ancestorBranchIDs.insert(branch).second) {
1030  addAncestors(branch, ancestorBranchIDs, sout, perProductParentage);
1031  }
1032  }
1033  } else {
1034  sout << " ERROR:parentage info not in registry ParentageID=" << parentageID << std::endl;
1035  }
1036  }
1037 }
1038 
1039 void
1040 ProvenanceDumper::addDescendants(edm::BranchID const& branchID, std::set<edm::BranchID>& descendantBranchIDs, std::ostringstream& sout,
1041  std::map<edm::BranchID, std::set<edm::BranchID> >& parentToChildren) const {
1042 
1043  for (auto const& childBranchID : parentToChildren[branchID]) {
1044  if (descendantBranchIDs.insert(childBranchID).second) {
1045  addDescendants(childBranchID, descendantBranchIDs, sout, parentToChildren);
1046  }
1047  }
1048 }
1049 
1050 static char const* const kSortOpt = "sort";
1051 static char const* const kSortCommandOpt = "sort,s";
1052 static char const* const kDependenciesOpt = "dependencies";
1053 static char const* const kDependenciesCommandOpt = "dependencies,d";
1054 static char const* const kExtendedAncestorsOpt = "extendedAncestors";
1055 static char const* const kExtendedAncestorsCommandOpt = "extendedAncestors,x";
1056 static char const* const kExtendedDescendantsOpt = "extendedDescendants";
1057 static char const* const kExtendedDescendantsCommandOpt = "extendedDescendants,c";
1058 static char const* const kExcludeESModulesOpt = "excludeESModules";
1059 static char const* const kExcludeESModulesCommandOpt = "excludeESModules,e";
1060 static char const* const kShowAllModulesOpt = "showAllModules";
1061 static char const* const kShowAllModulesCommandOpt = "showAllModules,a";
1062 static char const* const kFindMatchOpt = "findMatch";
1063 static char const* const kFindMatchCommandOpt = "findMatch,f";
1064 static char const* const kDontPrintProductsOpt = "dontPrintProducts";
1065 static char const* const kDontPrintProductsCommandOpt = "dontPrintProducts,p";
1066 static char const* const kShowTopLevelPSetsOpt = "showTopLevelPSets";
1067 static char const* const kShowTopLevelPSetsCommandOpt ="showTopLevelPSets,t";
1068 static char const* const kHelpOpt = "help";
1069 static char const* const kHelpCommandOpt = "help,h";
1070 static char const* const kFileNameOpt = "input-file";
1071 
1072 int main(int argc, char* argv[]) {
1073  using namespace boost::program_options;
1074 
1075  std::string descString(argv[0]);
1076  descString += " [options] <filename>";
1077  descString += "\nAllowed options";
1078  options_description desc(descString);
1079  desc.add_options()
1080  (kHelpCommandOpt, "show help message")
1081  (kSortCommandOpt
1082  , "alphabetially sort EventSetup components")
1084  , "print what data each EDProducer is directly dependent upon")
1085  (kExtendedAncestorsCommandOpt
1086  , "print what data each EDProducer is dependent upon including indirect dependences")
1088  , "print what data depends on the data each EDProducer produces including indirect dependences")
1089  (kExcludeESModulesCommandOpt
1090  , "do not print ES module information")
1092  , "show all modules (not just those that created data in the file)")
1093  (kShowTopLevelPSetsCommandOpt,"show all top level PSets")
1094  (kFindMatchCommandOpt, boost::program_options::value<std::vector<std::string> >(),
1095  "show only modules whose information contains the matching string (or all the matching strings, this option can be repeated with different strings)")
1097  , "do not print products produced by module")
1098  ;
1099  //we don't want users to see these in the help messages since this
1100  // name only exists since the parser needs it
1101  options_description hidden;
1102  hidden.add_options()(kFileNameOpt, value<std::string>(), "file name");
1103 
1104  //full list of options for the parser
1105  options_description cmdline_options;
1106  cmdline_options.add(desc).add(hidden);
1107 
1108  positional_options_description p;
1109  p.add(kFileNameOpt, -1);
1110 
1111  variables_map vm;
1112  try {
1113  store(command_line_parser(argc, argv).options(cmdline_options).positional(p).run(), vm);
1114  notify(vm);
1115  } catch(error const& iException) {
1116  std::cerr << iException.what();
1117  return 1;
1118  }
1119 
1120  if(vm.count(kHelpOpt)) {
1121  std::cout << desc << std::endl;
1122  return 0;
1123  }
1124 
1125  if(vm.count(kSortOpt)) {
1126  HistoryNode::sort_ = true;
1127  }
1128 
1129  bool showDependencies = false;
1130  if(vm.count(kDependenciesOpt)) {
1131  showDependencies = true;
1132  }
1133 
1134  bool extendedAncestors = false;
1135  if(vm.count(kExtendedAncestorsOpt)) {
1136  extendedAncestors = true;
1137  }
1138 
1139  bool extendedDescendants = false;
1140  if(vm.count(kExtendedDescendantsOpt)) {
1141  extendedDescendants = true;
1142  }
1143 
1144  bool excludeESModules = false;
1145  if(vm.count(kExcludeESModulesOpt)) {
1146  excludeESModules = true;
1147  }
1148 
1149  bool showAllModules = false;
1150  if(vm.count(kShowAllModulesOpt)) {
1151  showAllModules = true;
1152  }
1153 
1154  bool showTopLevelPSets = false;
1155  if(vm.count(kShowTopLevelPSetsOpt)) {
1156  showTopLevelPSets=true;
1157  }
1158 
1160  if(vm.count(kFileNameOpt)) {
1161  try {
1162  fileName = vm[kFileNameOpt].as<std::string>();
1163  } catch(boost::bad_any_cast const& e) {
1164  std::cout << e.what() << std::endl;
1165  return 2;
1166  }
1167  } else {
1168  std::cout << "Data file not specified." << std::endl;
1169  std::cout << desc << std::endl;
1170  return 2;
1171  }
1172 
1173  std::vector<std::string> findMatch;
1174  if(vm.count(kFindMatchOpt)) {
1175  try {
1176  findMatch = vm[kFindMatchOpt].as<std::vector<std::string> >();
1177  } catch(boost::bad_any_cast const& e) {
1178  std::cout << e.what() << std::endl;
1179  return 2;
1180  }
1181  }
1182 
1183  bool dontPrintProducts = false;
1184  if(vm.count(kDontPrintProductsOpt)) {
1185  dontPrintProducts=true;
1186  }
1187 
1188  //silence ROOT warnings about missing dictionaries
1189  gErrorIgnoreLevel = kError;
1190 
1191  //make sure dictionaries can be used for reading
1192  ROOT::Cintex::Cintex::Enable();
1193 
1194  ProvenanceDumper dumper(fileName, showDependencies, extendedAncestors, extendedDescendants,
1195  excludeESModules, showAllModules, showTopLevelPSets, findMatch, dontPrintProducts);
1196  int exitCode(0);
1197  try {
1198  dumper.dump();
1199  exitCode = dumper.exitCode();
1200  }
1201  catch (cms::Exception const& x) {
1202  std::cerr << "cms::Exception caught\n";
1203  std::cerr << x.what() << '\n';
1204  exitCode = 2;
1205  }
1206  catch (std::exception& x) {
1207  std::cerr << "std::exception caught\n";
1208  std::cerr << x.what() << '\n';
1209  exitCode = 3;
1210  }
1211  catch (...) {
1212  std::cerr << "Unknown exception caught\n";
1213  exitCode = 4;
1214  }
1215 
1216  dumper.printErrors(std::cerr);
1217  return exitCode;
1218 }
std::stringstream errorLog_
Definition: EdmProvDump.cc:507
static char const *const kDontPrintProductsCommandOpt
std::vector< ProcessHistory > ProcessHistoryVector
virtual char const * what() const
Definition: Exception.cc:141
void setID(ParameterSetID const &id)
T getParameter(std::string const &) const
bool empty() const
Definition: ParameterSet.h:216
std::string const & idToParameterSetBlobsBranchName()
Definition: BranchType.cc:249
std::vector< ProcessConfiguration > ProcessConfigurationVector
int i
Definition: DBlmapReader.cc:9
std::string const & BranchTypeToMetaDataTreeName(BranchType const &branchType)
Definition: BranchType.cc:106
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)
Definition: EdmProvDump.cc:530
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
static const TGPicture * info(bool iBackgroundIsBlack)
static char const *const kDependenciesOpt
std::string const & parentageTreeName()
Definition: BranchType.cc:158
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:184
static char const *const kFindMatchCommandOpt
list parent
Definition: dbtoconf.py:74
static char const *const kShowTopLevelPSetsCommandOpt
ParameterSetID id() const
ParentageID id() const
Definition: Parentage.cc:19
std::string print(const Track &, edm::Verbosity=edm::Concise)
Track print utility.
Definition: print.cc:8
edm::ProductRegistry reg_
Definition: EdmProvDump.cc:509
ParameterSetMap psm_
Definition: EdmProvDump.cc:512
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:618
static char const *const kHelpOpt
HistoryNode historyGraph_
Definition: EdmProvDump.cc:513
static char const *const kDontPrintProductsOpt
std::string const & eventSelectionsBranchName()
Definition: BranchType.cc:237
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
void dumpEventFilteringParameterSets_(TFile *file)
Definition: EdmProvDump.cc:588
uint16_t size_type
edm::ProcessHistoryVector phv_
Definition: EdmProvDump.cc:511
tuple node
Definition: Node.py:50
static ServiceToken createContaining(std::auto_ptr< T > iService)
create a service token that holds the service defined by iService
static char const *const kDependenciesCommandOpt
std::vector< EventSelectionID > EventSelectionIDVector
static char const *const kHelpCommandOpt
std::string const & parameterSetsTreeName()
Definition: BranchType.cc:245
static std::string const input
Definition: EdmProvDump.cc:44
static char const *const kShowTopLevelPSetsOpt
int main(int argc, char **argv)
std::vector< BranchID > const & parents() const
Definition: Parentage.h:37
static char const *const kShowAllModulesCommandOpt
ParameterSet const & pset() const
returns the PSet
static char const *const kExcludeESModulesCommandOpt
std::string const & processHistoryMapBranchName()
Definition: BranchType.cc:192
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:570
std::string const & eventHistoryBranchName()
Definition: BranchType.cc:232
Long64_t numEntries(TFile *hdl, std::string const &trname)
Definition: CollUtil.cc:50
tuple result
Definition: query.py:137
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
bool getMapped(key_type const &k, value_type &result) const
Definition: Registry.cc:20
std::string const & BranchTypeToBranchEntryInfoBranchName(BranchType const &branchType)
Definition: BranchType.cc:126
std::vector< ParameterSet > const & vpset() const
returns the VPSet
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
#define end
Definition: vmac.h:37
ProvenanceDumper & operator=(ProvenanceDumper const &)=delete
std::string const & metaDataTreeName()
Definition: BranchType.cc:167
std::string const & BranchTypeToProductTreeName(BranchType const &branchType)
Definition: BranchType.cc:102
std::unique_ptr< TFile > inputFile_
Definition: EdmProvDump.cc:505
static char const *const kExtendedAncestorsCommandOpt
static std::string const triggerResults
Definition: EdmProvDump.cc:41
bool isRegistered() const
Definition: ParameterSet.h:63
std::string const & parameterSetMapBranchName()
Definition: BranchType.cc:182
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:197
std::map< std::string, std::vector< edm::BranchDescription > > IdToBranches
Definition: EdmProvDump.cc:36
void dumpProcessHistory_()
Definition: EdmProvDump.cc:640
edm::ProcessConfigurationVector phc_
Definition: EdmProvDump.cc:510
psettable const & psetTable() const
Definition: ParameterSet.h:255
void sort_all(RandomAccessSequence &s)
wrappers for std::sort
Definition: Algorithms.h:120
std::string filename_
Definition: EdmProvDump.cc:504
ParameterSet const & getParameterSet(std::string const &) const
static char const *const kShowAllModulesOpt
std::string const & parentageBranchName()
Definition: BranchType.cc:162
tuple argc
Definition: dir2webdir.py:38
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
std::vector< std::string > findMatch_
Definition: EdmProvDump.cc:520
std::map< ParameterSetID, ParameterSetBlob > ParameterSetMap
std::string const & productDescriptionBranchName()
Definition: BranchType.cc:172
static char const *const kExtendedDescendantsOpt
#define begin
Definition: vmac.h:30
tuple events
Definition: patZpeak.py:19
vpsettable const & vpsetTable() const
Definition: ParameterSet.h:258
tuple filename
Definition: lut2db_cfg.py:20
static char const *const kFileNameOpt
std::string const & BranchTypeToProductProvenanceBranchName(BranchType const &BranchType)
Definition: BranchType.cc:130
std::string const & eventTreeName()
Definition: BranchType.cc:254
tuple cout
Definition: gather_cfg.py:121
tuple fileNames
Definition: LaserDQM_cfg.py:34
Definition: DDAxes.h:10
std::string const & eventHistoryTreeName()
Definition: BranchType.cc:262
static char const *const kExtendedAncestorsOpt
static Interceptor::Registry registry("Interceptor")
bool insertMapped(value_type const &v)
Definition: Registry.cc:37
tuple process
Definition: LaserDQM_cfg.py:3
table const & tbl() const
Definition: ParameterSet.h:252
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:565
tuple size
Write out results.
std::map< ProcessHistoryID, ProcessHistory > ProcessHistoryMap
std::string const & moduleDescriptionMapBranchName()
Definition: BranchType.cc:187
bool insertMapped(value_type const &v)
static Registry * instance()
Definition: Registry.cc:14
static std::string topLevelPSet(std::string const &iName, edm::ParameterSet const &iProcessConfig, std::string const &iProcessName)
Definition: EdmProvDump.cc:304
static char const *const kExtendedDescendantsCommandOpt
void printErrors(std::ostream &os)
Definition: EdmProvDump.cc:560
static char const *const kFindMatchOpt