Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Framework_DummyData_h
0002 #define Framework_DummyData_h
0003 /*
0004  *  DummyData.h
0005  *  EDMProto
0006  *
0007  *  Created by Chris Jones on 4/4/05.
0008  *
0009  */
0010 
0011 //used to set the default record
0012 #include "FWCore/Framework/test/DummyRecord.h"
0013 
0014 namespace edm::eventsetup::test {
0015   struct DummyData {
0016     int value_;
0017     DummyData(int iValue = 0) : value_(iValue) {}
0018     void dummy() {}  // Just to suppress compilation warning message
0019   };
0020 }  // namespace edm::eventsetup::test
0021 
0022 #include "FWCore/Framework/interface/data_default_record_trait.h"
0023 EVENTSETUP_DATA_DEFAULT_RECORD(edm::eventsetup::test::DummyData, DummyRecord)
0024 
0025 #endif