1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
|
// -*- C++ -*-
//
// Package: ServiceRegistry
// Class : ActivityRegistry
//
// Implementation:
// <Notes on implementation>
//
// Original Author: Chris Jones
// Created: Tue Sep 6 10:26:49 EDT 2005
//
// system include files
#include <algorithm>
// user include files
#include "FWCore/ServiceRegistry/interface/ActivityRegistry.h"
#include "FWCore/Utilities/interface/Algorithms.h"
#include "FWCore/Utilities/interface/Exception.h"
namespace edm {
namespace {
template <typename T>
inline void copySlotsToFrom(T& iTo, T& iFrom) {
for (auto& slot : iFrom.slots()) {
iTo.connect(slot);
}
}
template <typename T>
inline void copySlotsToFromReverse(T& iTo, T& iFrom) {
// This handles service slots that are supposed to be in reverse
// order of construction. Copying new ones in is a little
// tricky. Here is an example of what follows
// slots in iTo before 4 3 2 1 and copy in slots in iFrom 8 7 6 5.
// reverse iFrom 5 6 7 8
// then do the copy to front 8 7 6 5 4 3 2 1
auto slotsFrom = iFrom.slots();
std::reverse(slotsFrom.begin(), slotsFrom.end());
for (auto& slotFrom : slotsFrom) {
iTo.connect_front(slotFrom);
}
}
} // namespace
namespace signalslot {
void throwObsoleteSignalException() {
throw cms::Exception("ConnectedToObsoleteServiceSignal")
<< "A Service has connected to an obsolete ActivityRegistry signal.";
}
} // namespace signalslot
void ActivityRegistry::connectGlobals(ActivityRegistry& iOther) {
preallocateSignal_.connect(std::cref(iOther.preallocateSignal_));
eventSetupConfigurationSignal_.connect(std::cref(iOther.eventSetupConfigurationSignal_));
beginProcessingSignal_.connect(std::cref(iOther.beginProcessingSignal_));
endProcessingSignal_.connect(std::cref(iOther.endProcessingSignal_));
postBeginJobSignal_.connect(std::cref(iOther.postBeginJobSignal_));
preEndJobSignal_.connect(std::cref(iOther.preEndJobSignal_));
postEndJobSignal_.connect(std::cref(iOther.postEndJobSignal_));
jobFailureSignal_.connect(std::cref(iOther.jobFailureSignal_));
preSourceSignal_.connect(std::cref(iOther.preSourceSignal_));
postSourceSignal_.connect(std::cref(iOther.postSourceSignal_));
preSourceNextTransitionSignal_.connect(std::cref(iOther.preSourceNextTransitionSignal_));
postSourceNextTransitionSignal_.connect(std::cref(iOther.postSourceNextTransitionSignal_));
preSourceLumiSignal_.connect(std::cref(iOther.preSourceLumiSignal_));
postSourceLumiSignal_.connect(std::cref(iOther.postSourceLumiSignal_));
preSourceRunSignal_.connect(std::cref(iOther.preSourceRunSignal_));
postSourceRunSignal_.connect(std::cref(iOther.postSourceRunSignal_));
preSourceProcessBlockSignal_.connect(std::cref(iOther.preSourceProcessBlockSignal_));
postSourceProcessBlockSignal_.connect(std::cref(iOther.postSourceProcessBlockSignal_));
preOpenFileSignal_.connect(std::cref(iOther.preOpenFileSignal_));
postOpenFileSignal_.connect(std::cref(iOther.postOpenFileSignal_));
preCloseFileSignal_.connect(std::cref(iOther.preCloseFileSignal_));
postCloseFileSignal_.connect(std::cref(iOther.postCloseFileSignal_));
preSourceConstructionSignal_.connect(std::cref(iOther.preSourceConstructionSignal_));
postSourceConstructionSignal_.connect(std::cref(iOther.postSourceConstructionSignal_));
preStreamEarlyTerminationSignal_.connect(std::cref(iOther.preStreamEarlyTerminationSignal_));
preGlobalEarlyTerminationSignal_.connect(std::cref(iOther.preGlobalEarlyTerminationSignal_));
preSourceEarlyTerminationSignal_.connect(std::cref(iOther.preSourceEarlyTerminationSignal_));
esSyncIOVQueuingSignal_.connect(std::cref(iOther.esSyncIOVQueuingSignal_));
preESSyncIOVSignal_.connect(std::cref(iOther.preESSyncIOVSignal_));
postESSyncIOVSignal_.connect(std::cref(iOther.postESSyncIOVSignal_));
}
void ActivityRegistry::connectLocals(ActivityRegistry& iOther) {
preBeginJobSignal_.connect(std::cref(iOther.preBeginJobSignal_));
lookupInitializationCompleteSignal_.connect(std::cref(iOther.lookupInitializationCompleteSignal_));
preBeginStreamSignal_.connect(std::cref(iOther.preBeginStreamSignal_));
postBeginStreamSignal_.connect(std::cref(iOther.postBeginStreamSignal_));
preEndStreamSignal_.connect(std::cref(iOther.preEndStreamSignal_));
postEndStreamSignal_.connect(std::cref(iOther.postEndStreamSignal_));
preModuleBeginStreamSignal_.connect(std::cref(iOther.preModuleBeginStreamSignal_));
postModuleBeginStreamSignal_.connect(std::cref(iOther.postModuleBeginStreamSignal_));
preModuleEndStreamSignal_.connect(std::cref(iOther.preModuleEndStreamSignal_));
postModuleEndStreamSignal_.connect(std::cref(iOther.postModuleEndStreamSignal_));
preBeginProcessBlockSignal_.connect(std::cref(iOther.preBeginProcessBlockSignal_));
postBeginProcessBlockSignal_.connect(std::cref(iOther.postBeginProcessBlockSignal_));
preAccessInputProcessBlockSignal_.connect(std::cref(iOther.preAccessInputProcessBlockSignal_));
postAccessInputProcessBlockSignal_.connect(std::cref(iOther.postAccessInputProcessBlockSignal_));
preEndProcessBlockSignal_.connect(std::cref(iOther.preEndProcessBlockSignal_));
postEndProcessBlockSignal_.connect(std::cref(iOther.postEndProcessBlockSignal_));
preGlobalBeginRunSignal_.connect(std::cref(iOther.preGlobalBeginRunSignal_));
postGlobalBeginRunSignal_.connect(std::cref(iOther.postGlobalBeginRunSignal_));
preGlobalEndRunSignal_.connect(std::cref(iOther.preGlobalEndRunSignal_));
postGlobalEndRunSignal_.connect(std::cref(iOther.postGlobalEndRunSignal_));
preWriteProcessBlockSignal_.connect(std::cref(iOther.preWriteProcessBlockSignal_));
postWriteProcessBlockSignal_.connect(std::cref(iOther.postWriteProcessBlockSignal_));
preGlobalWriteRunSignal_.connect(std::cref(iOther.preGlobalWriteRunSignal_));
postGlobalWriteRunSignal_.connect(std::cref(iOther.postGlobalWriteRunSignal_));
preStreamBeginRunSignal_.connect(std::cref(iOther.preStreamBeginRunSignal_));
postStreamBeginRunSignal_.connect(std::cref(iOther.postStreamBeginRunSignal_));
preStreamEndRunSignal_.connect(std::cref(iOther.preStreamEndRunSignal_));
postStreamEndRunSignal_.connect(std::cref(iOther.postStreamEndRunSignal_));
preGlobalBeginLumiSignal_.connect(std::cref(iOther.preGlobalBeginLumiSignal_));
postGlobalBeginLumiSignal_.connect(std::cref(iOther.postGlobalBeginLumiSignal_));
preGlobalEndLumiSignal_.connect(std::cref(iOther.preGlobalEndLumiSignal_));
postGlobalEndLumiSignal_.connect(std::cref(iOther.postGlobalEndLumiSignal_));
preGlobalWriteLumiSignal_.connect(std::cref(iOther.preGlobalWriteLumiSignal_));
postGlobalWriteLumiSignal_.connect(std::cref(iOther.postGlobalWriteLumiSignal_));
preStreamBeginLumiSignal_.connect(std::cref(iOther.preStreamBeginLumiSignal_));
postStreamBeginLumiSignal_.connect(std::cref(iOther.postStreamBeginLumiSignal_));
preStreamEndLumiSignal_.connect(std::cref(iOther.preStreamEndLumiSignal_));
postStreamEndLumiSignal_.connect(std::cref(iOther.postStreamEndLumiSignal_));
preEventSignal_.connect(std::cref(iOther.preEventSignal_));
postEventSignal_.connect(std::cref(iOther.postEventSignal_));
preClearEventSignal_.connect(std::cref(iOther.preClearEventSignal_));
postClearEventSignal_.connect(std::cref(iOther.postClearEventSignal_));
prePathEventSignal_.connect(std::cref(iOther.prePathEventSignal_));
postPathEventSignal_.connect(std::cref(iOther.postPathEventSignal_));
preModuleConstructionSignal_.connect(std::cref(iOther.preModuleConstructionSignal_));
postModuleConstructionSignal_.connect(std::cref(iOther.postModuleConstructionSignal_));
preModuleDestructionSignal_.connect(std::cref(iOther.preModuleDestructionSignal_));
postModuleDestructionSignal_.connect(std::cref(iOther.postModuleDestructionSignal_));
preModuleBeginJobSignal_.connect(std::cref(iOther.preModuleBeginJobSignal_));
postModuleBeginJobSignal_.connect(std::cref(iOther.postModuleBeginJobSignal_));
preModuleEndJobSignal_.connect(std::cref(iOther.preModuleEndJobSignal_));
postModuleEndJobSignal_.connect(std::cref(iOther.postModuleEndJobSignal_));
preModuleEventPrefetchingSignal_.connect(std::cref(iOther.preModuleEventPrefetchingSignal_));
postModuleEventPrefetchingSignal_.connect(std::cref(iOther.postModuleEventPrefetchingSignal_));
preModuleStreamPrefetchingSignal_.connect(std::cref(iOther.preModuleStreamPrefetchingSignal_));
postModuleStreamPrefetchingSignal_.connect(std::cref(iOther.postModuleStreamPrefetchingSignal_));
preModuleGlobalPrefetchingSignal_.connect(std::cref(iOther.preModuleGlobalPrefetchingSignal_));
postModuleGlobalPrefetchingSignal_.connect(std::cref(iOther.postModuleGlobalPrefetchingSignal_));
preModuleEventSignal_.connect(std::cref(iOther.preModuleEventSignal_));
postModuleEventSignal_.connect(std::cref(iOther.postModuleEventSignal_));
preModuleEventAcquireSignal_.connect(std::cref(iOther.preModuleEventAcquireSignal_));
postModuleEventAcquireSignal_.connect(std::cref(iOther.postModuleEventAcquireSignal_));
preModuleTransformPrefetchingSignal_.connect(std::cref(iOther.preModuleTransformPrefetchingSignal_));
postModuleTransformPrefetchingSignal_.connect(std::cref(iOther.postModuleTransformPrefetchingSignal_));
preModuleTransformSignal_.connect(std::cref(iOther.preModuleTransformSignal_));
postModuleTransformSignal_.connect(std::cref(iOther.postModuleTransformSignal_));
preModuleTransformAcquiringSignal_.connect(std::cref(iOther.preModuleTransformAcquiringSignal_));
postModuleTransformAcquiringSignal_.connect(std::cref(iOther.postModuleTransformAcquiringSignal_));
preModuleEventDelayedGetSignal_.connect(std::cref(iOther.preModuleEventDelayedGetSignal_));
postModuleEventDelayedGetSignal_.connect(std::cref(iOther.postModuleEventDelayedGetSignal_));
preEventReadFromSourceSignal_.connect(std::cref(iOther.preEventReadFromSourceSignal_));
postEventReadFromSourceSignal_.connect(std::cref(iOther.postEventReadFromSourceSignal_));
preModuleStreamBeginRunSignal_.connect(std::cref(iOther.preModuleStreamBeginRunSignal_));
postModuleStreamBeginRunSignal_.connect(std::cref(iOther.postModuleStreamBeginRunSignal_));
preModuleStreamEndRunSignal_.connect(std::cref(iOther.preModuleStreamEndRunSignal_));
postModuleStreamEndRunSignal_.connect(std::cref(iOther.postModuleStreamEndRunSignal_));
preModuleStreamBeginLumiSignal_.connect(std::cref(iOther.preModuleStreamBeginLumiSignal_));
postModuleStreamBeginLumiSignal_.connect(std::cref(iOther.postModuleStreamBeginLumiSignal_));
preModuleStreamEndLumiSignal_.connect(std::cref(iOther.preModuleStreamEndLumiSignal_));
postModuleStreamEndLumiSignal_.connect(std::cref(iOther.postModuleStreamEndLumiSignal_));
preModuleBeginProcessBlockSignal_.connect(std::cref(iOther.preModuleBeginProcessBlockSignal_));
postModuleBeginProcessBlockSignal_.connect(std::cref(iOther.postModuleBeginProcessBlockSignal_));
preModuleAccessInputProcessBlockSignal_.connect(std::cref(iOther.preModuleAccessInputProcessBlockSignal_));
postModuleAccessInputProcessBlockSignal_.connect(std::cref(iOther.postModuleAccessInputProcessBlockSignal_));
preModuleEndProcessBlockSignal_.connect(std::cref(iOther.preModuleEndProcessBlockSignal_));
postModuleEndProcessBlockSignal_.connect(std::cref(iOther.postModuleEndProcessBlockSignal_));
preModuleGlobalBeginRunSignal_.connect(std::cref(iOther.preModuleGlobalBeginRunSignal_));
postModuleGlobalBeginRunSignal_.connect(std::cref(iOther.postModuleGlobalBeginRunSignal_));
preModuleGlobalEndRunSignal_.connect(std::cref(iOther.preModuleGlobalEndRunSignal_));
postModuleGlobalEndRunSignal_.connect(std::cref(iOther.postModuleGlobalEndRunSignal_));
preModuleGlobalBeginLumiSignal_.connect(std::cref(iOther.preModuleGlobalBeginLumiSignal_));
postModuleGlobalBeginLumiSignal_.connect(std::cref(iOther.postModuleGlobalBeginLumiSignal_));
preModuleGlobalEndLumiSignal_.connect(std::cref(iOther.preModuleGlobalEndLumiSignal_));
postModuleGlobalEndLumiSignal_.connect(std::cref(iOther.postModuleGlobalEndLumiSignal_));
preModuleWriteProcessBlockSignal_.connect(std::cref(iOther.preModuleWriteProcessBlockSignal_));
postModuleWriteProcessBlockSignal_.connect(std::cref(iOther.postModuleWriteProcessBlockSignal_));
preModuleWriteRunSignal_.connect(std::cref(iOther.preModuleWriteRunSignal_));
postModuleWriteRunSignal_.connect(std::cref(iOther.postModuleWriteRunSignal_));
preModuleWriteLumiSignal_.connect(std::cref(iOther.preModuleWriteLumiSignal_));
postModuleWriteLumiSignal_.connect(std::cref(iOther.postModuleWriteLumiSignal_));
preESModulePrefetchingSignal_.connect(std::cref(iOther.preESModulePrefetchingSignal_));
postESModulePrefetchingSignal_.connect(std::cref(iOther.postESModulePrefetchingSignal_));
preESModuleSignal_.connect(std::cref(iOther.preESModuleSignal_));
postESModuleSignal_.connect(std::cref(iOther.postESModuleSignal_));
preESModuleAcquireSignal_.connect(std::cref(iOther.preESModuleAcquireSignal_));
postESModuleAcquireSignal_.connect(std::cref(iOther.postESModuleAcquireSignal_));
postESModuleRegistrationSignal_.connect(std::cref(iOther.postESModuleRegistrationSignal_));
}
void ActivityRegistry::connect(ActivityRegistry& iOther) {
connectGlobals(iOther);
connectLocals(iOther);
}
void ActivityRegistry::connectToSubProcess(ActivityRegistry& iOther) {
connectGlobals(iOther); // child sees parents global signals
iOther.connectLocals(*this); // parent see childs global signals
}
void ActivityRegistry::copySlotsFrom(ActivityRegistry& iOther) {
copySlotsToFrom(preallocateSignal_, iOther.preallocateSignal_);
copySlotsToFrom(eventSetupConfigurationSignal_, iOther.eventSetupConfigurationSignal_);
copySlotsToFrom(beginProcessingSignal_, iOther.beginProcessingSignal_);
copySlotsToFrom(endProcessingSignal_, iOther.endProcessingSignal_);
copySlotsToFrom(preBeginJobSignal_, iOther.preBeginJobSignal_);
copySlotsToFrom(postBeginJobSignal_, iOther.postBeginJobSignal_);
copySlotsToFromReverse(preEndJobSignal_, iOther.preEndJobSignal_);
copySlotsToFromReverse(postEndJobSignal_, iOther.postEndJobSignal_);
copySlotsToFrom(lookupInitializationCompleteSignal_, iOther.lookupInitializationCompleteSignal_);
copySlotsToFromReverse(jobFailureSignal_, iOther.jobFailureSignal_);
copySlotsToFrom(preSourceSignal_, iOther.preSourceSignal_);
copySlotsToFromReverse(postSourceSignal_, iOther.postSourceSignal_);
copySlotsToFrom(preSourceNextTransitionSignal_, iOther.preSourceNextTransitionSignal_);
copySlotsToFromReverse(postSourceNextTransitionSignal_, iOther.postSourceNextTransitionSignal_);
copySlotsToFrom(preSourceLumiSignal_, iOther.preSourceLumiSignal_);
copySlotsToFromReverse(postSourceLumiSignal_, iOther.postSourceLumiSignal_);
copySlotsToFrom(preSourceRunSignal_, iOther.preSourceRunSignal_);
copySlotsToFromReverse(postSourceRunSignal_, iOther.postSourceRunSignal_);
copySlotsToFrom(preSourceProcessBlockSignal_, iOther.preSourceProcessBlockSignal_);
copySlotsToFromReverse(postSourceProcessBlockSignal_, iOther.postSourceProcessBlockSignal_);
copySlotsToFrom(preOpenFileSignal_, iOther.preOpenFileSignal_);
copySlotsToFromReverse(postOpenFileSignal_, iOther.postOpenFileSignal_);
copySlotsToFrom(preCloseFileSignal_, iOther.preCloseFileSignal_);
copySlotsToFromReverse(postCloseFileSignal_, iOther.postCloseFileSignal_);
copySlotsToFrom(preBeginStreamSignal_, iOther.preBeginStreamSignal_);
copySlotsToFromReverse(postBeginStreamSignal_, iOther.postBeginStreamSignal_);
copySlotsToFrom(preEndStreamSignal_, iOther.preEndStreamSignal_);
copySlotsToFromReverse(postEndStreamSignal_, iOther.postEndStreamSignal_);
copySlotsToFrom(preModuleBeginStreamSignal_, iOther.preModuleBeginStreamSignal_);
copySlotsToFromReverse(postModuleBeginStreamSignal_, iOther.postModuleBeginStreamSignal_);
copySlotsToFrom(preModuleEndStreamSignal_, iOther.preModuleEndStreamSignal_);
copySlotsToFromReverse(postModuleEndStreamSignal_, iOther.postModuleEndStreamSignal_);
copySlotsToFrom(preBeginProcessBlockSignal_, iOther.preBeginProcessBlockSignal_);
copySlotsToFromReverse(postBeginProcessBlockSignal_, iOther.postBeginProcessBlockSignal_);
copySlotsToFrom(preAccessInputProcessBlockSignal_, iOther.preAccessInputProcessBlockSignal_);
copySlotsToFromReverse(postAccessInputProcessBlockSignal_, iOther.postAccessInputProcessBlockSignal_);
copySlotsToFrom(preEndProcessBlockSignal_, iOther.preEndProcessBlockSignal_);
copySlotsToFromReverse(postEndProcessBlockSignal_, iOther.postEndProcessBlockSignal_);
copySlotsToFrom(preGlobalBeginRunSignal_, iOther.preGlobalBeginRunSignal_);
copySlotsToFromReverse(postGlobalBeginRunSignal_, iOther.postGlobalBeginRunSignal_);
copySlotsToFrom(preGlobalEndRunSignal_, iOther.preGlobalEndRunSignal_);
copySlotsToFromReverse(postGlobalEndRunSignal_, iOther.postGlobalEndRunSignal_);
copySlotsToFrom(preWriteProcessBlockSignal_, iOther.preWriteProcessBlockSignal_);
copySlotsToFromReverse(postWriteProcessBlockSignal_, iOther.postWriteProcessBlockSignal_);
copySlotsToFrom(preGlobalWriteRunSignal_, iOther.preGlobalWriteRunSignal_);
copySlotsToFromReverse(postGlobalWriteRunSignal_, iOther.postGlobalWriteRunSignal_);
copySlotsToFrom(preStreamBeginRunSignal_, iOther.preStreamBeginRunSignal_);
copySlotsToFromReverse(postStreamBeginRunSignal_, iOther.postStreamBeginRunSignal_);
copySlotsToFrom(preStreamEndRunSignal_, iOther.preStreamEndRunSignal_);
copySlotsToFromReverse(postStreamEndRunSignal_, iOther.postStreamEndRunSignal_);
copySlotsToFrom(preGlobalBeginLumiSignal_, iOther.preGlobalBeginLumiSignal_);
copySlotsToFromReverse(postGlobalBeginLumiSignal_, iOther.postGlobalBeginLumiSignal_);
copySlotsToFrom(preGlobalEndLumiSignal_, iOther.preGlobalEndLumiSignal_);
copySlotsToFromReverse(postGlobalEndLumiSignal_, iOther.postGlobalEndLumiSignal_);
copySlotsToFrom(preGlobalWriteLumiSignal_, iOther.preGlobalWriteLumiSignal_);
copySlotsToFromReverse(postGlobalWriteLumiSignal_, iOther.postGlobalWriteLumiSignal_);
copySlotsToFrom(preStreamBeginLumiSignal_, iOther.preStreamBeginLumiSignal_);
copySlotsToFromReverse(postStreamBeginLumiSignal_, iOther.postStreamBeginLumiSignal_);
copySlotsToFrom(preStreamEndLumiSignal_, iOther.preStreamEndLumiSignal_);
copySlotsToFromReverse(postStreamEndLumiSignal_, iOther.postStreamEndLumiSignal_);
copySlotsToFrom(preEventSignal_, iOther.preEventSignal_);
copySlotsToFromReverse(postEventSignal_, iOther.postEventSignal_);
copySlotsToFrom(preClearEventSignal_, iOther.preClearEventSignal_);
copySlotsToFromReverse(postClearEventSignal_, iOther.postClearEventSignal_);
copySlotsToFrom(prePathEventSignal_, iOther.prePathEventSignal_);
copySlotsToFromReverse(postPathEventSignal_, iOther.postPathEventSignal_);
copySlotsToFrom(preStreamEarlyTerminationSignal_, iOther.preStreamEarlyTerminationSignal_);
copySlotsToFrom(preGlobalEarlyTerminationSignal_, iOther.preGlobalEarlyTerminationSignal_);
copySlotsToFrom(preSourceEarlyTerminationSignal_, iOther.preSourceEarlyTerminationSignal_);
copySlotsToFrom(preModuleConstructionSignal_, iOther.preModuleConstructionSignal_);
copySlotsToFromReverse(postModuleConstructionSignal_, iOther.postModuleConstructionSignal_);
copySlotsToFrom(preModuleDestructionSignal_, iOther.preModuleDestructionSignal_);
copySlotsToFromReverse(postModuleDestructionSignal_, iOther.postModuleDestructionSignal_);
copySlotsToFrom(preModuleBeginJobSignal_, iOther.preModuleBeginJobSignal_);
copySlotsToFromReverse(postModuleBeginJobSignal_, iOther.postModuleBeginJobSignal_);
copySlotsToFrom(preModuleEndJobSignal_, iOther.preModuleEndJobSignal_);
copySlotsToFromReverse(postModuleEndJobSignal_, iOther.postModuleEndJobSignal_);
copySlotsToFrom(preModuleEventPrefetchingSignal_, iOther.preModuleEventPrefetchingSignal_);
copySlotsToFromReverse(postModuleEventPrefetchingSignal_, iOther.postModuleEventPrefetchingSignal_);
copySlotsToFrom(preModuleStreamPrefetchingSignal_, iOther.preModuleStreamPrefetchingSignal_);
copySlotsToFromReverse(postModuleStreamPrefetchingSignal_, iOther.postModuleStreamPrefetchingSignal_);
copySlotsToFrom(preModuleGlobalPrefetchingSignal_, iOther.preModuleGlobalPrefetchingSignal_);
copySlotsToFromReverse(postModuleGlobalPrefetchingSignal_, iOther.postModuleGlobalPrefetchingSignal_);
copySlotsToFrom(preModuleEventSignal_, iOther.preModuleEventSignal_);
copySlotsToFromReverse(postModuleEventSignal_, iOther.postModuleEventSignal_);
copySlotsToFrom(preModuleEventAcquireSignal_, iOther.preModuleEventAcquireSignal_);
copySlotsToFromReverse(postModuleEventAcquireSignal_, iOther.postModuleEventAcquireSignal_);
copySlotsToFrom(preModuleTransformPrefetchingSignal_, iOther.preModuleTransformPrefetchingSignal_);
copySlotsToFromReverse(postModuleTransformPrefetchingSignal_, iOther.postModuleTransformPrefetchingSignal_);
copySlotsToFrom(preModuleTransformSignal_, iOther.preModuleTransformSignal_);
copySlotsToFromReverse(postModuleTransformSignal_, iOther.postModuleTransformSignal_);
copySlotsToFrom(preModuleTransformAcquiringSignal_, iOther.preModuleTransformAcquiringSignal_);
copySlotsToFromReverse(postModuleTransformAcquiringSignal_, iOther.postModuleTransformAcquiringSignal_);
copySlotsToFrom(preModuleEventDelayedGetSignal_, iOther.preModuleEventDelayedGetSignal_);
copySlotsToFromReverse(postModuleEventDelayedGetSignal_, iOther.postModuleEventDelayedGetSignal_);
copySlotsToFrom(preEventReadFromSourceSignal_, iOther.preEventReadFromSourceSignal_);
copySlotsToFromReverse(postEventReadFromSourceSignal_, iOther.postEventReadFromSourceSignal_);
copySlotsToFrom(preModuleStreamBeginRunSignal_, iOther.preModuleStreamBeginRunSignal_);
copySlotsToFromReverse(postModuleStreamBeginRunSignal_, iOther.postModuleStreamBeginRunSignal_);
copySlotsToFrom(preModuleStreamEndRunSignal_, iOther.preModuleStreamEndRunSignal_);
copySlotsToFromReverse(postModuleStreamEndRunSignal_, iOther.postModuleStreamEndRunSignal_);
copySlotsToFrom(preModuleStreamBeginLumiSignal_, iOther.preModuleStreamBeginLumiSignal_);
copySlotsToFromReverse(postModuleStreamBeginLumiSignal_, iOther.postModuleStreamBeginLumiSignal_);
copySlotsToFrom(preModuleStreamEndLumiSignal_, iOther.preModuleStreamEndLumiSignal_);
copySlotsToFromReverse(postModuleStreamEndLumiSignal_, iOther.postModuleStreamEndLumiSignal_);
copySlotsToFrom(preModuleBeginProcessBlockSignal_, iOther.preModuleBeginProcessBlockSignal_);
copySlotsToFromReverse(postModuleBeginProcessBlockSignal_, iOther.postModuleBeginProcessBlockSignal_);
copySlotsToFrom(preModuleAccessInputProcessBlockSignal_, iOther.preModuleAccessInputProcessBlockSignal_);
copySlotsToFromReverse(postModuleAccessInputProcessBlockSignal_, iOther.postModuleAccessInputProcessBlockSignal_);
copySlotsToFrom(preModuleEndProcessBlockSignal_, iOther.preModuleEndProcessBlockSignal_);
copySlotsToFromReverse(postModuleEndProcessBlockSignal_, iOther.postModuleEndProcessBlockSignal_);
copySlotsToFrom(preModuleGlobalBeginRunSignal_, iOther.preModuleGlobalBeginRunSignal_);
copySlotsToFromReverse(postModuleGlobalBeginRunSignal_, iOther.postModuleGlobalBeginRunSignal_);
copySlotsToFrom(preModuleGlobalEndRunSignal_, iOther.preModuleGlobalEndRunSignal_);
copySlotsToFromReverse(postModuleGlobalEndRunSignal_, iOther.postModuleGlobalEndRunSignal_);
copySlotsToFrom(preModuleGlobalBeginLumiSignal_, iOther.preModuleGlobalBeginLumiSignal_);
copySlotsToFromReverse(postModuleGlobalBeginLumiSignal_, iOther.postModuleGlobalBeginLumiSignal_);
copySlotsToFrom(preModuleGlobalEndLumiSignal_, iOther.preModuleGlobalEndLumiSignal_);
copySlotsToFromReverse(postModuleGlobalEndLumiSignal_, iOther.postModuleGlobalEndLumiSignal_);
copySlotsToFrom(preModuleWriteProcessBlockSignal_, iOther.preModuleWriteProcessBlockSignal_);
copySlotsToFromReverse(postModuleWriteProcessBlockSignal_, iOther.postModuleWriteProcessBlockSignal_);
copySlotsToFrom(preModuleWriteRunSignal_, iOther.preModuleWriteRunSignal_);
copySlotsToFromReverse(postModuleWriteRunSignal_, iOther.postModuleWriteRunSignal_);
copySlotsToFrom(preModuleWriteLumiSignal_, iOther.preModuleWriteLumiSignal_);
copySlotsToFromReverse(postModuleWriteLumiSignal_, iOther.postModuleWriteLumiSignal_);
copySlotsToFrom(preESModulePrefetchingSignal_, iOther.preESModulePrefetchingSignal_);
copySlotsToFromReverse(postESModulePrefetchingSignal_, iOther.postESModulePrefetchingSignal_);
copySlotsToFrom(preESModuleSignal_, iOther.preESModuleSignal_);
copySlotsToFromReverse(postESModuleSignal_, iOther.postESModuleSignal_);
copySlotsToFrom(preESModuleAcquireSignal_, iOther.preESModuleAcquireSignal_);
copySlotsToFromReverse(postESModuleAcquireSignal_, iOther.postESModuleAcquireSignal_);
copySlotsToFromReverse(postESModuleRegistrationSignal_, iOther.postESModuleRegistrationSignal_);
copySlotsToFrom(preSourceConstructionSignal_, iOther.preSourceConstructionSignal_);
copySlotsToFromReverse(postSourceConstructionSignal_, iOther.postSourceConstructionSignal_);
copySlotsToFrom(esSyncIOVQueuingSignal_, iOther.esSyncIOVQueuingSignal_);
copySlotsToFrom(preESSyncIOVSignal_, iOther.preESSyncIOVSignal_);
copySlotsToFromReverse(postESSyncIOVSignal_, iOther.postESSyncIOVSignal_);
}
} // namespace edm
|