@@ -8,7 +8,7 @@ FileBlock: Properties of an input file.
88----------------------------------------------------------------------*/
99
1010#include " DataFormats/Provenance/interface/FileFormatVersion.h"
11- #include " DataFormats/Provenance/interface/BranchChildren .h"
11+ #include " DataFormats/Provenance/interface/ProductDependencies .h"
1212#include " DataFormats/Provenance/interface/ProductDescriptionFwd.h"
1313#include " FWCore/Utilities/interface/BranchType.h"
1414class TTree ;
@@ -69,7 +69,7 @@ namespace edm {
6969 fileName_(),
7070 branchListIndexesUnchanged_(false ),
7171 modifiedIDs_(false ),
72- branchChildren_ (new BranchChildren ) {}
72+ productDependencies_ (new ProductDependencies ) {}
7373
7474 FileBlock (FileFormatVersion const & version,
7575 TTree* ev,
@@ -85,7 +85,7 @@ namespace edm {
8585 std::string const & fileName,
8686 bool branchListIndexesUnchanged,
8787 bool modifiedIDs,
88- std::shared_ptr<BranchChildren const > branchChildren )
88+ std::shared_ptr<ProductDependencies const > productDependencies )
8989 : fileFormatVersion_(version),
9090 tree_(ev),
9191 metaTree_(meta),
@@ -100,7 +100,7 @@ namespace edm {
100100 fileName_(fileName),
101101 branchListIndexesUnchanged_(branchListIndexesUnchanged),
102102 modifiedIDs_(modifiedIDs),
103- branchChildren_(branchChildren ) {}
103+ productDependencies_(productDependencies ) {}
104104
105105 ~FileBlock () {}
106106
@@ -132,7 +132,7 @@ namespace edm {
132132 bool modifiedIDs () const { return modifiedIDs_; }
133133
134134 void setNotFastClonable (WhyNotFastClonable const & why) { whyNotFastClonable_ |= why; }
135- BranchChildren const & branchChildren () const { return *branchChildren_ ; }
135+ ProductDependencies const & productDependencies () const { return *productDependencies_ ; }
136136 void close ();
137137
138138 private:
@@ -151,7 +151,7 @@ namespace edm {
151151 std::string fileName_;
152152 bool branchListIndexesUnchanged_;
153153 bool modifiedIDs_;
154- std::shared_ptr<BranchChildren const > branchChildren_ ;
154+ std::shared_ptr<ProductDependencies const > productDependencies_ ;
155155 };
156156} // namespace edm
157157#endif
0 commit comments