Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:32

0001 #ifndef FWCore_Integration_IOVTestInfo_h
0002 #define FWCore_Integration_IOVTestInfo_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FWCore/Integration
0006 // Class  :     IOVTestInfo
0007 //
0008 /**\class edmtest::IOVTestInfo
0009 
0010  Description: Class used to test the EventSetup in the integration test
0011 
0012 */
0013 //
0014 // Original Author:  W. David Dagenhart
0015 //         Created:  21 March 2019
0016 //
0017 
0018 namespace edmtest {
0019   struct IOVTestInfo {
0020     IOVTestInfo() {}
0021     unsigned int iovStartRun_ = 0;
0022     unsigned int iovStartLumi_ = 0;
0023     unsigned int iovEndRun_ = 0;
0024     unsigned int iovEndLumi_ = 0;
0025     unsigned int iovIndex_ = 0;
0026     unsigned long long cacheIdentifier_ = 0;
0027   };
0028 }  // namespace edmtest
0029 #endif