CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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 void copySlotsToFrom(T& iTo, T& iFrom) {
60  for (auto& slot : iFrom.slots()) {
61  iTo.connect(slot);
62  }
63  }
64 
65  template <typename T>
66  inline void copySlotsToFromReverse(T& iTo, T& iFrom) {
67  // This handles service slots that are supposed to be in reverse
68  // order of construction. Copying new ones in is a little
69  // tricky. Here is an example of what follows
70  // slots in iTo before 4 3 2 1 and copy in slots in iFrom 8 7 6 5.
71  // reverse iFrom 5 6 7 8
72  // then do the copy to front 8 7 6 5 4 3 2 1
73 
74  auto slotsFrom = iFrom.slots();
75 
76  std::reverse(slotsFrom.begin(), slotsFrom.end());
77 
78  for (auto& slotFrom : slotsFrom) {
79  iTo.connect_front(slotFrom);
80  }
81  }
82  } // namespace
83 
84  namespace signalslot {
86  throw cms::Exception("ConnectedToObsoleteServiceSignal")
87  << "A Service has connected to an obsolete ActivityRegistry signal.";
88  }
89  } // namespace signalslot
90 
94  preEndJobSignal_.connect(std::cref(iOther.preEndJobSignal_));
95  postEndJobSignal_.connect(std::cref(iOther.postEndJobSignal_));
96 
97  jobFailureSignal_.connect(std::cref(iOther.jobFailureSignal_));
98 
99  preSourceSignal_.connect(std::cref(iOther.preSourceSignal_));
100  postSourceSignal_.connect(std::cref(iOther.postSourceSignal_));
101 
104 
107 
110 
111  preOpenFileSignal_.connect(std::cref(iOther.preOpenFileSignal_));
113 
116 
119 
123  }
124 
126  preBeginJobSignal_.connect(std::cref(iOther.preBeginJobSignal_));
127 
130 
133 
136 
139 
142 
145 
148 
151 
154 
157 
160 
163 
166 
169 
172 
175 
176  preEventSignal_.connect(std::cref(iOther.preEventSignal_));
177  postEventSignal_.connect(std::cref(iOther.postEventSignal_));
178 
181 
182  //preProcessEventSignal_.connect(std::cref(iOther.preProcessEventSignal_));
183  //postProcessEventSignal_.connect(std::cref(iOther.postProcessEventSignal_));
184 
185  //preBeginRunSignal_.connect(std::cref(iOther.preBeginRunSignal_));
186  //postBeginRunSignal_.connect(std::cref(iOther.postBeginRunSignal_));
187 
188  //preEndRunSignal_.connect(std::cref(iOther.preEndRunSignal_));
189  //postEndRunSignal_.connect(std::cref(iOther.postEndRunSignal_));
190 
191  //preBeginLumiSignal_.connect(std::cref(iOther.preBeginLumiSignal_));
192  //postBeginLumiSignal_.connect(std::cref(iOther.postBeginLumiSignal_));
193 
194  //preEndLumiSignal_.connect(std::cref(iOther.preEndLumiSignal_));
195  //postEndLumiSignal_.connect(std::cref(iOther.postEndLumiSignal_));
196 
197  //preProcessPathSignal_.connect(std::cref(iOther.preProcessPathSignal_));
198  //postProcessPathSignal_.connect(std::cref(iOther.postProcessPathSignal_));
199 
200  //prePathBeginRunSignal_.connect(std::cref(iOther.prePathBeginRunSignal_));
201  //postPathBeginRunSignal_.connect(std::cref(iOther.postPathBeginRunSignal_));
202 
203  //prePathEndRunSignal_.connect(std::cref(iOther.prePathEndRunSignal_));
204  //postPathEndRunSignal_.connect(std::cref(iOther.postPathEndRunSignal_));
205 
206  //prePathBeginLumiSignal_.connect(std::cref(iOther.prePathBeginLumiSignal_));
207  //postPathBeginLumiSignal_.connect(std::cref(iOther.postPathBeginLumiSignal_));
208 
209  //prePathEndLumiSignal_.connect(std::cref(iOther.prePathEndLumiSignal_));
210  //postPathEndLumiSignal_.connect(std::cref(iOther.postPathEndLumiSignal_));
211 
214 
217 
220 
223 
226 
229 
232 
235 
238 
241 
244 
247 
250 
253 
256 
259 
262 
265 
268 
271 
274 
277 
280 
283 
284  preESModuleSignal_.connect(std::cref(iOther.preESModuleSignal_));
286 
288 
289  //preModuleSignal_.connect(std::cref(iOther.preModuleSignal_));
290  //postModuleSignal_.connect(std::cref(iOther.postModuleSignal_));
291 
292  //preModuleBeginRunSignal_.connect(std::cref(iOther.preModuleBeginRunSignal_));
293  //postModuleBeginRunSignal_.connect(std::cref(iOther.postModuleBeginRunSignal_));
294 
295  //preModuleEndRunSignal_.connect(std::cref(iOther.preModuleEndRunSignal_));
296  //postModuleEndRunSignal_.connect(std::cref(iOther.postModuleEndRunSignal_));
297 
298  //preModuleBeginLumiSignal_.connect(std::cref(iOther.preModuleBeginLumiSignal_));
299  //postModuleBeginLumiSignal_.connect(std::cref(iOther.postModuleBeginLumiSignal_));
300 
301  //preModuleEndLumiSignal_.connect(std::cref(iOther.preModuleEndLumiSignal_));
302  //postModuleEndLumiSignal_.connect(std::cref(iOther.postModuleEndLumiSignal_));
303  }
304 
306  connectGlobals(iOther);
307  connectLocals(iOther);
308  }
309 
311  connectGlobals(iOther); // child sees parents global signals
312  iOther.connectLocals(*this); // parent see childs global signals
313  }
314 
316  copySlotsToFrom(preallocateSignal_, iOther.preallocateSignal_);
317  copySlotsToFrom(preBeginJobSignal_, iOther.preBeginJobSignal_);
318  copySlotsToFrom(postBeginJobSignal_, iOther.postBeginJobSignal_);
319  copySlotsToFromReverse(preEndJobSignal_, iOther.preEndJobSignal_);
320  copySlotsToFromReverse(postEndJobSignal_, iOther.postEndJobSignal_);
321 
322  copySlotsToFromReverse(jobFailureSignal_, iOther.jobFailureSignal_);
323 
324  copySlotsToFrom(preSourceSignal_, iOther.preSourceSignal_);
325  copySlotsToFromReverse(postSourceSignal_, iOther.postSourceSignal_);
326 
327  copySlotsToFrom(preSourceLumiSignal_, iOther.preSourceLumiSignal_);
328  copySlotsToFromReverse(postSourceLumiSignal_, iOther.postSourceLumiSignal_);
329 
330  copySlotsToFrom(preSourceRunSignal_, iOther.preSourceRunSignal_);
331  copySlotsToFromReverse(postSourceRunSignal_, iOther.postSourceRunSignal_);
332 
334  copySlotsToFromReverse(postSourceProcessBlockSignal_, iOther.postSourceProcessBlockSignal_);
335 
336  copySlotsToFrom(preOpenFileSignal_, iOther.preOpenFileSignal_);
337  copySlotsToFromReverse(postOpenFileSignal_, iOther.postOpenFileSignal_);
338 
339  copySlotsToFrom(preCloseFileSignal_, iOther.preCloseFileSignal_);
340  copySlotsToFromReverse(postCloseFileSignal_, iOther.postCloseFileSignal_);
341 
343  copySlotsToFromReverse(postModuleBeginStreamSignal_, iOther.postModuleBeginStreamSignal_);
344 
345  copySlotsToFrom(preModuleEndStreamSignal_, iOther.preModuleEndStreamSignal_);
346  copySlotsToFromReverse(postModuleEndStreamSignal_, iOther.postModuleEndStreamSignal_);
347 
349  copySlotsToFromReverse(postBeginProcessBlockSignal_, iOther.postBeginProcessBlockSignal_);
350 
353 
354  copySlotsToFrom(preEndProcessBlockSignal_, iOther.preEndProcessBlockSignal_);
355  copySlotsToFromReverse(postEndProcessBlockSignal_, iOther.postEndProcessBlockSignal_);
356 
357  copySlotsToFrom(preGlobalBeginRunSignal_, iOther.preGlobalBeginRunSignal_);
358  copySlotsToFromReverse(postGlobalBeginRunSignal_, iOther.postGlobalBeginRunSignal_);
359 
360  copySlotsToFrom(preGlobalEndRunSignal_, iOther.preGlobalEndRunSignal_);
361  copySlotsToFromReverse(postGlobalEndRunSignal_, iOther.postGlobalEndRunSignal_);
362 
364  copySlotsToFromReverse(postWriteProcessBlockSignal_, iOther.postWriteProcessBlockSignal_);
365 
366  copySlotsToFrom(preGlobalWriteRunSignal_, iOther.preGlobalWriteRunSignal_);
367  copySlotsToFromReverse(postGlobalWriteRunSignal_, iOther.postGlobalWriteRunSignal_);
368 
369  copySlotsToFrom(preStreamBeginRunSignal_, iOther.preStreamBeginRunSignal_);
370  copySlotsToFromReverse(postStreamBeginRunSignal_, iOther.postStreamBeginRunSignal_);
371 
372  copySlotsToFrom(preStreamEndRunSignal_, iOther.preStreamEndRunSignal_);
373  copySlotsToFromReverse(postStreamEndRunSignal_, iOther.postStreamEndRunSignal_);
374 
375  copySlotsToFrom(preGlobalBeginLumiSignal_, iOther.preGlobalBeginLumiSignal_);
376  copySlotsToFromReverse(postGlobalBeginLumiSignal_, iOther.postGlobalBeginLumiSignal_);
377 
378  copySlotsToFrom(preGlobalEndLumiSignal_, iOther.preGlobalEndLumiSignal_);
379  copySlotsToFromReverse(postGlobalEndLumiSignal_, iOther.postGlobalEndLumiSignal_);
380 
381  copySlotsToFrom(preGlobalWriteLumiSignal_, iOther.preGlobalWriteLumiSignal_);
382  copySlotsToFromReverse(postGlobalWriteLumiSignal_, iOther.postGlobalWriteLumiSignal_);
383 
384  copySlotsToFrom(preStreamBeginLumiSignal_, iOther.preStreamBeginLumiSignal_);
385  copySlotsToFromReverse(postStreamBeginLumiSignal_, iOther.postStreamBeginLumiSignal_);
386 
387  copySlotsToFrom(preStreamEndLumiSignal_, iOther.preStreamEndLumiSignal_);
388  copySlotsToFromReverse(postStreamEndLumiSignal_, iOther.postStreamEndLumiSignal_);
389 
390  copySlotsToFrom(preEventSignal_, iOther.preEventSignal_);
391  copySlotsToFromReverse(postEventSignal_, iOther.postEventSignal_);
392 
393  copySlotsToFrom(prePathEventSignal_, iOther.prePathEventSignal_);
394  copySlotsToFromReverse(postPathEventSignal_, iOther.postPathEventSignal_);
395 
399 
400  /*
401  copySlotsToFrom(preProcessEventSignal_, iOther.preProcessEventSignal_);
402  copySlotsToFromReverse(postProcessEventSignal_, iOther.postProcessEventSignal_);
403 
404  copySlotsToFrom(preBeginRunSignal_, iOther.preBeginRunSignal_);
405  copySlotsToFromReverse(postBeginRunSignal_, iOther.postBeginRunSignal_);
406 
407  copySlotsToFrom(preEndRunSignal_, iOther.preEndRunSignal_);
408  copySlotsToFromReverse(postEndRunSignal_, iOther.postEndRunSignal_);
409 
410  copySlotsToFrom(preBeginLumiSignal_, iOther.preBeginLumiSignal_);
411  copySlotsToFromReverse(postBeginLumiSignal_, iOther.postBeginLumiSignal_);
412 
413  copySlotsToFrom(preEndLumiSignal_, iOther.preEndLumiSignal_);
414  copySlotsToFromReverse(postEndLumiSignal_, iOther.postEndLumiSignal_);
415 
416  copySlotsToFrom(preProcessPathSignal_, iOther.preProcessPathSignal_);
417  copySlotsToFromReverse(postProcessPathSignal_, iOther.postProcessPathSignal_);
418 
419  copySlotsToFrom(prePathBeginRunSignal_, iOther.prePathBeginRunSignal_);
420  copySlotsToFromReverse(postPathBeginRunSignal_, iOther.postPathBeginRunSignal_);
421 
422  copySlotsToFrom(prePathEndRunSignal_, iOther.prePathEndRunSignal_);
423  copySlotsToFromReverse(postPathEndRunSignal_, iOther.postPathEndRunSignal_);
424 
425  copySlotsToFrom(prePathBeginLumiSignal_, iOther.prePathBeginLumiSignal_);
426  copySlotsToFromReverse(postPathBeginLumiSignal_, iOther.postPathBeginLumiSignal_);
427 
428  copySlotsToFrom(prePathEndLumiSignal_, iOther.prePathEndLumiSignal_);
429  copySlotsToFromReverse(postPathEndLumiSignal_, iOther.postPathEndLumiSignal_);
430 */
432  copySlotsToFromReverse(postModuleConstructionSignal_, iOther.postModuleConstructionSignal_);
433 
435  copySlotsToFromReverse(postModuleDestructionSignal_, iOther.postModuleDestructionSignal_);
436 
437  copySlotsToFrom(preModuleBeginJobSignal_, iOther.preModuleBeginJobSignal_);
438  copySlotsToFromReverse(postModuleBeginJobSignal_, iOther.postModuleBeginJobSignal_);
439 
440  copySlotsToFrom(preModuleEndJobSignal_, iOther.preModuleEndJobSignal_);
441  copySlotsToFromReverse(postModuleEndJobSignal_, iOther.postModuleEndJobSignal_);
442 
445 
446  copySlotsToFrom(preModuleEventSignal_, iOther.preModuleEventSignal_);
447  copySlotsToFromReverse(postModuleEventSignal_, iOther.postModuleEventSignal_);
448 
450  copySlotsToFromReverse(postModuleEventAcquireSignal_, iOther.postModuleEventAcquireSignal_);
451 
454 
456  copySlotsToFromReverse(postEventReadFromSourceSignal_, iOther.postEventReadFromSourceSignal_);
457 
460 
462  copySlotsToFromReverse(postModuleStreamEndRunSignal_, iOther.postModuleStreamEndRunSignal_);
463 
466 
468  copySlotsToFromReverse(postModuleStreamEndLumiSignal_, iOther.postModuleStreamEndLumiSignal_);
469 
472 
475 
478 
481 
483  copySlotsToFromReverse(postModuleGlobalEndRunSignal_, iOther.postModuleGlobalEndRunSignal_);
484 
487 
489  copySlotsToFromReverse(postModuleGlobalEndLumiSignal_, iOther.postModuleGlobalEndLumiSignal_);
490 
493 
494  copySlotsToFrom(preModuleWriteRunSignal_, iOther.preModuleWriteRunSignal_);
495  copySlotsToFromReverse(postModuleWriteRunSignal_, iOther.postModuleWriteRunSignal_);
496 
497  copySlotsToFrom(preModuleWriteLumiSignal_, iOther.preModuleWriteLumiSignal_);
498  copySlotsToFromReverse(postModuleWriteLumiSignal_, iOther.postModuleWriteLumiSignal_);
499 
501  copySlotsToFromReverse(postESModulePrefetchingSignal_, iOther.postESModulePrefetchingSignal_);
502 
503  copySlotsToFrom(preESModuleSignal_, iOther.preESModuleSignal_);
504  copySlotsToFromReverse(postESModuleSignal_, iOther.postESModuleSignal_);
505 
507  /*
508  copySlotsToFrom(preModuleSignal_, iOther.preModuleSignal_);
509  copySlotsToFromReverse(postModuleSignal_, iOther.postModuleSignal_);
510 
511  copySlotsToFrom(preModuleBeginRunSignal_, iOther.preModuleBeginRunSignal_);
512  copySlotsToFromReverse(postModuleBeginRunSignal_, iOther.postModuleBeginRunSignal_);
513 
514  copySlotsToFrom(preModuleEndRunSignal_, iOther.preModuleEndRunSignal_);
515  copySlotsToFromReverse(postModuleEndRunSignal_, iOther.postModuleEndRunSignal_);
516 
517  copySlotsToFrom(preModuleBeginLumiSignal_, iOther.preModuleBeginLumiSignal_);
518  copySlotsToFromReverse(postModuleBeginLumiSignal_, iOther.postModuleBeginLumiSignal_);
519 
520  copySlotsToFrom(preModuleEndLumiSignal_, iOther.preModuleEndLumiSignal_);
521  copySlotsToFromReverse(postModuleEndLumiSignal_, iOther.postModuleEndLumiSignal_);
522  */
524  copySlotsToFromReverse(postSourceConstructionSignal_, iOther.postSourceConstructionSignal_);
525  }
526 
527  //
528  // const member functions
529  //
530 
531  //
532  // static member functions
533  //
534 } // namespace edm
PreModuleEventPrefetching preModuleEventPrefetchingSignal_
PreModuleStreamBeginRun preModuleStreamBeginRunSignal_
PostEndProcessBlock postEndProcessBlockSignal_
PostSourceLumi postSourceLumiSignal_
void connectLocals(ActivityRegistry &iOther)
PreStreamBeginRun preStreamBeginRunSignal_
PostModuleEventDelayedGet postModuleEventDelayedGetSignal_
PostModuleStreamEndRun postModuleStreamEndRunSignal_
PostModuleDestruction postModuleDestructionSignal_
PreModuleEventDelayedGet preModuleEventDelayedGetSignal_
PrePathEvent prePathEventSignal_
PostBeginProcessBlock postBeginProcessBlockSignal_
PostModuleGlobalBeginRun postModuleGlobalBeginRunSignal_
PostModuleBeginStream postModuleBeginStreamSignal_
PreGlobalBeginRun preGlobalBeginRunSignal_
signal is emitted after the Run has been created by the InputSource but before any modules have seen ...
PostModuleWriteProcessBlock postModuleWriteProcessBlockSignal_
PreModuleWriteLumi preModuleWriteLumiSignal_
PreSourceRun preSourceRunSignal_
PostModuleEvent postModuleEventSignal_
void throwObsoleteSignalException()
PreESModulePrefetching preESModulePrefetchingSignal_
PostOpenFile postOpenFileSignal_
PreGlobalEndRun preGlobalEndRunSignal_
PostSourceProcessBlock postSourceProcessBlockSignal_
PostEvent postEventSignal_
signal is emitted after all modules have finished processing the Event
PostStreamEndLumi postStreamEndLumiSignal_
PostGlobalBeginRun postGlobalBeginRunSignal_
void connectGlobals(ActivityRegistry &iOther)
PostModuleWriteLumi postModuleWriteLumiSignal_
PostModuleAccessInputProcessBlock postModuleAccessInputProcessBlockSignal_
PreAccessInputProcessBlock preAccessInputProcessBlockSignal_
PreModuleBeginStream preModuleBeginStreamSignal_
void copySlotsFrom(ActivityRegistry &iOther)
PostAccessInputProcessBlock postAccessInputProcessBlockSignal_
PostModuleEventPrefetching postModuleEventPrefetchingSignal_
PostModuleStreamBeginLumi postModuleStreamBeginLumiSignal_
PostSourceRun postSourceRunSignal_
PostGlobalEndLumi postGlobalWriteLumiSignal_
PostSourceConstruction postSourceConstructionSignal_
PreSourceConstruction preSourceConstructionSignal_
PreModuleDestruction preModuleDestructionSignal_
PostModuleEventAcquire postModuleEventAcquireSignal_
PreEndProcessBlock preEndProcessBlockSignal_
PostModuleEndProcessBlock postModuleEndProcessBlockSignal_
PostESModulePrefetching postESModulePrefetchingSignal_
PreModuleStreamEndLumi preModuleStreamEndLumiSignal_
PostGlobalEndLumi postGlobalEndLumiSignal_
Preallocate preallocateSignal_
signal is emitted before beginJob
PreGlobalBeginLumi preGlobalBeginLumiSignal_
PreStreamEarlyTermination preStreamEarlyTerminationSignal_
PreSourceEarlyTermination preSourceEarlyTerminationSignal_
PostModuleGlobalEndRun postModuleGlobalEndRunSignal_
PostModuleGlobalEndLumi postModuleGlobalEndLumiSignal_
PreModuleStreamEndRun preModuleStreamEndRunSignal_
PostStreamEndRun postStreamEndRunSignal_
PreStreamEndRun preStreamEndRunSignal_
PostGlobalWriteRun postGlobalWriteRunSignal_
PreModuleConstruction preModuleConstructionSignal_
PostModuleEndStream postModuleEndStreamSignal_
PreModuleBeginProcessBlock preModuleBeginProcessBlockSignal_
PreModuleEndProcessBlock preModuleEndProcessBlockSignal_
PreGlobalEndLumi preGlobalEndLumiSignal_
PreEventReadFromSource preEventReadFromSourceSignal_
PreSourceProcessBlock preSourceProcessBlockSignal_
PostSourceEvent postSourceSignal_
PreCloseFile preCloseFileSignal_
PostModuleWriteRun postModuleWriteRunSignal_
PreGlobalWriteRun preGlobalWriteRunSignal_
PostESModule postESModuleSignal_
PreGlobalEarlyTermination preGlobalEarlyTerminationSignal_
PreStreamBeginLumi preStreamBeginLumiSignal_
PreModuleStreamBeginLumi preModuleStreamBeginLumiSignal_
PostStreamBeginRun postStreamBeginRunSignal_
PreModuleGlobalBeginRun preModuleGlobalBeginRunSignal_
PreWriteProcessBlock preWriteProcessBlockSignal_
PostCloseFile postCloseFileSignal_
PostModuleEndJob postModuleEndJobSignal_
PostModuleBeginJob postModuleBeginJobSignal_
PreModuleGlobalBeginLumi preModuleGlobalBeginLumiSignal_
void connectToSubProcess(ActivityRegistry &iOther)
PreModuleWriteRun preModuleWriteRunSignal_
PreSourceLumi preSourceLumiSignal_
PostWriteProcessBlock postWriteProcessBlockSignal_
PreModuleGlobalEndLumi preModuleGlobalEndLumiSignal_
PostGlobalEndRun postGlobalEndRunSignal_
PreESModule preESModuleSignal_
PreGlobalEndLumi preGlobalWriteLumiSignal_
PreModuleEvent preModuleEventSignal_
PostGlobalBeginLumi postGlobalBeginLumiSignal_
PreModuleWriteProcessBlock preModuleWriteProcessBlockSignal_
PreOpenFile preOpenFileSignal_
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_
PreBeginProcessBlock preBeginProcessBlockSignal_
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_
PreModuleAccessInputProcessBlock preModuleAccessInputProcessBlockSignal_
PostModuleBeginProcessBlock postModuleBeginProcessBlockSignal_
void connect(U iFunc)
Definition: Signal.h:64
PostESModuleRegistration postESModuleRegistrationSignal_
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_