File indexing completed on 2024-04-06 12:12:00
0001 #ifndef FWCore_Framework_stream_moduleAbilities_h
0002 #define FWCore_Framework_stream_moduleAbilities_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 #include "FWCore/Framework/interface/moduleAbilities.h"
0025
0026
0027
0028 namespace edm {
0029 namespace stream {
0030 struct WatchRuns {
0031 static constexpr module::Abilities kAbilities = module::Abilities::kStreamWatchRuns;
0032 using Type = module::Empty;
0033 };
0034
0035 struct WatchLuminosityBlocks {
0036 static constexpr module::Abilities kAbilities = module::Abilities::kStreamWatchLuminosityBlocks;
0037 using Type = module::Empty;
0038 };
0039 }
0040 }
0041
0042 #endif