#include <FWCore/Framework/interface/EventSetupRecordImplementation.h>
Description: Help class which implements the necessary virtual methods for a new Record class
Usage: This class handles implementing the necessary 'meta data' methods for a Record. To use the class, a new Record type should inherit from EventSetupRecordImplementation and pass itself as the argument to the template parameter. For example, for a Record named FooRcd, you would declare it like
class FooRcd : public edm::eventsetup::EventSetupRecordImplementation< FooRcd > {};