Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:03

0001 /*
0002  *  Modules.cc
0003  *  CMSSW
0004  *
0005  *  Created by Chris Jones on 9/7/05.
0006  *
0007  */
0008 
0009 #include "FWCore/Utilities/interface/concatenate.h"
0010 #include "FWCore/ServiceRegistry/test/stubs/DependsOnDummyService.h"
0011 #include "FWCore/ServiceRegistry/test/stubs/DummyService.h"
0012 #include "FWCore/ServiceRegistry/test/stubs/DummyServiceE0.h"
0013 #include "FWCore/ServiceRegistry/interface/ServiceMaker.h"
0014 
0015 using namespace testserviceregistry;
0016 using namespace edm::serviceregistry;
0017 DEFINE_FWK_SERVICE_MAKER(DependsOnDummyService, NoArgsMaker<DependsOnDummyService>);
0018 DEFINE_FWK_SERVICE(DummyService);
0019 DEFINE_FWK_SERVICE(EDM_CONCATENATE(DummyService, E0));
0020 DEFINE_FWK_SERVICE(EDM_CONCATENATE(DummyService, A1));
0021 DEFINE_FWK_SERVICE(EDM_CONCATENATE(DummyService, D2));
0022 DEFINE_FWK_SERVICE(EDM_CONCATENATE(DummyService, B3));
0023 DEFINE_FWK_SERVICE(EDM_CONCATENATE(DummyService, C4));