-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement the fillDescriptions method for RawStreamFileWriterForBU
Clean up the module's parameters and directly use an InputTag in the python configuration. Update the startBU.py script accordingly.
- Loading branch information
Showing
5 changed files
with
95 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 13 additions & 16 deletions
29
EventFilter/Utilities/plugins/SealModule.cc → EventFilter/Utilities/plugins/modules.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,36 @@ | ||
#include "FWCore/Framework/interface/MakerMacros.h" | ||
#include "FWCore/ServiceRegistry/interface/ServiceMaker.h" | ||
#include "EventFilter/Utilities/interface/EvFDaqDirector.h" | ||
#include "EventFilter/Utilities/interface/FastMonitoringService.h" | ||
#include "EventFilter/Utilities/interface/EvFOutputModule.h" | ||
#include "EventFilter/Utilities/plugins/ExceptionGenerator.h" | ||
#include "EventFilter/Utilities/interface/FastMonitoringService.h" | ||
#include "EventFilter/Utilities/interface/FedRawDataInputSource.h" | ||
#include "EventFilter/Utilities/plugins/DaqFakeReader.h" | ||
#include "EventFilter/Utilities/plugins/EvFBuildingThrottle.h" | ||
#include "EventFilter/Utilities/plugins/EvFFEDSelector.h" | ||
#include "EventFilter/Utilities/plugins/ExceptionGenerator.h" | ||
#include "EventFilter/Utilities/plugins/RawEventFileWriterForBU.h" | ||
#include "EventFilter/Utilities/plugins/RecoEventWriterForFU.h" | ||
#include "EventFilter/Utilities/plugins/RecoEventOutputModuleForFU.h" | ||
#include "EventFilter/Utilities/plugins/RawEventOutputModuleForBU.h" | ||
#include "EventFilter/Utilities/plugins/DaqFakeReader.h" | ||
#include "EventFilter/Utilities/plugins/RecoEventOutputModuleForFU.h" | ||
#include "EventFilter/Utilities/plugins/RecoEventWriterForFU.h" | ||
#include "FWCore/Framework/interface/InputSourceMacros.h" | ||
#include "EventFilter/Utilities/interface/FedRawDataInputSource.h" | ||
#include "FWCore/Framework/interface/MakerMacros.h" | ||
#include "FWCore/ServiceRegistry/interface/ServiceMaker.h" | ||
|
||
using namespace edm::serviceregistry; | ||
using namespace evf; | ||
|
||
//typedef edm::serviceregistry::AllArgsMaker<MicroStateService> MicroStateServiceMaker; | ||
typedef edm::serviceregistry::AllArgsMaker<MicroStateService, FastMonitoringService> FastMonitoringServiceMaker; | ||
DEFINE_FWK_SERVICE_MAKER(FastMonitoringService, FastMonitoringServiceMaker); | ||
|
||
typedef RawEventOutputModuleForBU<RawEventFileWriterForBU> RawStreamFileWriterForBU; | ||
typedef RecoEventOutputModuleForFU<RecoEventWriterForFU> ShmStreamConsumer; | ||
|
||
//legacy name for ConfDB compatibility | ||
DEFINE_FWK_MODULE(RawStreamFileWriterForBU); | ||
|
||
//DEFINE_FWK_SERVICE_MAKER(MicroStateService, MicroStateServiceMaker); | ||
// legacy name for ConfDB compatibility | ||
typedef RecoEventOutputModuleForFU<RecoEventWriterForFU> ShmStreamConsumer; | ||
DEFINE_FWK_MODULE(ShmStreamConsumer); | ||
|
||
DEFINE_FWK_SERVICE_MAKER(FastMonitoringService, FastMonitoringServiceMaker); | ||
DEFINE_FWK_SERVICE(EvFBuildingThrottle); | ||
DEFINE_FWK_SERVICE(EvFDaqDirector); | ||
DEFINE_FWK_MODULE(ExceptionGenerator); | ||
DEFINE_FWK_MODULE(RawStreamFileWriterForBU); | ||
DEFINE_FWK_MODULE(EvFFEDSelector); | ||
DEFINE_FWK_MODULE(EvFOutputModule); | ||
DEFINE_FWK_MODULE(ShmStreamConsumer); | ||
DEFINE_FWK_MODULE(DaqFakeReader); | ||
DEFINE_FWK_INPUT_SOURCE(FedRawDataInputSource); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters