CMS 3D CMS Logo

ActivityRegistry.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: ServiceRegistry
4 // Class : ActivityRegistry
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Chris Jones
10 // Created: Tue Sep 6 10:26:49 EDT 2005
11 //
12 
13 // system include files
14 #include <algorithm>
15 
16 // user include files
20 
21 //
22 // constants, enums and typedefs
23 //
24 
25 //
26 // static data member definitions
27 //
28 
29 //
30 // constructors and destructor
31 //
32 //ActivityRegistry::ActivityRegistry() {
33 //}
34 
35 // ActivityRegistry::ActivityRegistry(ActivityRegistry const& rhs) {
36 // // do actual copying here;
37 // }
38 
39 //ActivityRegistry::~ActivityRegistry() {
40 //}
41 
42 //
43 // assignment operators
44 //
45 // ActivityRegistry const& ActivityRegistry::operator=(ActivityRegistry const& rhs) {
46 // //An exception safe implementation is
47 // ActivityRegistry temp(rhs);
48 // swap(rhs);
49 //
50 // return *this;
51 // }
52 
53 //
54 // member functions
55 //
56 namespace edm {
57  namespace {
58  template<typename T>
59  inline
60  void
61  copySlotsToFrom(T& iTo, T& iFrom) {
62  for(auto& slot: iFrom.slots()) {
63  iTo.connect(slot);
64  }
65  }
66 
67  template<typename T>
68  inline
69  void
70  copySlotsToFromReverse(T& iTo, T& iFrom) {
71  // This handles service slots that are supposed to be in reverse
72  // order of construction. Copying new ones in is a little
73  // tricky. Here is an example of what follows
74  // slots in iTo before 4 3 2 1 and copy in slots in iFrom 8 7 6 5.
75  // reverse iFrom 5 6 7 8
76  // then do the copy to front 8 7 6 5 4 3 2 1
77 
78  auto slotsFrom = iFrom.slots();
79 
80  std::reverse(slotsFrom.begin(), slotsFrom.end());
81 
82  for(auto& slotFrom: slotsFrom) {
83  iTo.connect_front(slotFrom);
84  }
85  }
86  }
87 
88  namespace signalslot {
90  throw cms::Exception("ConnectedToObsoleteServiceSignal")
91  <<"A Service has connected to an obsolete ActivityRegistry signal.";
92  }
93  }
94 
95  void
97  preallocateSignal_.connect(std::cref(iOther.preallocateSignal_));
98  postBeginJobSignal_.connect(std::cref(iOther.postBeginJobSignal_));
99  preEndJobSignal_.connect(std::cref(iOther.preEndJobSignal_));
100  postEndJobSignal_.connect(std::cref(iOther.postEndJobSignal_));
101 
102  jobFailureSignal_.connect(std::cref(iOther.jobFailureSignal_));
103 
104  preSourceSignal_.connect(std::cref(iOther.preSourceSignal_));
105  postSourceSignal_.connect(std::cref(iOther.postSourceSignal_));
106 
107  preSourceLumiSignal_.connect(std::cref(iOther.preSourceLumiSignal_));
108  postSourceLumiSignal_.connect(std::cref(iOther.postSourceLumiSignal_));
109 
110  preSourceRunSignal_.connect(std::cref(iOther.preSourceRunSignal_));
111  postSourceRunSignal_.connect(std::cref(iOther.postSourceRunSignal_));
112 
113  preOpenFileSignal_.connect(std::cref(iOther.preOpenFileSignal_));
114  postOpenFileSignal_.connect(std::cref(iOther.postOpenFileSignal_));
115 
116  preCloseFileSignal_.connect(std::cref(iOther.preCloseFileSignal_));
117  postCloseFileSignal_.connect(std::cref(iOther.postCloseFileSignal_));
118 
119  preSourceConstructionSignal_.connect(std::cref(iOther.preSourceConstructionSignal_));
120  postSourceConstructionSignal_.connect(std::cref(iOther.postSourceConstructionSignal_));
121 
122  preStreamEarlyTerminationSignal_.connect(std::cref(iOther.preStreamEarlyTerminationSignal_));
123  preGlobalEarlyTerminationSignal_.connect(std::cref(iOther.preGlobalEarlyTerminationSignal_));
124  preSourceEarlyTerminationSignal_.connect(std::cref(iOther.preSourceEarlyTerminationSignal_));
125 
126  }
127 
128  void
130 
131  preBeginJobSignal_.connect(std::cref(iOther.preBeginJobSignal_));
132 
133  preModuleBeginStreamSignal_.connect(std::cref(iOther.preModuleBeginStreamSignal_));
134  postModuleBeginStreamSignal_.connect(std::cref(iOther.postModuleBeginStreamSignal_));
135 
136  preModuleEndStreamSignal_.connect(std::cref(iOther.preModuleEndStreamSignal_));
137  postModuleEndStreamSignal_.connect(std::cref(iOther.postModuleEndStreamSignal_));
138 
139  preGlobalBeginRunSignal_.connect(std::cref(iOther.preGlobalBeginRunSignal_));
140  postGlobalBeginRunSignal_.connect(std::cref(iOther.postGlobalBeginRunSignal_));
141 
142  preGlobalEndRunSignal_.connect(std::cref(iOther.preGlobalEndRunSignal_));
143  postGlobalEndRunSignal_.connect(std::cref(iOther.postGlobalEndRunSignal_));
144 
145  preStreamBeginRunSignal_.connect(std::cref(iOther.preStreamBeginRunSignal_));
146  postStreamBeginRunSignal_.connect(std::cref(iOther.postStreamBeginRunSignal_));
147 
148  preStreamEndRunSignal_.connect(std::cref(iOther.preStreamEndRunSignal_));
149  postStreamEndRunSignal_.connect(std::cref(iOther.postStreamEndRunSignal_));
150 
151  preGlobalBeginLumiSignal_.connect(std::cref(iOther.preGlobalBeginLumiSignal_));
152  postGlobalBeginLumiSignal_.connect(std::cref(iOther.postGlobalBeginLumiSignal_));
153 
154  preGlobalEndLumiSignal_.connect(std::cref(iOther.preGlobalEndLumiSignal_));
155  postGlobalEndLumiSignal_.connect(std::cref(iOther.postGlobalEndLumiSignal_));
156 
157  preStreamBeginLumiSignal_.connect(std::cref(iOther.preStreamBeginLumiSignal_));
158  postStreamBeginLumiSignal_.connect(std::cref(iOther.postStreamBeginLumiSignal_));
159 
160  preStreamEndLumiSignal_.connect(std::cref(iOther.preStreamEndLumiSignal_));
161  postStreamEndLumiSignal_.connect(std::cref(iOther.postStreamEndLumiSignal_));
162 
163  preEventSignal_.connect(std::cref(iOther.preEventSignal_));
164  postEventSignal_.connect(std::cref(iOther.postEventSignal_));
165 
166  prePathEventSignal_.connect(std::cref(iOther.prePathEventSignal_));
167  postPathEventSignal_.connect(std::cref(iOther.postPathEventSignal_));
168 
169  //preProcessEventSignal_.connect(std::cref(iOther.preProcessEventSignal_));
170  //postProcessEventSignal_.connect(std::cref(iOther.postProcessEventSignal_));
171 
172  //preBeginRunSignal_.connect(std::cref(iOther.preBeginRunSignal_));
173  //postBeginRunSignal_.connect(std::cref(iOther.postBeginRunSignal_));
174 
175  //preEndRunSignal_.connect(std::cref(iOther.preEndRunSignal_));
176  //postEndRunSignal_.connect(std::cref(iOther.postEndRunSignal_));
177 
178  //preBeginLumiSignal_.connect(std::cref(iOther.preBeginLumiSignal_));
179  //postBeginLumiSignal_.connect(std::cref(iOther.postBeginLumiSignal_));
180 
181  //preEndLumiSignal_.connect(std::cref(iOther.preEndLumiSignal_));
182  //postEndLumiSignal_.connect(std::cref(iOther.postEndLumiSignal_));
183 
184  //preProcessPathSignal_.connect(std::cref(iOther.preProcessPathSignal_));
185  //postProcessPathSignal_.connect(std::cref(iOther.postProcessPathSignal_));
186 
187  //prePathBeginRunSignal_.connect(std::cref(iOther.prePathBeginRunSignal_));
188  //postPathBeginRunSignal_.connect(std::cref(iOther.postPathBeginRunSignal_));
189 
190  //prePathEndRunSignal_.connect(std::cref(iOther.prePathEndRunSignal_));
191  //postPathEndRunSignal_.connect(std::cref(iOther.postPathEndRunSignal_));
192 
193  //prePathBeginLumiSignal_.connect(std::cref(iOther.prePathBeginLumiSignal_));
194  //postPathBeginLumiSignal_.connect(std::cref(iOther.postPathBeginLumiSignal_));
195 
196  //prePathEndLumiSignal_.connect(std::cref(iOther.prePathEndLumiSignal_));
197  //postPathEndLumiSignal_.connect(std::cref(iOther.postPathEndLumiSignal_));
198 
199  preModuleConstructionSignal_.connect(std::cref(iOther.preModuleConstructionSignal_));
200  postModuleConstructionSignal_.connect(std::cref(iOther.postModuleConstructionSignal_));
201 
202  preModuleBeginJobSignal_.connect(std::cref(iOther.preModuleBeginJobSignal_));
203  postModuleBeginJobSignal_.connect(std::cref(iOther.postModuleBeginJobSignal_));
204 
205  preModuleEndJobSignal_.connect(std::cref(iOther.preModuleEndJobSignal_));
206  postModuleEndJobSignal_.connect(std::cref(iOther.postModuleEndJobSignal_));
207 
208  preModuleEventPrefetchingSignal_.connect(std::cref(iOther.preModuleEventPrefetchingSignal_));
209  postModuleEventPrefetchingSignal_.connect(std::cref(iOther.postModuleEventPrefetchingSignal_));
210 
211  preModuleEventSignal_.connect(std::cref(iOther.preModuleEventSignal_));
212  postModuleEventSignal_.connect(std::cref(iOther.postModuleEventSignal_));
213 
214  preModuleEventAcquireSignal_.connect(std::cref(iOther.preModuleEventAcquireSignal_));
215  postModuleEventAcquireSignal_.connect(std::cref(iOther.postModuleEventAcquireSignal_));
216 
217  preModuleEventDelayedGetSignal_.connect(std::cref(iOther.preModuleEventDelayedGetSignal_));
218  postModuleEventDelayedGetSignal_.connect(std::cref(iOther.postModuleEventDelayedGetSignal_));
219 
220  preEventReadFromSourceSignal_.connect(std::cref(iOther.preEventReadFromSourceSignal_));
221  postEventReadFromSourceSignal_.connect(std::cref(iOther.postEventReadFromSourceSignal_));
222 
223  preModuleStreamBeginRunSignal_.connect(std::cref(iOther.preModuleStreamBeginRunSignal_));
224  postModuleStreamBeginRunSignal_.connect(std::cref(iOther.postModuleStreamBeginRunSignal_));
225 
226  preModuleStreamEndRunSignal_.connect(std::cref(iOther.preModuleStreamEndRunSignal_));
227  postModuleStreamEndRunSignal_.connect(std::cref(iOther.postModuleStreamEndRunSignal_));
228 
229  preModuleStreamBeginLumiSignal_.connect(std::cref(iOther.preModuleStreamBeginLumiSignal_));
230  postModuleStreamBeginLumiSignal_.connect(std::cref(iOther.postModuleStreamBeginLumiSignal_));
231 
232  preModuleStreamEndLumiSignal_.connect(std::cref(iOther.preModuleStreamEndLumiSignal_));
233  postModuleStreamEndLumiSignal_.connect(std::cref(iOther.postModuleStreamEndLumiSignal_));
234 
235  preModuleGlobalBeginRunSignal_.connect(std::cref(iOther.preModuleGlobalBeginRunSignal_));
236  postModuleGlobalBeginRunSignal_.connect(std::cref(iOther.postModuleGlobalBeginRunSignal_));
237 
238  preModuleGlobalEndRunSignal_.connect(std::cref(iOther.preModuleGlobalEndRunSignal_));
239  postModuleGlobalEndRunSignal_.connect(std::cref(iOther.postModuleGlobalEndRunSignal_));
240 
241  preModuleGlobalBeginLumiSignal_.connect(std::cref(iOther.preModuleGlobalBeginLumiSignal_));
242  postModuleGlobalBeginLumiSignal_.connect(std::cref(iOther.postModuleGlobalBeginLumiSignal_));
243 
244  preModuleGlobalEndLumiSignal_.connect(std::cref(iOther.preModuleGlobalEndLumiSignal_));
245  postModuleGlobalEndLumiSignal_.connect(std::cref(iOther.postModuleGlobalEndLumiSignal_));
246 
247  preModuleWriteRunSignal_.connect(std::cref(iOther.preModuleWriteRunSignal_));
248  postModuleWriteRunSignal_.connect(std::cref(iOther.postModuleWriteRunSignal_));
249 
250  preModuleWriteLumiSignal_.connect(std::cref(iOther.preModuleWriteLumiSignal_));
251  postModuleWriteLumiSignal_.connect(std::cref(iOther.postModuleWriteLumiSignal_));
252 
253  //preModuleSignal_.connect(std::cref(iOther.preModuleSignal_));
254  //postModuleSignal_.connect(std::cref(iOther.postModuleSignal_));
255 
256  //preModuleBeginRunSignal_.connect(std::cref(iOther.preModuleBeginRunSignal_));
257  //postModuleBeginRunSignal_.connect(std::cref(iOther.postModuleBeginRunSignal_));
258 
259  //preModuleEndRunSignal_.connect(std::cref(iOther.preModuleEndRunSignal_));
260  //postModuleEndRunSignal_.connect(std::cref(iOther.postModuleEndRunSignal_));
261 
262  //preModuleBeginLumiSignal_.connect(std::cref(iOther.preModuleBeginLumiSignal_));
263  //postModuleBeginLumiSignal_.connect(std::cref(iOther.postModuleBeginLumiSignal_));
264 
265  //preModuleEndLumiSignal_.connect(std::cref(iOther.preModuleEndLumiSignal_));
266  //postModuleEndLumiSignal_.connect(std::cref(iOther.postModuleEndLumiSignal_));
267 
268  preLockEventSetupGetSignal_.connect(std::cref(iOther.preLockEventSetupGetSignal_));
269  postLockEventSetupGetSignal_.connect(std::cref(iOther.postLockEventSetupGetSignal_));
270  postEventSetupGetSignal_.connect(std::cref(iOther.postEventSetupGetSignal_));
271  }
272 
273  void
275  connectGlobals(iOther);
276  connectLocals(iOther);
277  }
278 
279  void
281  connectGlobals(iOther); // child sees parents global signals
282  iOther.connectLocals(*this); // parent see childs global signals
283  }
284 
285  void
287  copySlotsToFrom(preallocateSignal_,iOther.preallocateSignal_);
288  copySlotsToFrom(preBeginJobSignal_, iOther.preBeginJobSignal_);
289  copySlotsToFrom(postBeginJobSignal_, iOther.postBeginJobSignal_);
290  copySlotsToFromReverse(preEndJobSignal_, iOther.preEndJobSignal_);
291  copySlotsToFromReverse(postEndJobSignal_, iOther.postEndJobSignal_);
292 
293  copySlotsToFromReverse(jobFailureSignal_, iOther.jobFailureSignal_);
294 
295  copySlotsToFrom(preSourceSignal_, iOther.preSourceSignal_);
296  copySlotsToFromReverse(postSourceSignal_, iOther.postSourceSignal_);
297 
298  copySlotsToFrom(preSourceLumiSignal_, iOther.preSourceLumiSignal_);
299  copySlotsToFromReverse(postSourceLumiSignal_, iOther.postSourceLumiSignal_);
300 
301  copySlotsToFrom(preSourceRunSignal_, iOther.preSourceRunSignal_);
302  copySlotsToFromReverse(postSourceRunSignal_, iOther.postSourceRunSignal_);
303 
304  copySlotsToFrom(preOpenFileSignal_, iOther.preOpenFileSignal_);
305  copySlotsToFromReverse(postOpenFileSignal_, iOther.postOpenFileSignal_);
306 
307  copySlotsToFrom(preCloseFileSignal_, iOther.preCloseFileSignal_);
308  copySlotsToFromReverse(postCloseFileSignal_, iOther.postCloseFileSignal_);
309 
310  copySlotsToFrom(preModuleBeginStreamSignal_, iOther.preModuleBeginStreamSignal_);
311  copySlotsToFromReverse(postModuleBeginStreamSignal_, iOther.postModuleBeginStreamSignal_);
312 
313  copySlotsToFrom(preModuleEndStreamSignal_, iOther.preModuleEndStreamSignal_);
314  copySlotsToFromReverse(postModuleEndStreamSignal_, iOther.postModuleEndStreamSignal_);
315 
316  copySlotsToFrom(preGlobalBeginRunSignal_, iOther.preGlobalBeginRunSignal_);
317  copySlotsToFromReverse(postGlobalBeginRunSignal_, iOther.postGlobalBeginRunSignal_);
318 
319  copySlotsToFrom(preGlobalEndRunSignal_, iOther.preGlobalEndRunSignal_);
320  copySlotsToFromReverse(postGlobalEndRunSignal_, iOther.postGlobalEndRunSignal_);
321 
322  copySlotsToFrom(preStreamBeginRunSignal_, iOther.preStreamBeginRunSignal_);
323  copySlotsToFromReverse(postStreamBeginRunSignal_, iOther.postStreamBeginRunSignal_);
324 
325  copySlotsToFrom(preStreamEndRunSignal_, iOther.preStreamEndRunSignal_);
326  copySlotsToFromReverse(postStreamEndRunSignal_, iOther.postStreamEndRunSignal_);
327 
328  copySlotsToFrom(preGlobalBeginLumiSignal_, iOther.preGlobalBeginLumiSignal_);
329  copySlotsToFromReverse(postGlobalBeginLumiSignal_, iOther.postGlobalBeginLumiSignal_);
330 
331  copySlotsToFrom(preGlobalEndLumiSignal_, iOther.preGlobalEndLumiSignal_);
332  copySlotsToFromReverse(postGlobalEndLumiSignal_, iOther.postGlobalEndLumiSignal_);
333 
334  copySlotsToFrom(preStreamBeginLumiSignal_, iOther.preStreamBeginLumiSignal_);
335  copySlotsToFromReverse(postStreamBeginLumiSignal_, iOther.postStreamBeginLumiSignal_);
336 
337  copySlotsToFrom(preStreamEndLumiSignal_, iOther.preStreamEndLumiSignal_);
338  copySlotsToFromReverse(postStreamEndLumiSignal_, iOther.postStreamEndLumiSignal_);
339 
340  copySlotsToFrom(preEventSignal_, iOther.preEventSignal_);
341  copySlotsToFromReverse(postEventSignal_, iOther.postEventSignal_);
342 
343  copySlotsToFrom(prePathEventSignal_, iOther.prePathEventSignal_);
344  copySlotsToFromReverse(postPathEventSignal_, iOther.postPathEventSignal_);
345 
346  copySlotsToFrom(preStreamEarlyTerminationSignal_, iOther.preStreamEarlyTerminationSignal_);
347  copySlotsToFrom(preGlobalEarlyTerminationSignal_, iOther.preGlobalEarlyTerminationSignal_);
348  copySlotsToFrom(preSourceEarlyTerminationSignal_, iOther.preSourceEarlyTerminationSignal_);
349 
350  /*
351  copySlotsToFrom(preProcessEventSignal_, iOther.preProcessEventSignal_);
352  copySlotsToFromReverse(postProcessEventSignal_, iOther.postProcessEventSignal_);
353 
354  copySlotsToFrom(preBeginRunSignal_, iOther.preBeginRunSignal_);
355  copySlotsToFromReverse(postBeginRunSignal_, iOther.postBeginRunSignal_);
356 
357  copySlotsToFrom(preEndRunSignal_, iOther.preEndRunSignal_);
358  copySlotsToFromReverse(postEndRunSignal_, iOther.postEndRunSignal_);
359 
360  copySlotsToFrom(preBeginLumiSignal_, iOther.preBeginLumiSignal_);
361  copySlotsToFromReverse(postBeginLumiSignal_, iOther.postBeginLumiSignal_);
362 
363  copySlotsToFrom(preEndLumiSignal_, iOther.preEndLumiSignal_);
364  copySlotsToFromReverse(postEndLumiSignal_, iOther.postEndLumiSignal_);
365 
366  copySlotsToFrom(preProcessPathSignal_, iOther.preProcessPathSignal_);
367  copySlotsToFromReverse(postProcessPathSignal_, iOther.postProcessPathSignal_);
368 
369  copySlotsToFrom(prePathBeginRunSignal_, iOther.prePathBeginRunSignal_);
370  copySlotsToFromReverse(postPathBeginRunSignal_, iOther.postPathBeginRunSignal_);
371 
372  copySlotsToFrom(prePathEndRunSignal_, iOther.prePathEndRunSignal_);
373  copySlotsToFromReverse(postPathEndRunSignal_, iOther.postPathEndRunSignal_);
374 
375  copySlotsToFrom(prePathBeginLumiSignal_, iOther.prePathBeginLumiSignal_);
376  copySlotsToFromReverse(postPathBeginLumiSignal_, iOther.postPathBeginLumiSignal_);
377 
378  copySlotsToFrom(prePathEndLumiSignal_, iOther.prePathEndLumiSignal_);
379  copySlotsToFromReverse(postPathEndLumiSignal_, iOther.postPathEndLumiSignal_);
380 */
381  copySlotsToFrom(preModuleConstructionSignal_, iOther.preModuleConstructionSignal_);
382  copySlotsToFromReverse(postModuleConstructionSignal_, iOther.postModuleConstructionSignal_);
383 
384  copySlotsToFrom(preModuleBeginJobSignal_, iOther.preModuleBeginJobSignal_);
385  copySlotsToFromReverse(postModuleBeginJobSignal_, iOther.postModuleBeginJobSignal_);
386 
387  copySlotsToFrom(preModuleEndJobSignal_, iOther.preModuleEndJobSignal_);
388  copySlotsToFromReverse(postModuleEndJobSignal_, iOther.postModuleEndJobSignal_);
389 
390  copySlotsToFrom(preModuleEventPrefetchingSignal_, iOther.preModuleEventPrefetchingSignal_);
391  copySlotsToFromReverse(postModuleEventPrefetchingSignal_, iOther.postModuleEventPrefetchingSignal_);
392 
393  copySlotsToFrom(preModuleEventSignal_, iOther.preModuleEventSignal_);
394  copySlotsToFromReverse(postModuleEventSignal_, iOther.postModuleEventSignal_);
395 
396  copySlotsToFrom(preModuleEventAcquireSignal_, iOther.preModuleEventAcquireSignal_);
397  copySlotsToFromReverse(postModuleEventAcquireSignal_, iOther.postModuleEventAcquireSignal_);
398 
399  copySlotsToFrom(preModuleEventDelayedGetSignal_, iOther.preModuleEventDelayedGetSignal_);
400  copySlotsToFromReverse(postModuleEventDelayedGetSignal_, iOther.postModuleEventDelayedGetSignal_);
401 
402  copySlotsToFrom(preEventReadFromSourceSignal_, iOther.preEventReadFromSourceSignal_);
403  copySlotsToFromReverse(postEventReadFromSourceSignal_, iOther.postEventReadFromSourceSignal_);
404 
405  copySlotsToFrom(preModuleStreamBeginRunSignal_, iOther.preModuleStreamBeginRunSignal_);
406  copySlotsToFromReverse(postModuleStreamBeginRunSignal_, iOther.postModuleStreamBeginRunSignal_);
407 
408  copySlotsToFrom(preModuleStreamEndRunSignal_, iOther.preModuleStreamEndRunSignal_);
409  copySlotsToFromReverse(postModuleStreamEndRunSignal_, iOther.postModuleStreamEndRunSignal_);
410 
411  copySlotsToFrom(preModuleStreamBeginLumiSignal_, iOther.preModuleStreamBeginLumiSignal_);
412  copySlotsToFromReverse(postModuleStreamBeginLumiSignal_, iOther.postModuleStreamBeginLumiSignal_);
413 
414  copySlotsToFrom(preModuleStreamEndLumiSignal_, iOther.preModuleStreamEndLumiSignal_);
415  copySlotsToFromReverse(postModuleStreamEndLumiSignal_, iOther.postModuleStreamEndLumiSignal_);
416 
417  copySlotsToFrom(preModuleGlobalBeginRunSignal_, iOther.preModuleGlobalBeginRunSignal_);
418  copySlotsToFromReverse(postModuleGlobalBeginRunSignal_, iOther.postModuleGlobalBeginRunSignal_);
419 
420  copySlotsToFrom(preModuleGlobalEndRunSignal_, iOther.preModuleGlobalEndRunSignal_);
421  copySlotsToFromReverse(postModuleGlobalEndRunSignal_, iOther.postModuleGlobalEndRunSignal_);
422 
423  copySlotsToFrom(preModuleGlobalBeginLumiSignal_, iOther.preModuleGlobalBeginLumiSignal_);
424  copySlotsToFromReverse(postModuleGlobalBeginLumiSignal_, iOther.postModuleGlobalBeginLumiSignal_);
425 
426  copySlotsToFrom(preModuleGlobalEndLumiSignal_, iOther.preModuleGlobalEndLumiSignal_);
427  copySlotsToFromReverse(postModuleGlobalEndLumiSignal_, iOther.postModuleGlobalEndLumiSignal_);
428 
429  copySlotsToFrom(preModuleWriteRunSignal_, iOther.preModuleWriteRunSignal_);
430  copySlotsToFromReverse(postModuleWriteRunSignal_, iOther.postModuleWriteRunSignal_);
431 
432  copySlotsToFrom(preModuleWriteLumiSignal_, iOther.preModuleWriteLumiSignal_);
433  copySlotsToFromReverse(postModuleWriteLumiSignal_, iOther.postModuleWriteLumiSignal_);
434 
435  /*
436  copySlotsToFrom(preModuleSignal_, iOther.preModuleSignal_);
437  copySlotsToFromReverse(postModuleSignal_, iOther.postModuleSignal_);
438 
439  copySlotsToFrom(preModuleBeginRunSignal_, iOther.preModuleBeginRunSignal_);
440  copySlotsToFromReverse(postModuleBeginRunSignal_, iOther.postModuleBeginRunSignal_);
441 
442  copySlotsToFrom(preModuleEndRunSignal_, iOther.preModuleEndRunSignal_);
443  copySlotsToFromReverse(postModuleEndRunSignal_, iOther.postModuleEndRunSignal_);
444 
445  copySlotsToFrom(preModuleBeginLumiSignal_, iOther.preModuleBeginLumiSignal_);
446  copySlotsToFromReverse(postModuleBeginLumiSignal_, iOther.postModuleBeginLumiSignal_);
447 
448  copySlotsToFrom(preModuleEndLumiSignal_, iOther.preModuleEndLumiSignal_);
449  copySlotsToFromReverse(postModuleEndLumiSignal_, iOther.postModuleEndLumiSignal_);
450  */
451  copySlotsToFrom(preSourceConstructionSignal_, iOther.preSourceConstructionSignal_);
452  copySlotsToFromReverse(postSourceConstructionSignal_, iOther.postSourceConstructionSignal_);
453 
454  copySlotsToFrom(preLockEventSetupGetSignal_, iOther.preLockEventSetupGetSignal_);
455  copySlotsToFromReverse(postLockEventSetupGetSignal_, iOther.postLockEventSetupGetSignal_);
456  copySlotsToFromReverse(postEventSetupGetSignal_, iOther.postEventSetupGetSignal_);
457  }
458 
459  //
460  // const member functions
461  //
462 
463  //
464  // static member functions
465  //
466 }
PreModuleEventPrefetching preModuleEventPrefetchingSignal_
PreModuleStreamBeginRun preModuleStreamBeginRunSignal_
PostSourceLumi postSourceLumiSignal_
void connectLocals(ActivityRegistry &iOther)
PreStreamBeginRun preStreamBeginRunSignal_
PostModuleEventDelayedGet postModuleEventDelayedGetSignal_
PostModuleStreamEndRun postModuleStreamEndRunSignal_
PreModuleEventDelayedGet preModuleEventDelayedGetSignal_
PrePathEvent prePathEventSignal_
PostModuleGlobalBeginRun postModuleGlobalBeginRunSignal_
PostModuleBeginStream postModuleBeginStreamSignal_
PreGlobalBeginRun preGlobalBeginRunSignal_
signal is emitted after the Run has been created by the InputSource but before any modules have seen ...
PreModuleWriteLumi preModuleWriteLumiSignal_
PreSourceRun preSourceRunSignal_
PostModuleEvent postModuleEventSignal_
void throwObsoleteSignalException()
PostOpenFile postOpenFileSignal_
PreGlobalEndRun preGlobalEndRunSignal_
PostEvent postEventSignal_
signal is emitted after all modules have finished processing the Event
PostStreamEndLumi postStreamEndLumiSignal_
PostGlobalBeginRun postGlobalBeginRunSignal_
void connectGlobals(ActivityRegistry &iOther)
PostModuleWriteLumi postModuleWriteLumiSignal_
PreModuleBeginStream preModuleBeginStreamSignal_
void copySlotsFrom(ActivityRegistry &iOther)
PostModuleEventPrefetching postModuleEventPrefetchingSignal_
PostModuleStreamBeginLumi postModuleStreamBeginLumiSignal_
PostSourceRun postSourceRunSignal_
PostSourceConstruction postSourceConstructionSignal_
PreSourceConstruction preSourceConstructionSignal_
PreLockEventSetupGet preLockEventSetupGetSignal_
signal is emitted before lock taken in EventSetup DataProxy::get function
PostModuleEventAcquire postModuleEventAcquireSignal_
PreModuleStreamEndLumi preModuleStreamEndLumiSignal_
PostGlobalEndLumi postGlobalEndLumiSignal_
Preallocate preallocateSignal_
signal is emitted before beginJob
PreGlobalBeginLumi preGlobalBeginLumiSignal_
PreStreamEarlyTermination preStreamEarlyTerminationSignal_
PreSourceEarlyTermination preSourceEarlyTerminationSignal_
PostModuleGlobalEndRun postModuleGlobalEndRunSignal_
PostModuleGlobalEndLumi postModuleGlobalEndLumiSignal_
PostLockEventSetupGet postLockEventSetupGetSignal_
signal is emitted after lock taken in EventSetup DataProxy::get function
PreModuleStreamEndRun preModuleStreamEndRunSignal_
PostStreamEndRun postStreamEndRunSignal_
PreStreamEndRun preStreamEndRunSignal_
PreModuleConstruction preModuleConstructionSignal_
PostModuleEndStream postModuleEndStreamSignal_
PreGlobalEndLumi preGlobalEndLumiSignal_
PreEventReadFromSource preEventReadFromSourceSignal_
PostSourceEvent postSourceSignal_
PreCloseFile preCloseFileSignal_
PostModuleWriteRun postModuleWriteRunSignal_
PreGlobalEarlyTermination preGlobalEarlyTerminationSignal_
PreStreamBeginLumi preStreamBeginLumiSignal_
PreModuleStreamBeginLumi preModuleStreamBeginLumiSignal_
PostStreamBeginRun postStreamBeginRunSignal_
PreModuleGlobalBeginRun preModuleGlobalBeginRunSignal_
PostCloseFile postCloseFileSignal_
PostModuleEndJob postModuleEndJobSignal_
PostModuleBeginJob postModuleBeginJobSignal_
PreModuleGlobalBeginLumi preModuleGlobalBeginLumiSignal_
void connectToSubProcess(ActivityRegistry &iOther)
PreModuleWriteRun preModuleWriteRunSignal_
PreSourceLumi preSourceLumiSignal_
PreModuleGlobalEndLumi preModuleGlobalEndLumiSignal_
PostGlobalEndRun postGlobalEndRunSignal_
PreModuleEvent preModuleEventSignal_
PostGlobalBeginLumi postGlobalBeginLumiSignal_
PreOpenFile preOpenFileSignal_
HLT enums.
PostEndJob postEndJobSignal_
signal is emitted after all modules have gotten their endJob called
PreModuleBeginJob preModuleBeginJobSignal_
PreSourceEvent preSourceSignal_
PreBeginJob preBeginJobSignal_
signal is emitted before all modules have gotten their beginJob called
PreModuleEndStream preModuleEndStreamSignal_
PostPathEvent postPathEventSignal_
PostStreamBeginLumi postStreamBeginLumiSignal_
PreStreamEndLumi preStreamEndLumiSignal_
PostModuleStreamEndLumi postModuleStreamEndLumiSignal_
PostEventSetupGet postEventSetupGetSignal_
signal is emitted after getImpl has returned in the EventSetup DataProxy::get function ...
PreModuleGlobalEndRun preModuleGlobalEndRunSignal_
PreEvent preEventSignal_
signal is emitted after the Event has been created by the InputSource but before any modules have see...
PostModuleStreamBeginRun postModuleStreamBeginRunSignal_
PreModuleEventAcquire preModuleEventAcquireSignal_
long double T
PostBeginJob postBeginJobSignal_
signal is emitted after all modules have gotten their beginJob called
PreModuleEndJob preModuleEndJobSignal_
PostModuleGlobalBeginLumi postModuleGlobalBeginLumiSignal_
PostEventReadFromSource postEventReadFromSourceSignal_
void connect(ActivityRegistry &iOther)
forwards our signals to slots connected to iOther
PreEndJob preEndJobSignal_
signal is emitted before any modules have gotten their endJob called
PostModuleConstruction postModuleConstructionSignal_