Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:01

0001 #ifndef DataFormats_Provenance_BranchIDList_h
0002 #define DataFormats_Provenance_BranchIDList_h
0003 
0004 /*----------------------------------------------------------------------
0005   
0006 BranchIDList: 
0007 BranchIDLists: 
0008         one table stored per File
0009     table BranchIDLists keyed by ProcessInfo::branchListIndex_;
0010     entry BranchIDList keyed by ProductID::productIndex_;
0011 
0012 ----------------------------------------------------------------------*/
0013 
0014 #include <vector>
0015 #include "DataFormats/Provenance/interface/BranchID.h"
0016 
0017 namespace edm {
0018   typedef std::vector<BranchID::value_type> BranchIDList;
0019   typedef std::vector<BranchIDList> BranchIDLists;
0020 }  // namespace edm
0021 #endif