Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_Provenance_EventToProcessBlockIndexes_h
0002 #define DataFormats_Provenance_EventToProcessBlockIndexes_h
0003 
0004 /**
0005 
0006 \author W. David Dagenhart, created 5 January, 2021
0007 
0008 */
0009 
0010 namespace edm {
0011 
0012   class EventToProcessBlockIndexes {
0013   public:
0014     EventToProcessBlockIndexes() {}
0015 
0016     unsigned int index() const { return index_; }
0017     void setIndex(unsigned int value) { index_ = value; }
0018 
0019   private:
0020     unsigned int index_ = 0;
0021   };
0022 
0023 }  // namespace edm
0024 #endif