Public Member Functions | |
ReducedProvenanceReader (RootTree *iRootTree, std::vector< ParentageID > const &iParentageIDLookup, DaqProvenanceHelper const *daqProvenanceHelper) | |
Private Member Functions | |
virtual void | readProvenance (BranchMapper const &mapper) const |
Private Attributes | |
DaqProvenanceHelper const * | daqProvenanceHelper_ |
std::vector< ParentageID > const & | parentageIDLookup_ |
StoredProductProvenanceVector * | pProvVector_ |
TBranch * | provBranch_ |
StoredProductProvenanceVector | provVector_ |
RootTree * | rootTree_ |
Definition at line 1769 of file RootFile.cc.
edm::ReducedProvenanceReader::ReducedProvenanceReader | ( | RootTree * | iRootTree, |
std::vector< ParentageID > const & | iParentageIDLookup, | ||
DaqProvenanceHelper const * | daqProvenanceHelper | ||
) |
Definition at line 1782 of file RootFile.cc.
References edm::RootTree::branchType(), edm::BranchTypeToProductProvenanceBranchName(), provBranch_, rootTree_, and edm::RootTree::tree().
: ProvenanceReaderBase(), rootTree_(iRootTree), pProvVector_(&provVector_), parentageIDLookup_(iParentageIDLookup), daqProvenanceHelper_(daqProvenanceHelper) { provBranch_ = rootTree_->tree()->GetBranch(BranchTypeToProductProvenanceBranchName(rootTree_->branchType()).c_str()); } void ReducedProvenanceReader::readProvenance(BranchMapper const& mapper) const {
void edm::ReducedProvenanceReader::readProvenance | ( | BranchMapper const & | mapper | ) | const [private, virtual] |
Implements edm::ProvenanceReaderBase.
Definition at line 1795 of file RootFile.cc.
{ for(StoredProductProvenanceVector::const_iterator it = provVector_.begin(), itEnd = provVector_.end(); it != itEnd; ++it) { BranchID bid(it->branchID_); mapper.insertIntoSet(ProductProvenance(daqProvenanceHelper_->mapBranchID(BranchID(it->branchID_)), daqProvenanceHelper_->mapParentageID(parentageIDLookup_[it->parentageIDIndex_]))); } } else { for(StoredProductProvenanceVector::const_iterator it = provVector_.begin(), itEnd = provVector_.end(); it != itEnd; ++it) { mapper.insertIntoSet(ProductProvenance(BranchID(it->branchID_), parentageIDLookup_[it->parentageIDIndex_])); } } } class FullProvenanceReader : public ProvenanceReaderBase { public:
DaqProvenanceHelper const* edm::ReducedProvenanceReader::daqProvenanceHelper_ [private] |
Definition at line 1779 of file RootFile.cc.
std::vector<ParentageID> const& edm::ReducedProvenanceReader::parentageIDLookup_ [private] |
Definition at line 1778 of file RootFile.cc.
Definition at line 1777 of file RootFile.cc.
TBranch* edm::ReducedProvenanceReader::provBranch_ [private] |
Definition at line 1775 of file RootFile.cc.
Referenced by ReducedProvenanceReader().
Definition at line 1776 of file RootFile.cc.
RootTree* edm::ReducedProvenanceReader::rootTree_ [private] |
Definition at line 1774 of file RootFile.cc.
Referenced by ReducedProvenanceReader().