Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_Provenance_BranchListIndex_h
0002 #define DataFormats_Provenance_BranchListIndex_h
0003 
0004 /*----------------------------------------------------------------------
0005   
0006 ProcessInfo: 
0007 ProcessInfoVector: 
0008     table keyed by ProductID::processIndex_.
0009     processIndex_ is monotonically increasing with time.
0010         one table stored per Occurrence(Event. Lumi, Run)
0011 
0012 ----------------------------------------------------------------------*/
0013 
0014 #include <vector>
0015 
0016 namespace edm {
0017   typedef unsigned short BranchListIndex;
0018   typedef std::vector<BranchListIndex> BranchListIndexes;
0019 }  // namespace edm
0020 #endif